This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: .Net parameter interoperabiltyjkemp101 Jul 30, 2007 11:05 AM (in response to jkemp101)The XML did not stick 
 java2wsdl format:<complexType name="getPerson"> <sequence> <element name="String_1" nillable="true" type="string"/> <element name="String_2" nillable="true" type="string"/> </sequence> </complexType> <element name="getPerson" type="tns:getPerson"/> Desired .Net friendly format: <element name="getPerson"> <complexType> <sequence> <element name="String_1" nillable="true" type="string"/> <element name="String_2" nillable="true" type="string"/> </sequence> </complexType> </element> 
- 
        2. Re: .Net parameter interoperabiltygenady_yadata Aug 23, 2007 11:44 AM (in response to jkemp101)Using @XmlRootElement + @XmlType(name="") helps? 
 
    