burak Posted August 22, 2003 Posted August 22, 2003 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 Quote
Administrators PlausiblyDamp Posted August 22, 2003 Administrators Posted August 22, 2003 There is no reason why it shouldn't process a Java WSDL (or vice versa). You may want to try the command line WSDL.EXE utility that ships with .Net. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.