reubenkoshy has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to create Perl classes from a WSDL file of Servicenow Target table using perl wsdl2perl.pl -b /usr/share/XXXX/local/WebServiceClient/WebServiceName/ -p WebServiceName WsdlUrl, however after deploying the command, I am getting an error: "Connect failed: connect: Connection timed out; Connection timed out at /opt/xxxxxx/perl5/lib/perl5/SOAP/WSDL/XXXX/Base.pm line 73"
Based on the Base.pm script, I see that the source server where I am deploying this command is unable to get the 200 OK response Please let me know the probable causes for such an issue (or) if there are any alternatives in trying to create the Perl classes from WSDL XML directly, as I have downloaded the WSDL XML schema already and have checked that the WSDL file is accessible
package SOAP::WSDL::Expat::Base; use strict; use warnings; use URI; use XML::Parser::Expat; sub new { my ($class, $arg_ref) = @_; my $self = { data => undef, }; bless $self, $class; $self->set_user_agent($arg_ref->{ user_agent }) if $arg_ref->{ user_agent }; $self->{ parsed } = $arg_ref->{ parsed } if $arg_ref->{ parsed }; return $self; } sub clone { my $self = shift; my $class = ref $self; my $clone = $class->new($self); return $clone; } sub set_uri { $_[0]->{ uri } = $_[1]; } sub get_uri { return $_[0]->{ uri }; } sub set_user_agent { $_[0]->{ user_agent } = $_[1]; } sub get_user_agent { return $_[0]->{ user_agent }; } return $self->parse( $response->content() ); } sub set_uri { $_[0]->{ uri } = $_[1]; } sub get_uri { return $_[0]->{ uri }; } sub set_user_agent { $_[0]->{ user_agent } = $_[1]; } sub get_user_agent { return $_[0]->{ user_agent }; } # Mark a URI as "already parsed" sub set_parsed { my ($self, $uri) = @_; $self->{ parsed }->{ $uri } = 1; return; } # returns true if a specific URI has already been parsed sub is_parsed { my ($self, $uri) = @_; return exists $self->{ parsed }->{ $uri };# parse a URI. This is t +he preferred parsing method for WSDL files, as it's }#the only one allowing automatic import resolution sub parse_uri { my $self = shift; my $uri = shift; if ($self->is_parsed($uri)){ warn "$uri already imported; ignoring it.\n"; return; } $self->set_parsed($uri); $self->set_uri( $uri ); if (not $self->{ user_agent }) { require LWP::UserAgent; $self->{ user_agent } = LWP::UserAgent->new(); } my $response = $self->{ user_agent }->get($uri); die $response->message() if $response->code() ne '200'; return $self->parse( $response->content() ); } sub parse { eval { $_[0]->_initialize( XML::Parser::Expat->new( Namespaces => 1 ) + )->parse( $_[1] ); $_[0]->{ parser }->release(); }; $_[0]->{ parser }->xpcroak( $@ ) if $@;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Unable to create Perl classes from WSDL URL using wsdl2perl
by haukex (Archbishop) on Nov 12, 2019 at 13:25 UTC | |
by Fletch (Bishop) on Nov 12, 2019 at 14:58 UTC | |
by reubenkoshy (Initiate) on Nov 13, 2019 at 11:53 UTC | |
by Fletch (Bishop) on Nov 13, 2019 at 16:55 UTC | |
by reubenkoshy (Initiate) on Nov 13, 2019 at 11:53 UTC |