I have a bunch of data that is being stored in a variable $writer (large amount of XML data)
This doesn't work correctly, but is SOAP::Lite what I want if I want to do an http POST to jboss(8180) of all this XML data? If not, how would I post the hash'd data stored in $writer to that specific URL address?
my $soap = SOAP::Lite->proxy('http://localhost:8180');
my $excel = Spreadsheet::ParseExcel::Workbook->Parse($file);
my $writer =
XML::Writer->new( OUTPUT => $soap, NEWLINES => 0, DATA_MODE => 1, DA
+TA_INDENT => 2, );
Separate question also. You'll notice that I am using Spreadsheet::ParseExcel. It works fine in linux, but I am developing the code on my laptop before I push it to the box, but I can't run it on windows. I get this error.
Weak references are not implemented in the version of perl at C:/Perl/
+site/lib/Spreadsheet/ParseExcel.pm line 67
BEGIN failed--compilation aborted at C:/Perl/site/lib/Spreadsheet/Pars
+eExcel.pm line 67.
Compilation failed in require at script.pl line 4.
BEGIN failed--compilation aborted at script.pl line 4.
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.