Posts Tagged ‘http’

HTTP POST from inside Oracle

A while ago Robert and Pete blogged about Oracle’s UTL_HTTP package. Robert gave an example of how to use this package to request a web page from the Internet into Oracle and Pete mentioned that you could do the opposite, i.e. post data from Oracle to the Internet. Recently I had a requirement to do […]

Read XML from an HTTP POST

First, let’s see how you can post XML over HTTP to another page. This is very simple in ColdFusion:

<cfhttp url=”url_to_post_to” method=”post”> <cfhttpparam type=”XML” name=”XmlDoc” value=”#your_xml#”> </cfhttp>

Now, suppose you are posting […]