Catalyst-Controller-SOAP

 view release on metacpan or  search on metacpan

lib/Catalyst/Controller/SOAP/DocumentLiteralWrapped.pm  view on Meta::CPAN

{ package Catalyst::Controller::SOAP::DocumentLiteralWrapped;
  use strict;
  use base 'Catalyst::Controller::SOAP';
  sub rpc_endpoint :Path('') :ActionClass('SOAP::DocumentLiteralWrapped') { };


};

1;

__END__

=head1 NAME

Catalyst::Controller::SOAP::DocumentLiteralWrapped - Helper controller for SOAP

=head1 SYNOPSIS

 use base 'Catalyst::Controller::SOAP::DocumentLiteralWrapped';
 __PACKAGE__->{config}{soap_action_prefix} = 'http://foo/bar/';

=head1 DESCRIPTION

Microsoft has defined a pseudo-standard for SOAP usage called
Document/Literal Wrapped. This standard is a deviation of both the
Document/Literal and of the RPC/Literal usages.

A Document/Literal service is supposed to have one operation per bind,
as it's not techically possible to dispatch on the content of the
Body. In fact, as the Body is used as "literal" the dispatching should
not even look at it, it should be based on the port that received the
request.

RPC/Literal, on the other hand, supports the use of several operations
per bind, and the dispatching of this operations is based on the first
and only child element of the message body, which defines the
operation. The arguments are set as the parts of the message in the
WSDL.

Document/Literal-Wrapped is a deviation of both, as the message should
be interpreted as Document/Literal, but the dispatching requires an
additional step of looking at the SOAPAction HTTP header, which will
identify the proper operation to be dispatched.

This is plain wrong, as the SOAP Action information should be used for
routing pourposes only and not for operation dispatch. Please see the
SOAP standard. In fact, SOAP1.2 even makes SOAPAction optional.

=head1 WARNING

THIS MODULE IS HERE FOR COMPATIBILITY REASONS ONLY, SO YOU CAN USE
WHEN IN NEED TO IMPLEMENT A LEGACY SERVICE THAT USES THIS
PSEUDO-STANDARD. THIS USAGE SCENARIO SHOULD NOT BE PROMOTED BY ANY
WAY. THE CORRECT WAY TO IMPLEMENT THE SAME FUNCTIONALITY IS BY USING
RPC/Literal, THAT WILL PRODUCE THE EXACT SAME MESSAGE BODY.

=head1 USE

The operation is dispatched according to the SOAPAction header. The
operation name is extracted by removing the given prefix and assuming
the rest of the SOAPAction is the effective operation name (removing
"s).

=head1 TODO



( run in 0.341 second using v1.01-cache-2.11-cpan-39bf76dae61 )