Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Hello,

 

My company is in talks with another company to provide mutual web services. They sent us a printout of their wsdl file, which was created using Java.

 

It looks different from the wsdl file created using visual studio .net.

 

For instance this is what they have:

 

<sequence>

<element name="accountId" nillable="true" type="xsd:string"/>

<element name="benefits" nillable="true" type="tns2:ArrayOffString"/>

</sequence>

 

I created an asmx file with the following variables to try to get a wsdl file that loks like theirs:

 

Public accountID As String

Public benefits As ArrayList

 

and this is what .net produced :

 

<s:sequence>

<s:element minOccurs="0" maxOccurs="1" name="accountID" type="s:string" />

<s:element minOccurs="0" maxOccurs="1" name="benefits" type="s0:ArrayOfAnyType" />

</s:sequence>

 

- How can I produce a wsdl that looks like their wsdl?

 

- Can .net process wsdl files created using java?

 

Thank you,

 

Burak

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...