Skip to content

Commit

Permalink
[Whitespace] Make sure SOAP 1.1 is used.
Browse files Browse the repository at this point in the history
See e.g. 1e9f8f0 for Echo.
  • Loading branch information
dracos committed Dec 10, 2024
1 parent 8112149 commit 3954eca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion perllib/Integrations/Whitespace.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ has endpoint => (
$ENV{PERL_LWP_SSL_CA_PATH} = '/etc/ssl/certs' unless $ENV{DEV_USE_SYSTEM_CA_PATH};

my $soap = SOAP::Lite->new(
soapversion => 1.1,
proxy => $self->url,
default_ns => $self->attr,
on_action => sub { $self->attr . $_[1] }
Expand Down Expand Up @@ -67,6 +66,8 @@ sub call {

require SOAP::Lite;
@params = make_soap_structure(@params);
# See comment in Echo.pm
SOAP::Lite->soapversion(1.1);
my $som = $self->endpoint->call(
$method => @params,
$self->security
Expand Down

0 comments on commit 3954eca

Please sign in to comment.