<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Building and consuming web services with Delphi 2009</title>
	<atom:link href="http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624</link>
	<description>Delphi Programming</description>
	<pubDate>Fri, 24 May 2013 13:44:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Jakub</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-18260</link>
		<dc:creator>Jakub</dc:creator>
		<pubDate>Sun, 14 Apr 2013 20:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-18260</guid>
		<description>Unfortunately, It does not work with Delphi 2009 on IIS7 (Vista OS).</description>
		<content:encoded><![CDATA[<p>Unfortunately, It does not work with Delphi 2009 on IIS7 (Vista OS).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pau</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-9931</link>
		<dc:creator>Pau</dc:creator>
		<pubDate>Wed, 05 Dec 2012 12:59:22 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-9931</guid>
		<description>Sorry I can pasteWSDL

−

−

−

−





−

−

−






</description>
		<content:encoded><![CDATA[<p>Sorry I can pasteWSDL</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pau</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-9930</link>
		<dc:creator>Pau</dc:creator>
		<pubDate>Wed, 05 Dec 2012 12:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-9930</guid>
		<description>"
−

−

−

−





−

−

−






"</description>
		<content:encoded><![CDATA[<p>"<br />
−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pau</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-9929</link>
		<dc:creator>Pau</dc:creator>
		<pubDate>Wed, 05 Dec 2012 12:55:51 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-9929</guid>
		<description>Hi, Pawel, Good post.

I'm testing Delphi XE3 Soap web services.
When I create a complex type based on Tcollection, Delphi does not publish the WSDL correctly.

This is my type:

TIpadVersion = class(TCollectionItem)
  private
    FxDef: AnsiString;
    FimagenNombre: AnsiString;
  public
    constructor Create(Collection: TCollection);override;
    property xDef: AnsiString read FxDef write FxDef;
    property imagenNombre: AnsiString read FimagenNombre write FimagenNombre;
  end;

  TIPadVersiones = class(TCollection)
  protected
    function getversion(i:integer):TIpadVersion;Virtual;
  public
    constructor create;overload;
    function Add: TIpadVersion;overload;
    property Items[Index: Integer]: TIpadVersion read getversion; default;
  end;

  TIpadArticulo = class(TCollectionItem)
  private
    Fid: AnsiString;
    FVersiones :TIPadVersiones;
  published
    Constructor Create(Collection: TCollection);override;
    Destructor Destroy;Override;
    Procedure carga(art_id:String);
    property versiones: TIPadVersiones read FVersiones write FVersiones;
  end;

  TListaArticulos = Class(TCollection)
  protected
    function getArticulo(i:integer):TIpadArticulo;Virtual;
  public
    constructor create;
    function Add(Art_id:String): TIpadArticulo;overload;
    property Items[Index: Integer]: TIpadArticulo read getArticulo; default;
  end;

  TUpdIpadArticulos = class(TRemotable)
  private
    FArticulosAdd : TListaArticulos;
    FArticulosDel : TListaArticulos;
  published
    Constructor Create(Cat_id,Fecha:String);
    Destructor Destroy;
    property AddArticulos: TListaArticulos read FArticulosAdd write FArticulosAdd;
    property DelArticulos: TListaArticulos read FArticulosDel write FArticulosDel;
  end;

IRSWS = interface(IInvokable)
  ['{F18D9B9D-DC4C-415E-9906-7A64B18542AC}']

    { Methods of Invokable interface must not use the default }
    { calling convention; stdcall is recommended }
    Function IpadSincronizaProducto(Empresa, Login, Password, id, fecha:String):TUpdIpadArticulos; stdcall;
  end;

The WDSL published:  You can see below that 
  xml structure
are not finished.


−

−

−

−





−

−

−







− ...

Thx for your time.
Pau.</description>
		<content:encoded><![CDATA[<p>Hi, Pawel, Good post.</p>
<p>I&#8217;m testing Delphi XE3 Soap web services.<br />
When I create a complex type based on Tcollection, Delphi does not publish the WSDL correctly.</p>
<p>This is my type:</p>
<p>TIpadVersion = class(TCollectionItem)<br />
  private<br />
    FxDef: AnsiString;<br />
    FimagenNombre: AnsiString;<br />
  public<br />
    constructor Create(Collection: TCollection);override;<br />
    property xDef: AnsiString read FxDef write FxDef;<br />
    property imagenNombre: AnsiString read FimagenNombre write FimagenNombre;<br />
  end;</p>
<p>  TIPadVersiones = class(TCollection)<br />
  protected<br />
    function getversion(i:integer):TIpadVersion;Virtual;<br />
  public<br />
    constructor create;overload;<br />
    function Add: TIpadVersion;overload;<br />
    property Items[Index: Integer]: TIpadVersion read getversion; default;<br />
  end;</p>
<p>  TIpadArticulo = class(TCollectionItem)<br />
  private<br />
    Fid: AnsiString;<br />
    FVersiones :TIPadVersiones;<br />
  published<br />
    Constructor Create(Collection: TCollection);override;<br />
    Destructor Destroy;Override;<br />
    Procedure carga(art_id:String);<br />
    property versiones: TIPadVersiones read FVersiones write FVersiones;<br />
  end;</p>
<p>  TListaArticulos = Class(TCollection)<br />
  protected<br />
    function getArticulo(i:integer):TIpadArticulo;Virtual;<br />
  public<br />
    constructor create;<br />
    function Add(Art_id:String): TIpadArticulo;overload;<br />
    property Items[Index: Integer]: TIpadArticulo read getArticulo; default;<br />
  end;</p>
<p>  TUpdIpadArticulos = class(TRemotable)<br />
  private<br />
    FArticulosAdd : TListaArticulos;<br />
    FArticulosDel : TListaArticulos;<br />
  published<br />
    Constructor Create(Cat_id,Fecha:String);<br />
    Destructor Destroy;<br />
    property AddArticulos: TListaArticulos read FArticulosAdd write FArticulosAdd;<br />
    property DelArticulos: TListaArticulos read FArticulosDel write FArticulosDel;<br />
  end;</p>
<p>IRSWS = interface(IInvokable)<br />
  ['{F18D9B9D-DC4C-415E-9906-7A64B18542AC}']</p>
<p>    { Methods of Invokable interface must not use the default }<br />
    { calling convention; stdcall is recommended }<br />
    Function IpadSincronizaProducto(Empresa, Login, Password, id, fecha:String):TUpdIpadArticulos; stdcall;<br />
  end;</p>
<p>The WDSL published:  You can see below that<br />
  xml structure<br />
are not finished.</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>−</p>
<p>− &#8230;</p>
<p>Thx for your time.<br />
Pau.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deselt</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-8895</link>
		<dc:creator>Deselt</dc:creator>
		<pubDate>Sun, 26 Aug 2012 09:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-8895</guid>
		<description>Hmm is anyone else having problems with the pictures on this blog loading?
I'm trying to figure out if its a problem on my end or if it's the blog.
Any feed-back would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Hmm is anyone else having problems with the pictures on this blog loading?<br />
I&#8217;m trying to figure out if its a problem on my end or if it&#8217;s the blog.<br />
Any feed-back would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pawel Glowacki</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-8758</link>
		<dc:creator>Pawel Glowacki</dc:creator>
		<pubDate>Mon, 20 Aug 2012 07:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-8758</guid>
		<description>Thanks for all kind words in recent days to this... 4 years old blog post:-) Currently preparing for the XE3 World Tour, but when it starts... You will see me blogging more often:-)</description>
		<content:encoded><![CDATA[<p>Thanks for all kind words in recent days to this&#8230; 4 years old blog post:-) Currently preparing for the XE3 World Tour, but when it starts&#8230; You will see me blogging more often:-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 2012 survival</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-8661</link>
		<dc:creator>2012 survival</dc:creator>
		<pubDate>Sun, 12 Aug 2012 07:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-8661</guid>
		<description>I think that is one of the most vital information for me. And i am glad reading your article. But should observation on few normal issues, The website taste is ideal, the articles is really excellent : D. Good job, cheers</description>
		<content:encoded><![CDATA[<p>I think that is one of the most vital information for me. And i am glad reading your article. But should observation on few normal issues, The website taste is ideal, the articles is really excellent : D. Good job, cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Link Building</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-7807</link>
		<dc:creator>Link Building</dc:creator>
		<pubDate>Wed, 11 Apr 2012 15:19:47 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-7807</guid>
		<description>Hi my friend! I want to say that this article is awesome, great written and include almost all important infos. I'd like to see more posts like this .</description>
		<content:encoded><![CDATA[<p>Hi my friend! I want to say that this article is awesome, great written and include almost all important infos. I&#8217;d like to see more posts like this .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: increase twitter followers</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-7788</link>
		<dc:creator>increase twitter followers</dc:creator>
		<pubDate>Sun, 08 Apr 2012 22:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-7788</guid>
		<description>Just want to say your article is as surprising. The clearness to your put up is simply spectacular and i could assume you are a professional on this subject. Well with your permission let me to clutch your RSS feed to keep up to date with forthcoming post. Thanks one million and please carry on the rewarding work.</description>
		<content:encoded><![CDATA[<p>Just want to say your article is as surprising. The clearness to your put up is simply spectacular and i could assume you are a professional on this subject. Well with your permission let me to clutch your RSS feed to keep up to date with forthcoming post. Thanks one million and please carry on the rewarding work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seo link building</title>
		<link>http://blogs.embarcadero.com/pawelglowacki/2008/12/18/38624#comment-7768</link>
		<dc:creator>seo link building</dc:creator>
		<pubDate>Thu, 05 Apr 2012 10:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.codegear.com/pawelglowacki/?p=38624#comment-7768</guid>
		<description>Excellent submit, very informative. I wonder why the opposite experts of this sector don't understand this. You must proceed your writing. I'm sure, you have a great readers' base already!&#124;What's Taking place i am new to this, I stumbled upon this I've discovered It absolutely helpful and it has aided me out loads. I am hoping to contribute &#38; assist different users like its aided me. Good job.</description>
		<content:encoded><![CDATA[<p>Excellent submit, very informative. I wonder why the opposite experts of this sector don&#8217;t understand this. You must proceed your writing. I&#8217;m sure, you have a great readers&#8217; base already!|What&#8217;s Taking place i am new to this, I stumbled upon this I&#8217;ve discovered It absolutely helpful and it has aided me out loads. I am hoping to contribute &amp; assist different users like its aided me. Good job.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
