Problem adding web reference to a j# project

K

kevin_wailes

I'm trying to add a web reference to a J# project and everything goes
OK until I get this message :

Custom tool warning: At least one import Operation is an unsupported
type and has been ignored.

I use the same WSDL in XMLSPY and it works a treat but Visual Studio
doesn't like it for smoe reason and I can't figure out why.

Any suggestions would be much appreciated. Please by gentle and use
words of one syllable as I'm a mainframe sysprog whose just getting
into this stuff.


Here's my WSDL :

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions
name="Pro4Task"
targetNamespace="http://www.proiv.com/Pro4Task.wsdl"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.proiv.com/Pro4Task.wsdl"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsd1="http://www.proiv.com/Pro4TaskUntitled.xsd1">
<wsdl:documentation
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Created using Cape Clear
Studio SOA Editor - http://www.capeclear.com</wsdl:documentation>
<wsdl:types>
<xsd:schema

targetNamespace="http://www.proiv.com/Pro4TaskUntitled.xsd1"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsd1="http://www.proiv.com/Pro4TaskUntitled.xsd1"/>
</wsdl:types>
<wsdl:message name="Pro4TaskResponse">
<wsdl:part name="rc" type="xsd:string"/>
<wsdl:part name="rn" type="xsd:string"/>
<wsdl:part name="sc" type="xsd:string"/>
<wsdl:part name="fm" type="xsd:string"/>
<wsdl:part name="qp" type="xsd:string"/>
<wsdl:part name="dc" type="xsd:string"/>
<wsdl:part name="rf" type="xsd:string"/>
<wsdl:part name="pc" type="xsd:string"/>
<wsdl:part name="pn" type="xsd:string"/>
<wsdl:part name="pv" type="xsd:string"/>
</wsdl:message>
<wsdl:message name="Pro4TaskRequest">
<wsdl:part name="ty" type="xsd:string"/>
<wsdl:part name="tx" type="xsd:string"/>
<wsdl:part name="cd" type="xsd:string"/>
<wsdl:part name="oi" type="xsd:string"/>
<wsdl:part name="pg" type="xsd:string"/>
<wsdl:part name="tk" type="xsd:string"/>
<wsdl:part name="nl" type="xsd:string"/>
<wsdl:part name="vl" type="xsd:string"/>
<wsdl:part name="np" type="xsd:string"/>
<wsdl:part name="vp" type="xsd:string"/>
<wsdl:part name="pc" type="xsd:string"/>
<wsdl:part name="pn" type="xsd:string"/>
<wsdl:part name="pv" type="xsd:string"/>
</wsdl:message>
<wsdl:portType name="Pro4Task">
<wsdl:blush:peration name="Pro4Task">
<wsdl:input message="tns:pro4TaskRequest"/>
<wsdl:blush:utput message="tns:pro4TaskResponse"/>
</wsdl:blush:peration>
</wsdl:portType>
<wsdl:binding name="Pro4Task" type="tns:pro4Task">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:blush:peration name="Pro4Task">
<soap:blush:peration
soapAction="http://..."
style="rpc"/>
<wsdl:input>
<soap:body parts="ty tx cd oi pg tk nl vl np vp pc pn
pv" use="literal"/>
</wsdl:input>
<wsdl:blush:utput>
<soap:body parts="rc rn sc fm qp dc rf pc pn pv"
use="literal"/>
</wsdl:blush:utput>
</wsdl:blush:peration>
</wsdl:binding>
<wsdl:service name="Pro4Task">
<wsdl:port binding="tns:pro4Task" name="Pro4Task">
<soap:address location="http://..."/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
 
S

Stephany Young

A 'Mainframe System Programmer' asking Application Developers for help??????

Do I see a star in the east and 3 wise men on the horizon?

:) couldn't resist :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top