Hello

I have created a wsdl file which works with Remedy (Remedy calling a web 
service) but it was using rpc style and use="encoded" which is deprecated. So I 
created a test wsdl file using style="document" and use="literal" but Remedy 
doesn't like it for some reason.  In Remedy v7.1 Admin tool there are no 
operations shown in dropdown.

Does Remedy recognise wsdl files using style=document and/or use=literal?

Here is the sample wsdl file below:

Is there anything that Remedy would not like about this?

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions 
 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; 
 xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"; 
 xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
 xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; 
 xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"; 
 xmlns:tns="http://www.iteloffice.com"; 
 targetNamespace="http://www.iteloffice.com";>

 <wsdl:message name="NewMessageRequest">
  <wsdl:part name="parameter" type="xs:string"/>
 </wsdl:message>
 <wsdl:message name="NewMessageResponse">
  <wsdl:part name="parameter" type="xs:string"/>
 </wsdl:message>
 
 <wsdl:portType name="NewPortType">
  <wsdl:operation name="NewOperation">
   <wsdl:input message="tns:NewMessageRequest"/>
   <wsdl:output message="tns:NewMessageResponse"/>
  </wsdl:operation>
 </wsdl:portType>
 
 <wsdl:binding name="NewBinding" type="tns:NewPortType">
  <soap:binding style="document" 
transport="http://schemas.xmlsoap.org/soap/http"/>
  <wsdl:operation name="NewOperation">
   <soap:operation soapAction="NewOperation"/>
   <wsdl:input>
    <soap:body use="literal"/>
   </wsdl:input>
   <wsdl:output>
    <soap:body use="literal"/>
   </wsdl:output>
  </wsdl:operation>
 </wsdl:binding>
 
 <wsdl:service name="NewService">
  <wsdl:port name="NewPort" binding="tns:NewBinding">
   <soap:address location="angusnotebook:8080"/>
  </wsdl:port>
 </wsdl:service>
 
</wsdl:definitions>

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
attend wwrug11 www.wwrug.com ARSList: "Where the Answers Are"

Reply via email to