Shun87 / wsdl2objc

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

Defected soap requests generated #167

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1) I have web service running on jBoss 5. To create service I am using 
annotations @Webservice. There are extra namespaces in soap request generated 
by wsdl2objc.
2) If there is string content containing any html tag, the tag is encoded twice.

What is the expected output?
1) <soap:Body>
    <WebServiceSvc:echo>
      <text>iOS_test</text>
    </WebServiceSvc:echo>
  </soap:Body>
2) &lt;

What do you see instead?
1) <soap:Body>
    <WebServiceSvc:echo>
      <WebServiceSvc:text>iOS_test</WebServiceSvc:text>
    </WebServiceSvc:echo>
  </soap:Body>
2) &amp;lt;

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

Please provide any additional information below.
See the "patch" how I have corrected it.

Original issue reported on code.google.com by dusan.kr...@gmail.com on 19 Jan 2012 at 2:47

Attachments: