in reply to convert SOAP message to perl data structure
I hope this helps even if it is just a little, and if anyone else has anything to say I would definately take their comments into consideration since I am no expert by any means and this is just a general case that worked for me since you didn't provide much to go on.#makes the new SOAP::Lite object my $soap_obj = new SOAP::Lite -> uri ('http://') -> proxy ('http://') -> service(); #gets the response and stores it in a scalar my $response = $soap_obj->get_response(); #creates the statement for the SQL insert my $statement = $bdbi->form_push_SQL ($response); #if bdbi is a database connection then it does $statement $bdbi->{'database_handle'}->Query($statement);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: convert SOAP message to perl data structure
by caribesoft (Initiate) on Jul 12, 2006 at 03:35 UTC | |
by gellyfish (Monsignor) on Jul 12, 2006 at 08:32 UTC | |
by Anonymous Monk on Jul 13, 2006 at 15:33 UTC | |
by gellyfish (Monsignor) on Jul 13, 2006 at 15:53 UTC |