|
Maintenance mode This is the discussion forum for WSO2 Web Services Framework for Perl (WSO2 WSF/Perl).
Hi there,
can somebody tell me, how to set trace level at WSO2/Perl? At SOAP::Lite you have that option to activate trace using "use SOAP::Lite +trace => 'debug';", so you can trace the SOAP communication.
Besides I want to know, how to specify the operation I want to communicate with. Assumed that the target server has 3 operations:
- createCustomer
- deleteCustomer
- modifyCustomer
If I see the examples, I have only to write the operation name in payload. Am I right? At SOAP::Lite I have to tell this explicitly, e.g. $soap_handler->createCustomer().
Thanks in advance.
I'm getting an error when trying to make the Perl module:
when using make to build WSO2-WSF-Perl-1.1 I get the following:
/usr/include/dlfcn.h:61: error: syntax error before ‘dlopen_preflight’
In file included from /opt/wsfc/include/axis2-1.4.0/platforms/unix/axutil_unix.h:75,
from /opt/wsfc/include/axis2-1.4.0/platforms/axutil_platform_auto_sense.h:51,
from /opt/wsfc/include/axis2-1.4.0/axutil_dll_desc.h:31,
from /opt/wsfc/include/axis2-1.4.0/axutil_class_loader.h:31,
Hi,
Just installed http://search.cpan.org/~chintana/WSO2-WSF-Perl-1.1/ and the required WSO2 WSF/C.
And I have this consumer.pl:
---8<---
my $payload = '
<hi>
<name>Foo</name>
</hi>
';
my $client = new WSO2::WSF::WSClient( {
'useSOAP' => '1.1',
'to' => 'http://..../cgi-bin/server.pl',
'wsfc_home' => '/home/dilpun/ext_programs/wso2-wsf-c',
} );
my $response = $client->request(
new WSO2::WSF::WSMessage( {
'payload' => $payload,
I have already installed PHP and now when installing Perl, the make insists that I install wsf-c which, as far as I can tell is already installed as part of the PHP install.
But, when I try and install wsf-c I get the same missing SIGCARP error that I had to patch around when I installed PHP.
This is on FreeBSD 6.4
Martin
WSO2 Web Services Framework (WSF)/Perl v1.0.0 Released We are pleased to announce the release of WSO2 WSF/Perl 1.0.0. You can download the release from: Project home page: ------------ 1. Client API to consume Web services * WSMessage class to handle message level options 2. WS-Addressing * Version 1.0 |