Search Discussions
-
I'm calling a SOAP method that returns MTOM via XML::Compile::WSDL11. $wsdl- call('MethodName') produces an empty response an an error (in the trace object) that says "use XML::Compile::XOP". Do I ...
Kit Peters
May 6, 2016 at 9:25 pm
May 9, 2016 at 4:34 pm -
How do you recommend I include a particular WSDL in a module? In the __DATA__ section, or in a separate file? KP An HTML attachment was scrubbed... URL ...
Kit Peters
Apr 29, 2016 at 8:47 pm
Apr 29, 2016 at 10:18 pm -
Hi Mark, I am implementing XML::Compile::WSS and the API I am working with expects the header to contain a SecurityTokenReference with X509Data/X509IssuerSerial block ...
James Moore
Apr 22, 2016 at 5:51 pm
Apr 22, 2016 at 8:20 pm -
Suppose I have a SOAP method foo, defined in some WSDL. I?ve already compiled the call. When I do my ($res, $trace) = $soap- call(?foo?, parameters = $params); Is it guaranteed that $res will always ...
Kit Peters
Apr 15, 2016 at 3:12 pm
Apr 15, 2016 at 3:12 pm -
Is there an easy way to ignore any elements not processed in a SOAP response, or do I need to go and eliminate them in a transport hook? Kit Peters Doer of Things, ATS Integrations ...
Kit Peters
Apr 6, 2016 at 7:40 pm
Apr 6, 2016 at 7:40 pm -
Trying to call XML::LibXML::Simple like so: my $out = XMLin $xml, HookNodes = sub { my ( $obj, $xml ) = @_; my %hooks; my $xpc = XML::LibxML::XPathContext- new($xml); $xpc- registerNs( 'e', ...
Kit Peters
Apr 4, 2016 at 10:09 pm
Apr 4, 2016 at 10:29 pm -
I have this WSDL that generates the following SOAP request, which the server rejects: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" <SOAP-ENV:Header <wsa:MessageID ...
Kit Peters
Mar 31, 2016 at 10:27 pm
Apr 1, 2016 at 3:57 pm -
I have successfully been using XML::Compile::WSDL11/SOAP11 to interact with the EngeryStar's QPX service for several years. Their WSDL is published here ...
Mark Grimes.
Mar 30, 2016 at 2:39 pm
Mar 30, 2016 at 5:41 pm -
I?m using XML::Compile::WSDL11 and a method I?m calling has a section of the parameter XML document (?TalentUser?) that is described by XML::Schema::WSDL11::explain as ?probably a recursive ...
Kit Peters
Mar 23, 2016 at 11:06 pm
Mar 24, 2016 at 4:00 pm -
Dear all, we have to communicate with a SOAP server which seems a bit picky about the messages it?s willing to process. For some reason, the commands to create and destroy a session are using the ...
Heiko Jansen
Feb 16, 2016 at 4:33 pm
Feb 16, 2016 at 8:21 pm -
I state not to know almost nothing about SOAP and XML, but I tried using XML::Compile::SOAP to make a ONVIF client to get information and move around some PTZ cameras and NVT (network video ...
Sandro Magrí
Feb 7, 2016 at 2:20 pm
Feb 8, 2016 at 10:44 pm -
The attached script demonstrates a memory leak when compiling calls. Memory just keeps growing and growing and growing. Is this a bug? Thanks, -- Matthew Horsfall (alh) A non-text attachment was ...
Matthew Horsfall (alh)
Jan 6, 2016 at 5:08 pm
Jan 6, 2016 at 9:14 pm -
I want to change the keep_alive setting on the underlying LWP object. How should I go about this? I currently create/use my services like so: my $svc = XML::Compile::WSDL11- new($file, prefixes = ...
Matthew Horsfall (alh)
Dec 10, 2015 at 2:32 pm
Dec 10, 2015 at 3:05 pm -
Hi, I have created webservice with "XML::Compile::SOAP::Daemon::PSGI. Now, I must set up a HTTP Basic authentication, but I do not see how, would you give me a idea to do this ? Thanks. An HTML ...
Emeline Thibault
Nov 17, 2015 at 11:25 am
Nov 24, 2015 at 8:34 am -
Is it possible to create a reader (hook) respecting the xsi:type blindly, i.e. without the hierarchy of xsi:type types? I have a XML schema where some elements in schema are xsd:any, while the ...
Roman Daniel
Nov 4, 2015 at 4:40 pm
Nov 26, 2015 at 11:29 am -
Apologies in advance as I have not looked at this code since 2011. I have an app that parses a number of WSDL files at startup time. my $wsdl = XML::Compile::WSDL11- new( $path_to_wsdl ); It's slow ...
Bill Moseley
Oct 30, 2015 at 4:31 pm
Oct 30, 2015 at 4:38 pm -
I?m attempting to make use of the ?findEntities? operation defined in this WSDL: http://paste.scsys.co.uk/500528 When I try and ?explain? this operation using XML::Compile::WSDL11, it doesn?t outline ...
Kit Peters
Oct 28, 2015 at 1:38 am
Oct 28, 2015 at 1:38 am -
I?d like to take a SOAP envelope generated with XML::Compile::WSDL11 and output it to a file. How would I go about that? KP An HTML attachment was scrubbed... URL ...
Kit Peters
Oct 27, 2015 at 9:37 pm
Oct 27, 2015 at 11:25 pm -
I've attached a simple test script to show the perceived problem. The WSDL can be found herehttps://www.cwhitener.com/resource.wsdl In version 2.38 I could (without error):my $wsdl = ...
Chase Whitener
Oct 14, 2015 at 9:25 pm
Oct 14, 2015 at 11:23 pm -
I have a case where an API call is succeeding, $trace- printResponse() shows me what looks like a good response, but $res is undef and there's no warnings/errors even with Log::Report mode = ...
Matthew Horsfall (alh)
Sep 17, 2015 at 2:11 pm
Sep 17, 2015 at 2:21 pm -
Suppose I wanted to log all the requests / responses made with an instance of XML::Compile::WSDL11. Would I use a transport hook for that, or is there another way? I don't want the logging hook to ...
Kit Peters
Sep 16, 2015 at 9:45 pm
Sep 16, 2015 at 9:51 pm -
I'm developing a SOAP client Moose Role for my job that uses XML::Compile::WSDL11 under the hood. If I use multiple WSDL's, which will happen in at least one module consuming this Role, I get the ...
Kit Peters
Sep 16, 2015 at 4:49 pm
Sep 16, 2015 at 5:31 pm -
Hello, I'm trying to use XML::Compile with http://platform.mediamind.com/Eyeblaster.MediaMind.API.Doc/, and for most things it's working wonderfully. However, there's on piece of the API that I'm not ...
Matthew Horsfall (alh)
Sep 9, 2015 at 4:39 pm
Sep 10, 2015 at 3:29 pm -
Hi, I am a newbie to Perl programming. In order to learn accessing a soap service, I tried to create a soap client that can connect to this in which I was successful to use the web service. Now, I ...
Ritchie babaylan
Apr 19, 2015 at 11:47 pm
Apr 19, 2015 at 11:47 pm -
I'm trying to use XML::Compile::Dumper to freeze and then reload compiled SOAP clients for the Avalara AvaTax web service, but I'm receiving syntax errors when I try to load the resulting Perl ...
Mark Gardner
Mar 23, 2015 at 9:09 pm
Apr 15, 2015 at 4:46 pm -
Hello, list! Guess I need help, as I have no ideas that I haven't tried already. 0. Abstract SOAP over https client. Somehow ssl options passed to LWP::UserAgent are lost when an ...
Darija Tadin-Đurović
Feb 25, 2015 at 9:53 pm
Feb 26, 2015 at 4:43 pm -
XX p5-XML-Compile-SOAP-3.07 /usr/local/lib/perl5/site_perl/XML/Compile/SOAP/xsd/bea/README /usr/local/lib/perl5/site_perl/XML/Compile/SOAP/xsd/bea/bea_wli_sb_context-fix.xsd ...
Patrick Powell
Feb 1, 2015 at 2:38 pm
Feb 1, 2015 at 2:38 pm -
Hey guys, Merry Xmas and Happy New Year! When I send soap-requests from XML::Compile i could use structres like { array_element = 'something' } Where array_element defined with maxOccur 1. And ...
Hmepas
Jan 13, 2015 at 1:41 pm
Jan 18, 2015 at 9:15 pm -
Good day excuse my language, I speak Spanish. The following code works correctly in 2011 with XML :: Compile :: WSDL11 year 2011 too. Now with the new version (XML :: Compile :: WSDL11 3.03) does not ...
Lor Knut
Dec 22, 2014 at 1:45 pm
Dec 22, 2014 at 2:22 pm -
Hi, as christmas approaches it is time to thank the author - and who could put it better than mst from: http://shadow.cat/blog/matt-s-trout/mstpan-13/ XML::Compile::SOAP Completely insane and ...
Mark Hofstetter
Dec 18, 2014 at 8:51 am
Dec 22, 2014 at 3:42 pm -
Hello fellas. I stumbled into annoying problem. When I deserializing my XML, I am getting integers as Perl integers, while anything what's sloppy_floats became strings. (And yes I have that enabled) ...
Hmepas
Dec 6, 2014 at 9:12 pm
Dec 16, 2014 at 4:57 pm -
Resending now that I've registered on the list. On Mon, Dec 1, 2014 at 5:48 PM, Robert Woodard wrote: An HTML attachment was scrubbed... URL ...
Robert Woodard
Dec 2, 2014 at 4:55 pm
Dec 3, 2014 at 4:55 pm -
Hi Mark, I use XML::Compile::WSDL11 with an asynchronous transport. I need to pass some HTTP headers with the calls. I don't mean "static" headers like basic auth but headers which can change from ...
Roman Daniel
Nov 13, 2014 at 7:01 pm
Nov 14, 2014 at 6:19 pm -
Hi Mark, I try to use asynchronous SOAPHTTP transport for XML::Compile::SOAP. I would like to preset some HTTP headers (basic auth, ...), but I found it hardly possible. $guard = http_request ...
Roman Daniel
Nov 13, 2014 at 5:34 pm
Nov 13, 2014 at 5:34 pm -
Hi Basic Authentication just doesn't seem to 'attach' to the calls. What am I doing wrong here? use XML::Compile::SOAP::WSS; use XML::Compile::WSDL11; use XML::Compile::SOAP11; use ...
Kaare Rasmussen
Oct 23, 2014 at 6:22 am
Oct 27, 2014 at 11:26 am -
I am trying to implement a SOAP client using XML::Compile and receiving error: trace: misfit {http://schemas.xmlsoap.org/wsdl/}anyTopLevelOptionalElement (0..unbounded) no applicable choice for ...
Ian Goodacre
Oct 7, 2014 at 9:11 am
Oct 7, 2014 at 9:11 am -
Hi, I'm using XML::Compile::WSDL11 with (what I expect is) a relatively complex WSDL. I have no control or influence on the WSDL or service. There are quite a few anyType elements, many of which have ...
Kingsley Kerce
Aug 5, 2014 at 3:05 am
Aug 12, 2014 at 3:17 pm -
I'm trying to call a Oracle-Weblogic web service implementing wss11 message level security and I'm really having a hard time. I need to encrypt sections of the soap request (tags ...
Mike W
Jul 13, 2014 at 4:35 pm
Jul 13, 2014 at 4:35 pm -
Hi Mark and list, I upgraded to XML ::Compile 1.44. I thought I had a testcase working where I could parse a schema and then use "template()" to see a framework hash structure. my $schema = ...
DEIGNAN Ciaran
Jun 11, 2014 at 10:19 am
Jun 11, 2014 at 11:59 am -
Hey all, I'm trying to use XML::Compile::WSS to create and sign SOAP requests. I've spent a lot of time go through the test examples and poking around in the perl debugger to try and get the right ...
Craig M Talbert
May 28, 2014 at 5:52 pm
May 28, 2014 at 5:52 pm -
Hi, I have been using XML::Compile::SOAP to interface with several webservices using XOP and have been able to upload with no issues. But now I am having some problems extracting the returned XOP ...
Christopher Taranto
May 14, 2014 at 9:04 pm
May 14, 2014 at 9:04 pm -
Hello, Using XML::Compile::WSDL11, I can load a .wsdl and invoke $wsdl- explain($call_name, PERL = 'INPUT', ... such that the types of the call's parameters are properly described in detail, e.g., # ...
Kingsley Kerce
Apr 1, 2014 at 1:50 pm
Apr 1, 2014 at 2:04 pm -
hi list, using version 3.02 of XML::Compile::WSDL11, and version 3.04 of XML::Compile::SOAP11, I am trying step-by-step to get a SOAP call constructed with my $wsdl = XML::Compile::WSDL11- ...
Rob De Langhe
Mar 21, 2014 at 10:13 am
Mar 21, 2014 at 10:13 am -
Hello, i am rewriting a SOAP::Lite based application. With XML::Compile it is almost fun. The application runs as fcgi with Apache. Thus the costly initializing is only done once. I found that with a ...
Immo
Feb 13, 2014 at 3:46 pm
Feb 13, 2014 at 4:19 pm -
I have a set of XML SOAP exchanges. One toolset is saying that there is an error when it receives the XML generated by the XML::compile toolset. For example: <?xml version="1.0" encoding="utf-8"? ...
Patrick Powell
Jan 16, 2014 at 4:17 pm
Jan 16, 2014 at 10:39 pm -
Skipped content of type multipart/alternative A non-text attachment was scrubbed... Name: xml-compile-testcase.zip Type: application/x-zip-compressed Size: 1186 bytes Desc: xml-compile-testcase.zip ...
DEIGNAN Ciaran
Jan 15, 2014 at 12:22 pm
Jan 15, 2014 at 1:03 pm -
Hi I tried to installation latest xml::compile.. today and it gives error. I noticed there has been recent updates. I am using latest strawberry perl for windows... thx for you time Microsoft Windows ...
Michael Long
Jan 6, 2014 at 5:25 pm
Jan 6, 2014 at 5:25 pm -
Greetings all, Last night, I uploaded major updates for 20 of my distributions; collected changes of the past two months. The good thing is: the changes are major, but I did not need to change much ...
Mark Overmeer
Jan 6, 2014 at 9:37 am
Jan 6, 2014 at 9:37 am -
Skipped content of type multipart/alternative A non-text attachment was scrubbed... Name: sf-info1.pl Type: application/octet-stream Size: 2329 bytes Desc: sf-info1.pl Url ...
DEIGNAN Ciaran
Dec 18, 2013 at 2:01 pm
Dec 18, 2013 at 2:01 pm -
Hi, one of my XML::Compile::SOAP11 based interfaces to one of our suppliers is acting up, and I can't see any off-hand reason why - there's a production system, which is working in day-to-day ...
Gert Doering
Dec 18, 2013 at 1:32 pm
Dec 18, 2013 at 4:44 pm
Group Overview
group | xml-compile |
discussions | 345 |
posts | 1,133 |
users | 131 |
website | perl.overmeer.net... |
Top users
Archives
- May 2016 (4)
- April 2016 (9)
- March 2016 (8)
- February 2016 (6)
- January 2016 (3)
- December 2015 (4)
- November 2015 (8)
- October 2015 (9)
- September 2015 (19)
- April 2015 (5)
- March 2015 (4)
- February 2015 (8)
- January 2015 (3)
- December 2014 (26)
- November 2014 (4)
- October 2014 (4)
- August 2014 (2)
- July 2014 (1)
- June 2014 (6)
- May 2014 (2)
- April 2014 (2)
- March 2014 (1)
- February 2014 (2)
- January 2014 (7)
- December 2013 (29)
- November 2013 (17)
- September 2013 (29)
- August 2013 (2)
- July 2013 (6)
- June 2013 (17)
- May 2013 (7)
- April 2013 (7)
- March 2013 (8)
- February 2013 (2)
- January 2013 (3)
- December 2012 (7)
- November 2012 (8)
- October 2012 (40)
- September 2012 (13)
- August 2012 (54)
- July 2012 (2)
- May 2012 (3)
- March 2012 (22)
- February 2012 (26)
- January 2012 (12)
- December 2011 (8)
- November 2011 (15)
- October 2011 (6)
- July 2011 (6)
- May 2011 (27)
- April 2011 (3)
- March 2011 (12)
- February 2011 (6)
- January 2011 (22)
- December 2010 (6)
- November 2010 (17)
- October 2010 (20)
- September 2010 (18)
- August 2010 (16)
- July 2010 (15)
- June 2010 (22)
- May 2010 (16)
- April 2010 (35)
- March 2010 (37)
- February 2010 (30)
- January 2010 (16)
- December 2009 (5)
- November 2009 (17)
- October 2009 (5)
- September 2009 (11)
- August 2009 (12)
- July 2009 (24)
- June 2009 (8)
- May 2009 (3)
- April 2009 (12)
- March 2009 (42)
- February 2009 (19)
- January 2009 (8)
- December 2008 (6)
- November 2008 (45)
- October 2008 (10)
- September 2008 (9)
- August 2008 (25)
- July 2008 (18)
- June 2008 (9)
- May 2008 (24)
- April 2008 (7)