Greetings, I am trying to return a std::list<std::string> with no 
success. My code looks like this:

struct Agent__listFilesResponse
{
   std::list<std::string> items;
};
Agent__listFiles( struct Agent__listFilesResponse &result );

The server works fine, but the wsdl is wrong.  it looks as follows:

<message name="listFilesResult" >
   <part name="items" type="xsd:string" />
</message>

Is there a way to pass an STL vector back as a result?

-ian reinhart geiser

Reply via email to