Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

comment on

( #3333=superdoc: print w/replies, xml ) Need Help??
Okay, forget what I said about encoding. Here's what I know, but first I'll rephrase my question:

"Help. I need to post XML data (that is indeed XML as I'm using XML::AutoWriter to parse the vendor supplied DTD and generate valid XML data from it, which is then validated against the DTD before it even leaves XML::AutoWriter by XML::ValidWriter) to an SSL site for processing. There is no path info, just a hostname and port. The vendor's XML API documentation (which doesn't actually provide an API, just a definition of the XML elements which can be accepted) makes no mention of what content type to use for posting or anything. All they said is that they want the XML data (xml declaration or not, which I found out from testing) POSTED in a specific form variable, XMLSITE_XML for instance. Here is my code..."

What I found out after bouncing tests off of the server:

1. The server (application) doesn't read the content type. I can send text/xml, text/plain, text/arse, or not even specify content type.

2. Whatever encoding is applied by Net::SSLeay (which I think is none) is what the server wants

3. I really don't think there is any encoding done. Here's why: the "API" document had example code in Java. The Java submission was totally no frills, open a raw SSL socket, prepend "XMLSITE_XML=" to the generated XML data stored in a scalar, print the scalar to the SSL socket handle, receive the response back into a scalar, then close the handle.

Thus this is what I'm doing (I can also post the XML::AutoWriter stuff from a different module if anyone is interested):
sub postXML { my $self = shift; my $finalXML = $self->getFinalXML(); my $POST_URL = $self->getProcessingURL(); use URI::URL; my $url = URI->new($POST_URL); my $domain = $url->host(); my $port = $url->port(); use Net::SSLeay; my ($page, $response, %reply_headers) = Net::SSLeay::post_https( $domain, $port, '', Net::SSLeay::make_headers( '', # notice 'Content-type' omitted 'User-Agent' => 'ClearCommerce::XML::POST/0.1' ), "CLRCMRC_XML=$finalXML" ); return $page; }
And this works wonderfully so far.

For those interested, these are the reply headers from the server, which prompted me to (incorrectly) think I should send Content-type text/xml:
CONTENT-TYPE: text/xml CONTENT-LENGTH: 5152 CONNECTION: close SERVER: CCE_XMLIC/1.0 Response: HTTP/1.1 200 OK Page: <?xml version="1.0" encoding="UTF-8">? ... XML response follows


dpatrick
- I think scsh is cool.
Open Sourceror, Perlmonk
http://perlmonk.org/~dpatrick

In reply to Re: Re: Re: Re: Can't Post XML to SSL Site by dpatrick
in thread Can't Post XML to SSL Site by dpatrick

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others taking refuge in the Monastery: (11)
As of 2023-05-30 14:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?