I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2011-06-10 02:23:16.961807-07 by burney
Does SOAP::Lite support IPV6?
hello everyone~ I have question about IPV6 my code is like s below:
use SOAP::Lite; my $ws_url = 'http://IPV6AddressOrHostName/TestWCF.svc?wsdl'; my $ws_uri = 'http://tempuri.org/'; my $ws_xmlns = 'http://tempuri.org/'; my $soap = SOAP::Lite -> uri( $ws_uri) -> on_action(sub{sprintf '%sITestWCF/%s', @_}) -> proxy($ws_url); my $response = $soap->MyFunction( SOAP::Data->new(name => 'Client', value =>"ABCDEFG") );
my question is:
my $ws_url = 'http://IPV6AddressOrHostName/TestWCF.svc?wsdl';
the URL could support "IPV6 address" or "the hostname of PV6 server " ?
Direct Responses: 13371 | Write a response