Re: MX7 CFHTTP : connection failure with Proxy

2005-12-20 Thread Yves Leung-Tack
Hi,


   The weird things is that when I call the CGI program directly from the 
browser using the following 

http://myproxy/cgi-bin/mro/pc_ptda_GetDwgDMZ.pl?strCurrentUrl=http://mycoldfusionserver/ptda/itdm/pc_tdm_ViewDrawing.cfmstrOutputTo=ScreenstrMasterDwg=PC106569strMasterRev=DstrDwgInRev=MANDATORY
 REVISIONstrToolNumbers=PC106569(0DstrDwgServer=wwtstrOverlay=FALSE

I can get the output of the CGI program !!

I am still puzzle !


Need help please !



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:227364
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: MX7 CFHTTP : connection failure with Proxy

2005-12-05 Thread Yves Leung-Tack
Help Please ! 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226063
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: MX7 CFHTTP : connection failure with Proxy

2005-12-05 Thread RADEMAKERS Tanguy
Hello Yves,

1) Just thinking out loud, but are you sure that you can connect to the
proxy url (http://myproxy/cgi-bin/mro/perlFile.pl, in your example) from
the ColdFusion MX7 server? Have you tried using cfexec to ping the proxy
from within a cf page? Have you tried using cfexec and wget to see if
you can get the url via http? This will eliminate the possibility of a
lower level (network) snafu causing problems.

2) have you tried using the various proxy* attributes of the cfhttp tag?
In this scenario, you would have a tag that looked more like :

CFHTTP METHOD=POST URL=http://cgiserver/cgi-bin/mro/perlFile.pl;
proxyServer=myproxy result=strXMLFile

cfhttpparam name=strOutputTo type=formfield
value=Screen
cfhttpparam name=strCurrentUrl   type=formfield
value=http://cfmServer/cfmFile.cfm;
cfhttpparam name=strMasterDwgtype=formfield
value=123445
cfhttpparam name=strMasterRevtype=formfield
value=D  
cfhttpparam name=strDwgInRev type=formfield
value=REVISION   
cfhttpparam name=strToolNumbers  type=formfield
value=123445 
cfhttpparam name=strDwgServertype=formfield
value=wwt
cfhttpparam name=strOverlay  type=formfield
value=FALSE  
/CFHTTP

 with maybe some other attributes like proxyPort, proxyUser, etc.
defined.


/t

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226069
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: MX7 CFHTTP : connection failure with Proxy

2005-12-05 Thread Yves Leung-Tack
1) Just thinking out loud, but are you sure that you can connect to the
proxy url (http://myproxy/cgi-bin/mro/perlFile.pl, in your example) from
the ColdFusion MX7 server? Have you tried using cfexec to ping the proxy
from within a cf page? Have you tried using cfexec and wget to see if
you can get the url via http? This will eliminate the possibility of a
lower level (network) snafu causing problems.

I tried the fexec, runninf ping, and from the MX7 server, I can ping the proxy. 
So network problem is definitively discarded.



2) have you tried using the various proxy* attributes of the cfhttp tag?
In this scenario, you would have a tag that looked more like :


Yes I tried the different atrributed using the proxyserver and proxyport 
without success.

I even tried to add an argument to the JVM that run Jrun server as explained in 
this Macromedia Technote : 
 http://www.macromedia.com/go/95f66fd8



So now I am short on idea to resolve that problem !!! 


If you have some other idea to solve it ... I appreciate !

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226100
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: MX7 CFHTTP : connection failure with Proxy

2005-12-05 Thread Yves Leung-Tack
1) Just thinking out loud, but are you sure that you can connect to the
proxy url (http://myproxy/cgi-bin/mro/perlFile.pl, in your example) from
the ColdFusion MX7 server? Have you tried using cfexec to ping the proxy
from within a cf page? Have you tried using cfexec and wget to see if
you can get the url via http? This will eliminate the possibility of a
lower level (network) snafu causing problems.

I tried the fexec, runninf ping, and from the MX7 server, I can ping the proxy. 
So network problem is definitively discarded.



2) have you tried using the various proxy* attributes of the cfhttp tag?
In this scenario, you would have a tag that looked more like :


Yes I tried the different atrributed using the proxyserver and proxyport 
without success.

I even tried to add an argument to the JVM that run Jrun server as explained in 
this Macromedia Technote : 
 http://www.macromedia.com/go/95f66fd8



So now I am short on idea to resolve that problem !!! 


If you have some other idea to solve it ... I appreciate !

Thanks

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226102
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: MX7 CFHTTP : connection failure with Proxy

2005-12-05 Thread Russ
Have you tried installing httplook on the server and seeing what's going on
'behind the scenes'?

-Original Message-
From: Yves Leung-Tack [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 05, 2005 3:24 PM
To: CF-Talk
Subject: Re: MX7 CFHTTP : connection failure with Proxy

1) Just thinking out loud, but are you sure that you can connect to the
proxy url (http://myproxy/cgi-bin/mro/perlFile.pl, in your example) from
the ColdFusion MX7 server? Have you tried using cfexec to ping the proxy
from within a cf page? Have you tried using cfexec and wget to see if
you can get the url via http? This will eliminate the possibility of a
lower level (network) snafu causing problems.

I tried the fexec, runninf ping, and from the MX7 server, I can ping the
proxy. So network problem is definitively discarded.



2) have you tried using the various proxy* attributes of the cfhttp tag?
In this scenario, you would have a tag that looked more like :


Yes I tried the different atrributed using the proxyserver and proxyport
without success.

I even tried to add an argument to the JVM that run Jrun server as explained
in this Macromedia Technote : 
 http://www.macromedia.com/go/95f66fd8



So now I am short on idea to resolve that problem !!! 


If you have some other idea to solve it ... I appreciate !

Thanks



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226103
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54