Experts,
We are having very basic problem . Are we doing anything wrong ?
Problem 1:
Ideally we want document style web service. We have created it but response is different than what we expect.
wsdl shows:
<xsd:complexType>
<xsd:sequence>
<xsd:element name="authenticateUserReturn" type="xsd:boolean"/>
</xsd:sequence>
</xsd:complexType>
But response,
<res:authenticateUserResponse xmlns:res="http://soapenc/">
<return>true</return>
</res:authenticateUserResponse>
We tried Java and .NET client generated from this wsdl , it returns null because there is an extra "return" element here ( we believe) . Any clue ? workaround ?
Problem 2:
This is serious than above. To avoid above issue, we changed the style to RPC in the model, WSDL still shows document style (schema/types )etc. I deleted the target directory to make sure it is recreating .
we are using andromda 3.2, axis2. we are only having one service .
Your help is greatly appreciated.
