Hi all, I'm trying to consume an external webservice. This is the wsdl document:
<?xml version="1.0" encoding="UTF-8" ?> - <wsdl:definitions targetNamespace="http://xpto.com.br:8080/GatewayIntegration/services/Sms" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://xpto.com.br:8080/GatewayIntegration/services/Sms" xmlns:intf="http://xpto.com.br:8080/GatewayIntegration/services/Sms" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> - <!-- WSDL created by Apache Axis version: 1.3 Built on Oct 05, 2005 (05:23:37 EDT) --> - <wsdl:types> - <schema targetNamespace="http://xpto.com.br:8080/GatewayIntegration/services/Sms" xmlns="http://www.w3.org/2001/XMLSchema"> <import namespace="http://schemas.xmlsoap.org/soap/encoding/" /> - <complexType name="SendSmsRequest"> - <sequence> <element name="account" type="xsd:string" /> <element name="code" type="xsd:string" /> <element name="msg" type="xsd:string" /> <element name="from" nillable="true" type="xsd:string" /> <element name="mobile" type="xsd:string" /> <element name="id" nillable="true" type="xsd:string" /> <element name="schedule" nillable="true" type="xsd:dateTime" /> <element name="callbackOption" type="xsd:int" /> </sequence> </complexType> </schema> </wsdl:types> - <wsdl:message name="sendSmsResponse"> <wsdl:part name="sendSmsReturn" type="soapenc:string" /> </wsdl:message> - <wsdl:message name="sendSmsRequest"> <wsdl:part name="sendSmsRequest" type="impl:SendSmsRequest" /> </wsdl:message> - <wsdl:portType name="Sms_BindingImpl"> - <wsdl:operation name="sendSms" parameterOrder="sendSmsRequest"> <wsdl:input message="impl:sendSmsRequest" name="sendSmsRequest" /> <wsdl:output message="impl:sendSmsResponse" name="sendSmsResponse" /> </wsdl:operation> </wsdl:portType> - <wsdl:binding name="SmsSoapBinding" type="impl:Sms_BindingImpl"> <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> - <wsdl:operation name="sendSms"> <wsdlsoap:operation soapAction="" /> - <wsdl:input name="sendSmsRequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://Sms.ws.gateway.human.com" use="encoded" /> </wsdl:input> - <wsdl:output name="sendSmsResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://xpto.com.br:8080/GatewayIntegration/services/Sms" use="encoded" /> </wsdl:output> </wsdl:operation> </wsdl:binding> - <wsdl:service name="Sms_BindingImplService"> - <wsdl:port binding="impl:SmsSoapBinding" name="Sms"> <wsdlsoap:address location="http://xpto.com.br:8080/GatewayIntegration/services/Sms" /> </wsdl:port> </wsdl:service> </wsdl:definitions> When I try to map the fields in Remedy Administrator, I only see the SendSmsRequest as a field. Why I'm not seeing the actual fields (account, code, msg...)? My environment: ARS 5.1.2 Windows 2000 Server SQL 2000 TIA, Rogerio Bronzoni Aguiar _______________________________________________________________________________ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org ARSlist:"Where the Answers Are"

