Re: $.get URL length CF10/Tomcat

2012-12-17 Thread Chad Baloga

Yep... that is what I ended up doing

Shouldn't you switch to $.post if your URL is getting too long?




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


$.get URL length CF10/Tomcat

2012-11-21 Thread Chad Baloga

We have run into a problem with CF10 where we throw a 500 error when the URL 
string to a CFC call is too long.  Does anyone know what setting needs changed??

isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while getting the 
url

We are running CF10 w/ IIS 7.5 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353272
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: $.get URL length CF10/Tomcat

2012-11-21 Thread Dave Watts

 We have run into a problem with CF10 where we throw a 500 error when the URL 
 string to a CFC call
 is too long.  Does anyone know what setting needs changed??

 isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while getting 
 the url

 We are running CF10 w/ IIS 7.5

Does the URL exceed 2048 bytes? If so, you'll need to increase the
value within the IIS Management Console ... Request Filtering ... Edit
Feature Settings. You can also control this setting via web.config,
appcmd.exe, and scripting:

http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits#001

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353273
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: $.get URL length CF10/Tomcat

2012-11-21 Thread Raymond Camden

Shouldn't you switch to $.post if your URL is getting too long?


On Wed, Nov 21, 2012 at 7:28 AM, Dave Watts dwa...@figleaf.com wrote:


  We have run into a problem with CF10 where we throw a 500 error when the
 URL string to a CFC call
  is too long.  Does anyone know what setting needs changed??
 
  isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while
 getting the url
 
  We are running CF10 w/ IIS 7.5

 Does the URL exceed 2048 bytes? If so, you'll need to increase the
 value within the IIS Management Console ... Request Filtering ... Edit
 Feature Settings. You can also control this setting via web.config,
 appcmd.exe, and scripting:


 http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits#001

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Get URL

2004-01-09 Thread Shahzad.Butt
How can I get the current URL (from browser)? e.g. I type in
http://abc.com/myTest/test.cfm I need to save this URL in a variable
inside test.cfm...

 
Thanks
Shaz
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Get URL

2004-01-09 Thread Adrian Lynch
Dump CGI to see what's available to use.

 
cfdump var=#CGI# /

 
Ade :O)

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 09 January 2004 12:15
To: CF-Talk
Subject: Get URL

How can I get the current URL (from browser)? e.g. I type in
http://abc.com/myTest/test.cfm http://abc.com/myTest/test.cfmI need to
save this URL in a variable
inside test.cfm...

Thanks
Shaz 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Get URL

2004-01-09 Thread Craig Dudley
Try

 
cfdump var=#cgi#

 
The variables you want is in there somewhere.

	-Original Message-
	From: Shahzad.Butt [mailto:[EMAIL PROTECTED] 
	Sent: 09 January 2004 12:15
	To: CF-Talk
	Subject: Get URL
	
	
	How can I get the current URL (from browser)? e.g. I type in
	http://abc.com/myTest/test.cfm I need to save this URL in a
variable
	inside test.cfm...
	
	
	Thanks
	Shaz 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Get URL

2004-01-09 Thread Mike Townend
theres a nifty little UDF on cflib called GetCurrentURL() which should do
the job

HTH

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 9, 2004 12:15
To: CF-Talk
Subject: Get URL

How can I get the current URL (from browser)? e.g. I type in
http://abc.com/myTest/test.cfm I need to save this URL in a variable
inside test.cfm...

Thanks
Shaz 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Get URL

2004-01-09 Thread Bill Grover
Try

 
cfset lcFullURL = Trim(CGI.path_info)
cfif CGI.query_string NEQ 
 cfset lcFullURL = lcFullURL  ?  CGI.query_string
/cfif

This is the code I use in a my login page.Basically I do it so a user can bookmark any page on the site (i.e. www.euservices.com/myeu/somepage.cfm?parm=somevalue) and if they select their bookmark the system will try to go there, switch to my login page, log them in then continue to the page they requested.
__ 
file:///E:/EUColor.gif 	
Bill Grover 	
Manager, Information Systems 	Phone:	 301.424.3300 x3324 	
EU Services, Inc. 	FAX:	 301.424.3696	
649 North Horners Lane 	E-Mail:	mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]	
Rockville, MD 20850-1299 	WWW:	http://www.euservices.com/ http://www.euservices.com 	
__ 

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: Friday, January 09, 2004 7:15 AM
To: CF-Talk
Subject: Get URL

How can I get the current URL (from browser)? e.g. I type in
http://abc.com/myTest/test.cfm I need to save this URL in a variable
inside test.cfm...

Thanks
Shaz 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]