Hi all, I'm trying to use a web service exposed by BEA portal to get some infos.
Here is my perl code:
use Soap::Lite;
my $uri = "http://10.130.212.27:7001/PocEniWeb/CustomRolesManager.wsdl";
my $proxy = "http://10.130.212.27:7001/PocEniWeb";
my @role_list = SOAP::Lite
-> uri($proxy)
-> proxy($uri)
-> getAllRoles()
-> result;
for my $role (@role_list)
{
print "$role\n";
}
When I run this script I get the following error message:
"500 Can't read entity body: Unknown error".
The error occurs at line 6
my @role_list .. .. ..
I can't understand where is my mistake.
Is there anybody that can help?
Thank you very much.