Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 47142
Status: rejected
Priority: 0/
Queue: SOAP-Lite

People
Owner: Nobody in particular
Requestors: michael [...] zedeler.dk
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.710.08
Fixed in: (no value)



Subject: SOAP::SOM constructor broken
Creating a new SOAP::SOM instance using the new constructor doesn't seem to work. use Test::More tests => 1; use SOAP::Lite; my $som = SOAP::SOM->new(<<'END_SOAP'); <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body xmlns:m="http://www.example.org/stock"> <m:GetStockPrice> <m:StockName>IBM</m:StockName> </m:GetStockPrice> </soap:Body> </soap:Envelope> END_SOAP eval {$som->body}; # Just call some method ok(not $@); diag($@) if $@;
Hi, SOAP::SOM objects are not meant to be constructed by the end user, but used internally by SOAP::Lite. Martin