|
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 " ? |