**********
Excellent, man thanks, now i dont want to be lazzy but can you help to
understand the next wsdl:
**********
<?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions targetNamespace="http://
serviciosweb.remedyweb.iusacell.com" xmlns:impl="http://
serviciosweb.remedyweb.iusacell.com" xmlns:intf="http://
serviciosweb.remedyweb.iusacell.com" xmlns:wsdl="http://
schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="
http://schemas.xmlsoap.org/
wsdl/soap/" xmlns:wsi="
http://ws-i.org/profiles/basic/1.1/xsd"
xmlns:xsd="
http://www.w3.org/2001/XMLSchema">
- <wsdl:types>
- <schema targetNamespace="
http://serviciosweb.remedyweb.iusacell.com"
xmlns="
http://www.w3.org/2001/XMLSchema" xmlns:impl="http://
serviciosweb.remedyweb.iusacell.com" xmlns:intf="http://
serviciosweb.remedyweb.iusacell.com" xmlns:wsdl="http://
schemas.xmlsoap.org/wsdl/" xmlns:xsd="
http://www.w3.org/2001/
XMLSchema">
- <element name="paramRemedyResponse">
- <complexType>
- <sequence>
<element name="paramRemedyReturn" type="xsd:int" />
</sequence>
</complexType>
</element>
- <element name="paramRemedy">
- <complexType>
- <sequence>
<element name="estado" nillable="true" type="xsd:string" />
<element name="remedyid" type="xsd:long" />
<element name="usumod" nillable="true" type="xsd:string" />
<element name="historial" nillable="true" type="xsd:string" />
<element name="telcontacto" nillable="true" type="xsd:string" />
<element name="usua_afec" type="xsd:int" />
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
- <wsdl:message name="paramRemedyRequest">
<wsdl

art element="impl

aramRemedy" name="parameters" />
</wsdl:message>
- <wsdl:message name="paramRemedyResponse">
<wsdl

art element="impl

aramRemedyResponse" name="parameters" />
</wsdl:message>
- <wsdl

ortType name="ActualizaStatus">
- <wsdl

peration name="paramRemedy">
<wsdl:input message="impl

aramRemedyRequest"
name="paramRemedyRequest" />
<wsdl

utput message="impl

aramRemedyResponse"
name="paramRemedyResponse" />
</wsdl

peration>
</wsdl

ortType>
- <wsdl:binding name="ActualizaStatusSoapBinding"
type="impl:ActualizaStatus">
<wsdlsoap:binding style="document" transport="http://
schemas.xmlsoap.org/soap/http" />
- <wsdl

peration name="paramRemedy">
<wsdlsoap

peration soapAction="" />
- <wsdl:input name="paramRemedyRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
- <wsdl

utput name="paramRemedyResponse">
<wsdlsoap:body use="literal" />
</wsdl

utput>
</wsdl

peration>
</wsdl:binding>
- <wsdl:service name="ActualizaStatusService">
- <wsdl

ort binding="impl:ActualizaStatusSoapBinding"
name="ActualizaStatus">
<wsdlsoap:address location="
http://10.199.11.69:9080/remedyWeb/
services/ActualizaStatus" />
</wsdl

ort>
</wsdl:service>
</wsdl:definitions>
++++++++++++++++++++++++++++++++++++++
i do the next perl:
#!C:\Perl\bin\perl -w
use strict;
use SOAP::Lite qw;
my $soap = SOAP::Lite
-> uri('
http://serviciosweb.remedyweb.iusacell.com')
-> proxy('
http://10.199.11.69:9080/remedyWeb/services/
ActualizaStatus')
-> on_action( sub { join '', @_} );
my $s = $soap->paramRemedy("CERRADO",333,"OMAR","FALLITA","5514864823",
50)->result;
print $s;
and gives me the error:
Possible attempt to separate words with commas at wsremedyclient.pl
line 8.
syntax error at wsremedyclient.pl line 10, near "my "
Execution of wsremedyclient.pl aborted due to compilation errors.
******** please its the last favor please
****************************