Hi caribesoft,
Maybe someone else knows exactly, but i need more information if I am going to be able to help you. What kind of data are you getting back in your "Response"? It is possible to get information back from a SOAP::Lite service and put it into a MySQL table. For example:
#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);
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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.