I've attached a simple test script to show the perceived problem.  The WSDL
can be found herehttps://www.cwhitener.com/resource.wsdl

In version 2.38 I could (without error):my $wsdl =
XML::Compile::WSDL11->new($content_from_attached_file);
Yet, in version 3.03, the same code produces the error:error: no address in
port ResourceWSSoap12
Thanks,
Chase
#!/usr/bin/env perl

use strict;
use warnings;
use Carp ();
use IO::Handle ();
use utf8;
use v5.22;

use File::Slurper 'read_text';
use XML::Compile::WSDL11;
use XML::Compile::SOAP11;

my $content = read_text('./resource.wsdl');
my $wsdl = XML::Compile::WSDL11->new($content);
_______________________________________________
Xml-compile mailing list
[email protected]
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/xml-compile

Reply via email to