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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|