http://www.perlmonks.org?node_id=1015658


in reply to Re: SOAP::Lite contract mismatch error
in thread [SOLVED]SOAP::Lite contract mismatch error

Lingua::Translate::Bing is my module :)

Now, i want refactor it for using SOAP protocol instead of HTTP.

I tried SOAP::Simple with this code:

sub getLanguagesForTranslate { my ($self) = @_; my $token = $self->getAccessToken(); my $soap = SOAP::Simple->new('http://api.microsofttranslator.com/V +2/Soap.svc'); my $answer = $soap->GetLanguagesForTranslate("appId" => ""); return $answer->result; }

But i had this error:

Remote fetching not implemented yet at /home/Muxa/perl5/lib/perl5/SOAP +/Simple/Trait.pm line 73. SOAP::Simple::Trait::_fetch_wsdl('Moose::Meta::Class::__ANON__::SE +RIAL::1=HASH(0x4332df8)', 'http://api.microsofttranslator.com/V2/Soap +.svc') called at /home/Muxa/perl5/lib/perl5/SOAP/Simple/Trait.pm line + 67 SOAP::Simple::Trait::_coerce_wsdl('Moose::Meta::Class::__ANON__::S +ERIAL::1=HASH(0x4332df8)', 'http://api.microsofttranslator.com/V2/Soa +p.svc') called at /home/Muxa/perl5/lib/perl5/SOAP/Simple/Trait.pm lin +e 12 SOAP::Simple::Trait::add_wsdl('Moose::Meta::Class::__ANON__::SERIA +L::1=HASH(0x4332df8)', 'http://api.microsofttranslator.com/V2/Soap.sv +c') called at /home/Muxa/perl5/lib/perl5/SOAP/Simple.pm line 29 SOAP::Simple::new('SOAP::Simple', 'http://api.microsofttranslator. +com/V2/Soap.svc') called at Lingua/Translation/Bing.pm line 135

Replies are listed 'Best First'.
Re^3: SOAP::Lite contract mismatch error
by Anonymous Monk on Jan 28, 2013 at 09:44 UTC
    Really? SOAP::Simple is so simple, it doesn't take URLs, it takes filenames, as the synopsis and examples show

      Ok. But how i can insert header in http request with SOAP::Simple?

        Ok. But how i can insert header in http request with SOAP::Simple?

        Sorry, but I can't help you, I never got past SOAP::Simple and I hate SOAP with a passion :)

        SOAP::Simple is just thin wrapper around XML::Compile, so I would do some source diving, watch some xml-compile slideshows, and start there

        OTOH, I did just notice you still got gensym -- that is like SOAP::Lite/SOAP::Data 101 -- don't make gensym