jzhone / wsdl2objc

Automatically exported from code.google.com/p/wsdl2objc
MIT License
0 stars 0 forks source link

Type was never parsed #118

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. The gsoapTest.wsdl was generated by gsoap (gsoapcpp2.exe soaptest.h )
2. When I try to compare the gsoapTest.wsdl the console says Type Structure1 
was never parsed!
3. building the code would receive compilation error of the Structure1 not 
being defined.

What version of the product are you using? On what operating system?
0.7pre1

Original issue reported on code.google.com by siuchunt...@gmail.com on 3 Nov 2010 at 6:49

Attachments:

GoogleCodeExporter commented 9 years ago
You didn't prefix the Structure1 in the message, so it's not recognized as a 
known element

<message name="testSoapRoutineRequest">
 <part name="s1" type="Structure1"/>
</message>

Should be:

<message name="testSoapRoutineRequest">
 <part name="s1" type="tns:Structure1"/>
</message>

Original comment by maciej.rutkowski on 15 Apr 2011 at 7:40