That example works for me. I get a 500 response since it's not a valid web service request but it certainly doesn't stop the page loading.

Andy


On 21/12/2012 06:25, [email protected] wrote:
perhaps it's just me, or is/was there a bug where cfhttp doesn't work? I had a section of code that was working and I think I updated sometime ago in one of the nightly builds to the newer one to fix a problem. I don't remember if i tested it after the updating. Here is the stick of code:

<cfhttp
        url="https://wsbeta.fedex.com:443/web-services";
        method="post"
        result="httpResponse">

</cfhttp>

I have cfhttpparam set too, but the above code, by itself does not allow the page to load. And occasionally I will get out of memory (I think on the Perm side).

here it is on a page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<meta http-equiv="Content-Type" content="text/html; " />
<title>Untitled Document</title>
</head>

<body>
<cfhttp
        url="https://wsbeta.fedex.com:443/web-services";
        method="post"
        result="httpResponse">
</cfhttp>
</body>
</html>

I would have thought it would atleast through an error.

--
online documentation: http://openbd.org/manual/
http://groups.google.com/group/openbd?hl=en

--
online documentation: http://openbd.org/manual/
http://groups.google.com/group/openbd?hl=en

Reply via email to