I have a process that interacts with encrypted pages on the house.gov website. 
Everything was working fine until a few days ago. It appears that there is a 
DNS problem with house.gov though sub-domains including "www" are fine. IE 
throws an error when going to house.gov while firefox redirects to the www.

HTTPS addresses at house.gov with a sub-domain work fine in all browsers but CF 
(Java?) can't access them any longer. Below is some quick test code where you 
can see the response from ColdFusion and click to see the browser response.

Any ideas or options here? Hopefully house.gov magically starts working soon 
and fixes this. Not getting this working will mean a lot of manual work. Thanks 
for any help


==================
Test Code
==================

<cfset tests = [
        "http://www.house.gov";,
        "http://house.gov";,
        "http://forms.house.gov";,
        "https://www.house.gov";,
        "https://forms.house.gov";
]>

<cfoutput>
<cfloop list="#arrayToList(tests)#" index="address">
        <a href="#address#" target="_blank">#address#</a>
        <cfhttp url="#address#" throwonerror="false" />
        <cfdump label="#address#" var="#cfhttp#" expand="false">
        <br />
</cfloop>
</cfoutput>

==================
Example Response
==================

Charset  [empty string]
ErrorDetail      I/O Exception: peer not authenticated
Filecontent      Connection Failure
Header   [empty string]
Mimetype         Unable to determine MIME type of file.
Responseheader  
http://www.house.gov - struct [empty]
Statuscode       Connection Failure. Status code unavailable.
Text     YES



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308228
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to