I tried using
xmlns:spc=http://schemas.xmlsoap.org/soap/encoding/" instead of xmlns:xsd="http://www.w3.org/2001/XMLSchema"
for the type attribute for xsd:element, (ex. <xsd:element name="ItemName" type="spc:string"/> ) now its
working...is this the correct way to communicate with .Net..
<definitions
name="urn:GetPO" targetNamespace="urn:GetPO"
xmlns:tns="urn:GetPO"
xmlns:typens="urn:GetPO"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wbm="http://www.webmethods.com/2001/10/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:spc="http://schemas.xmlsoap.org/soap/encoding/"> <!-- type defs --> <types> <xsd:schema targetNamespace="urn:GetPO" xmlns:xsd="http://www.w3.org/1999/XMLSchema"> <xsd:complexType name="purchaseorder"> <xsd:sequence> <xsd:element name="ItemName" type="spc:string"/> <xsd:element name="Quantity" type="spc:int"/> <xsd:element name="price" type="spc:float"/> <xsd:element name="currency" type="spc:string"/> </xsd:sequence> </xsd:complexType> thanks..
|
- Using complex types Axis and .Net Dhananjayan_K
- Re: Using complex types Axis and .Net Bill Keese
- RE: Using complex types Axis and .Net Dhananjayan_K
- Re: Using complex types Axis and .Net Bill Keese
- Re: Using complex types Axis and .Net Dhananjayan_K
- Re: Using complex types Axis and .Net Bill Keese
- Re: Using complex types Axis and .Net James Black
- RE: Using complex types Axis and .Net Dhananjayan_K