Re: 404

2015-03-05 Thread Dave Watts
In IIS, the handler for *.cfm is: C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dll Does that look right...? Yes. Could this be a permissions issue...? Are you able to run any CF pages? If so, probably not. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/

Re: 404

2015-03-05 Thread John M Bliss
I think it did. Then I deleted it. Genius. On Thu, Mar 5, 2015 at 3:54 PM, Dave Watts dwa...@figleaf.com wrote: Found it, I think: I was missing the IIS virtual directory /jakarta mapped to C:\ColdFusion10\config\wsconfig\1 Does that look right? Yes, you will need that. The web

Re: 404

2015-03-05 Thread John M Bliss
(32 bit) to Windows Server 2012 (64 bit) with new IIS, etc. My default fuse seems to work fine but whenever I specify another fuse like: http://www.domain.com/index.cfm?fuseaction=User.ShowLoginForm ...I'm getting the generic IIS 404 error. What am I missing...? -- John Bliss - http

404

2015-03-05 Thread John M Bliss
404 error. What am I missing...? -- John Bliss - http://www.linkedin.com/in/jbliss ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: 404

2015-03-05 Thread John M Bliss
Found it, I think: I was missing the IIS virtual directory /jakarta mapped to C:\ColdFusion10\config\wsconfig\1 Does that look right? On Thu, Mar 5, 2015 at 3:14 PM, Dave Watts dwa...@figleaf.com wrote: In IIS, the handler for *.cfm is:

Re: 404

2015-03-05 Thread Dave Watts
Found it, I think: I was missing the IIS virtual directory /jakarta mapped to C:\ColdFusion10\config\wsconfig\1 Does that look right? Yes, you will need that. The web server configuration tool should have created that for you. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569

Re: 404

2015-03-05 Thread Russ Michaels
the requirement for the jakarta vdir I just find annoying, so I am using the boncode handler with CF, then all you need is the handler and nothing else, so you can enable/disable cf via the web.config alone. On Thu, Mar 5, 2015 at 9:41 PM, Dave Watts dwa...@figleaf.com wrote: I think it did.

Re: 404

2015-03-05 Thread Dave Watts
I think it did. Then I deleted it. Genius. Don't feel too bad, it's not immediately obvious what it's for unless you're familiar with Tomcat already. I know I did a double-take the first time I installed CF 10, then I remembered there was no more JRun. Dave Watts, CTO, Fig Leaf Software

Re: CF 404 handler non being invoked on IIS

2015-02-19 Thread Russ Michaels
Do you have iis6 compatibility mode installed? Rgis can cause odd behaviour. If so remove all connectors, then remove iis6 mode then recreate connectors On Wed, Feb 18, 2015 at 5:06 AM, Mark Spence markpence...@gmail.com wrote: I'm trying to make do with using a custom 404 handler in IIS

Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence
a blank page from the 404 pages. I assume that either CF is not returning anything or IIS is discarding the response. Here is what I have in the onMissingTemplate function: cffunction name=onMissingTemplate returnType=boolean cfargument type=string name=targetPage required=true/ cfheader

RE: CF 404 handler non being invoked on IIS

2015-02-18 Thread Fernandez, Miguel
page). Or you can use both. The key for that scenario is to have each pointing to a different ColdFusion file (when using the admin setting). In your case, using the method in Application.cfc, just do your logging or whatever and then return the 404 status code to IIS so it will display it's

Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence
Sorry for the misunderstanding, but he 404 is for pages the are ses product pages. So I need the content to be returned to the user. An example would be thus: http://www.mysite.com/productpages/category/product-103/index.cfm I am pulling productpages to see that it is a product page and 103

RE: CF 404 handler non being invoked on IIS

2015-02-18 Thread Fernandez, Miguel
from them on how it works. http://blogs.coldfusion.com/post.cfm/onmissingtemplate -Original Message- From: Mark Spence [mailto:markpence...@gmail.com] Sent: Wednesday, February 18, 2015 12:07 AM To: cf-talk Subject: Re: CF 404 handler non being invoked on IIS I'm trying to make do

Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence
, Mark Spence markpence...@gmail.com wrote: Sorry for the misunderstanding, but he 404 is for pages the are ses product pages. So I need the content to be returned to the user. An example would be thus: http://www.mysite.com/productpages/category/product-103/index.cfm I am pulling

Re: CF 404 handler non being invoked on IIS

2015-02-17 Thread Mark Spence
I'm trying to make do with using a custom 404 handler in IIS but the requested template variable in CF resolves to to 404 handler rather than the url of the requested page. This is getting complicated as this is only a work around for local development and I don't want to change to much

Re: CF 404 handler non being invoked on IIS

2015-02-13 Thread Matt Robertson
sorry for my lack of attention on this. If you are in fact using IIS Rewrite then that clouds the picture a little. However if I can pull myself together and write something up you should be able to do all of your 404 handling in your ... 404 handler. I don't use IIS rewrites for much

Re: CF 404 handler non being invoked on IIS

2015-02-12 Thread Mark Spence
After playing with it a bit more I added this: httpErrors existingResponse=PassThrough/ Now I just get a blank page. Am I successfully passing it through to cf? Hard to tell. I was hoping to have made a bit of progress. On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com

Re: CF 404 handler non being invoked on IIS

2015-02-11 Thread Mark Spence
Thank you, I would appreciate that. On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com wrote: Mark, those two threads aren't exactly a linear set of to do steps. I'll try to put that together tomorrow when I am in front of a desktop.

Re: CF 404 handler non being invoked on IIS

2015-02-11 Thread Mark Spence
Have you tried a very simple rule to test of that is working ok ? The url rewrite is just pointing to serve the site from a subdirectory. It is working ok because the home page is being served correctly. Thanks, On Mon, Feb 9, 2015 at 3:09 PM, Russ Michaels r...@michaels.me.uk wrote: I

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Russ Michaels
It would seem that your url rewriting is not working if you are getting 404 on the original url., otherwise you get error on the rewritten url at least. On Sun, Feb 8, 2015 at 17:35 PM, Mark Spence markpence...@gmail.com wrote: This is working on the live hosted site, but on my local install

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Matt Robertson
Mark, those two threads aren't exactly a linear set of to do steps. I'll try to put that together tomorrow when I am in front of a desktop. -- --m@Robertson-- Janitor, The Robertson Team mysecretbase.com -- --m@Robertson-- Janitor, The Robertson Team mysecretbase.com

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Matt Robertson
Url rewrite in IIS may not even be involved here, and need not be. Prior to win2k8 the standard way to handle Cf 404 and 'fakeURL' 404's was to tell IIS not to 'check to see if file exists' in the .cfm mapping. From there CF server's 404 handler did whatever you wanted it to. To retain

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Russ Michaels
ok I thought I saw him say earlier on he was using url rewrite, maybe I was mistaken On Tue, Feb 10, 2015 at 1:30 AM, Matt Robertson websitema...@gmail.com wrote: Url rewrite in IIS may not even be involved here, and need not be. Prior to win2k8 the standard way to handle Cf 404

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Mark Spence
\wwwroot. This global template is 404handler.cfm and contains the following simple code, which you can expand upon: h1404/h1pPage Not Found/pcfheader statuscode=404 statustext=Not Found At this point, visit your web site and execute a bad ColdFusion url: *http://[domain]/bogus.cfm*. You

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Russ Michaels
the IIS web root and whose default location is c:\ColdFusion9\wwwroot. This global template is 404handler.cfm and contains the following simple code, which you can expand upon: h1404/h1pPage Not Found/pcfheader statuscode=404 statustext=Not Found At this point, visit your web site

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Matt Robertson
Formerly, in IIS you could check a box that told IIS to not check first if a page exists on the .cfm extension, which would defeat IIS handling .cfm 404 errors. From there your CF 404 error template would take over. This behavior changed as IIS was upgraded. So Item 1: If you are using

CF 404 handler non being invoked on IIS

2015-02-08 Thread Mark Spence
Application.cfc as the error page for 404 errors but no dice. How can I make CF take priority and handle the 404 error? Thank you. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: CF 404 handler non being invoked on IIS

2015-02-08 Thread Brian Cain
You will need to change a setting in IIS for the 404 page not found and point it to a CF page designed to process those requests. Thanks, Brian On Feb 8, 2015, at 11:35 AM, Mark Spence markpence...@gmail.com wrote: This is working on the live hosted site, but on my local install of iis

Re: CF 404 handler non being invoked on IIS

2015-02-08 Thread Mark Spence
I have added the following for a custom error page: Execute a url on this site /404.cfm I still get the standard iis 404 error page. I have restarted the server. Is there something else I need to do? Thanks. ~| Order

Re: Writing an Apache 404 Handler in CF

2014-10-14 Thread Robert Glover
%{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.cfm/%{REQUEST_URI} [QSA,L,NS] If you change the rule for static files to include .aspx, then Apache will handle that 404 as usual: RewriteCond %{REQUEST_URI} \. (aspx|bmp|gif|jpe?g|png|css|js|txt|xls|ico|swf)$ HTH, Jon On Oct 10, 2014

Writing an Apache 404 Handler in CF

2014-10-10 Thread Robert Glover
This is as much an Apache question as it is a CF question; I hope this is acceptable. I posted it to Serverfault several days ago and haven't gotten any response, and it's become a rather critical issue. - I've written a custom 404 handler for Apache. The handler looks

Re: Writing an Apache 404 Handler in CF

2014-10-10 Thread Russ Michaels
become a rather critical issue. - I've written a custom 404 handler for Apache. The handler looks at the incoming URL (cgi.request_url), queries a database table, and responds by redirecting the visitor to the new URL. What should happen: www.mysite.co.uk gets redirected

Re: Writing an Apache 404 Handler in CF

2014-10-10 Thread Jon Clausen
/%{REQUEST_URI} [QSA,L,NS] If you change the rule for static files to include .aspx, then Apache will handle that 404 as usual: RewriteCond %{REQUEST_URI} \.(aspx|bmp|gif|jpe?g|png|css|js|txt|xls|ico|swf)$ HTH, Jon On Oct 10, 2014, at 4:34 PM, Russ Michaels r...@michaels.me.uk wrote: Wouldn't

Handling 404 errors by Coldfusion

2014-07-30 Thread Claude Schnéegans
Hi, I'm havin someting weird hapening on mt CF 9 / Windows Web Server 2008 / IIS 7.5 My site is returning an error 404 status when some requested page does'nt exists. For instance http://myDomain.com/index.cfm?p=pageid=21 return normaly page 21 which exists, but http://myDomain.com/index.cfm

Re: Handling 404 errors by Coldfusion

2014-07-30 Thread Jon Clausen
Claude, This should be just a setting that needs to be adjusting in IIS: IIS Manager [Site] Error Pages 404 - Uncheck “Insert content from static file in to the error response” and/or reconfigure as fits your need. HTH, Jon On Jul 30, 2014, at 2:49 PM, Claude Schnéegans schneeg

Re: Handling 404 errors by Coldfusion

2014-07-30 Thread Claude Schnéegans
IIS Manager [Site] Error Pages 404 - Uncheck “Insert content from static file in to the error response” and/or reconfigure as fits your need. Ok, I've seen that, but the problem is that I still have to give a URL to be executed or Respond with 302 redirect. In fact I just need IIS to do

Re: Handling 404 errors by Coldfusion

2014-07-30 Thread Jon Clausen
You have two options that I can see: 1) Point the static content option to an empty file (not a very good option for your static content 404’s) 2) Remove the 404 handler completely from the Error Pages and use your web.config to handle 404’s for static content and pass through existing

404's

2014-02-19 Thread John M Bliss
a 404 error. Any ideas about what to look for next? -- John Bliss - http://www.linkedin.com/in/jbliss ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: 404's

2014-02-19 Thread Russ Michaels
form, location bar changes to http://my.domain.com/formhandler.cfm and that file is definitely in the webroot with the same permissions as index.cfm...but IIS returns a 404 error. Any ideas about what to look for next? -- John Bliss - http://www.linkedin.com/in/jbliss

Re: 404's

2014-02-19 Thread John M Bliss
returns a 404 error. Any ideas about what to look for next? -- John Bliss - http://www.linkedin.com/in/jbliss ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: 404's

2014-02-19 Thread Steve 'Cutter' Blades
bar changes to http://my.domain.com/formhandler.cfm and that file is definitely in the webroot with the same permissions as index.cfm...but IIS returns a 404 error. Any ideas about what to look for next? -- John Bliss - http://www.linkedin.com/in/jbliss

Re: 404's

2014-02-19 Thread John M Bliss
permissions as index.cfm...but IIS returns a 404 error. Any ideas about what to look for next? -- John Bliss - http://www.linkedin.com/in/jbliss ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com

Re: 404's

2014-02-19 Thread Russ Michaels
to run fine with a form submitting to another .cfm file. Upon submitting form, location bar changes to http://my.domain.com/formhandler.cfm and that file is definitely in the webroot with the same permissions as index.cfm...but IIS returns a 404 error. Any ideas about what

Re: 404's

2014-02-19 Thread John M Bliss
I'm not sure. Site has hundreds of .cfm files. index.cfm works fine, some .htm and image files work fine, http://my.domain.com/formhandler.cfm is 404. On Wed, Feb 19, 2014 at 10:23 AM, Russ Michaels r...@michaels.me.uk wrote: yes I noted you said it was IIS, thus why I asked about

Re: 404's

2014-02-19 Thread Russ Michaels
cfsearch.com On 19 Feb 2014 15:28, John M Bliss bliss.j...@gmail.com wrote: I'm not sure. Site has hundreds of .cfm files. index.cfm works fine, some .htm and image files work fine, http://my.domain.com/formhandler.cfm is 404. On Wed, Feb 19, 2014 at 10:23 AM, Russ Michaels r

Re: 404's

2014-02-19 Thread Randy Johnson
bliss.j...@gmail.com wrote: I'm not sure. Site has hundreds of .cfm files. index.cfm works fine, some .htm and image files work fine, http://my.domain.com/formhandler.cfm is 404. On Wed, Feb 19, 2014 at 10:23 AM, Russ Michaels r...@michaels.me.uk wrote: yes I noted you said

Re: CF10 404 issues - a new kind of problem?

2013-09-20 Thread Money Pit
Solved. http://stackoverflow.com/a/18927484/2788098 Once a custom template is specified in IIS, it uses that template exclusively and the CFAdmin-set global template is completely ignored by IIS. However the local template is fullyi functional so, while its a royal pain to have to do a

Re: CF10 404 issues - a new kind of problem?

2013-09-19 Thread Money Pit
installed to another server (VPS) with identical OS - fresh install of CF but same win2k8R2/64 and config and identical problem. At this point I'm at a loss to do anything but downgrade to CF9 and wait for CF11. I hate to throw away all that work but at some point you just have to cut your

Re: CF10 404 issues - a new kind of problem?

2013-09-18 Thread Russ Michaels
In the cfadmin youbyou set the missing and error templates as /filename.cfm and put it in the root of the site. It seems that with cf10/Apache if it doesn't find a file in the expected location it will look in cf internal doc root instead, so u need to clear out that folder. Iis 404 template

Re: CF10 404 issues - a new kind of problem?

2013-09-18 Thread Steve 'Cutter' Blades
And, as a side, you can use an application level CF request 404 handler by using the onMissingTemplate() method in Application.cfc. This only works for requests to CF processed resources, by template name (a directory call will just die). https://learn.adobe.com/wiki/display/coldfusionen

Re: CF10 404 issues - a new kind of problem?

2013-09-18 Thread Money Pit
Steve 'Cutter' Blades said And, as a side, you can use an application level CF request 404 handler by using the onMissingTemplate() method in Application.cfc. Unfortunately this is a legacy site with an Application.cfm. I've looked at converting it to a .cfc specifically to take advantage

Re: CF10 404 issues - a new kind of problem?

2013-09-18 Thread Money Pit
debugging marches on... I took IIS 404 behavior back to default to simplify debugging. So ignoring the weirdness I described earlier re: the IIS 404 handler, if I just concentrate on the CF handler, I am saddled with a template that is not firing. I put up a thread on Stack Overflow. One

CF10 404 issues - a new kind of problem?

2013-09-17 Thread Money Pit
I've seen and dealt with plenty of CF10 404 issues since my install yesterday, but this appears to be a new one: This is my first CF10 installation. I am running with Update 11 in place. Win2k8 R2/64bit. 1. CF Admin's missing template handler residing in the cfusion wwwroot is nonfunctional

RE: 404 pages

2013-07-19 Thread Mark A Kruger
Rob, Not sure if anyone answered you here. Did you also set your onMissingTemplate() handler in your application.cfc? -Mark -Original Message- From: Rob Voyle [mailto:robvo...@voyle.com] Sent: Thursday, July 18, 2013 4:47 PM To: cf-talk Subject: 404 pages Hi Folks I set up

404 pages

2013-07-18 Thread Rob Voyle
Hi Folks I set up in the administrator a Missing Template Handler I have a notfound.cfm page that works fine for 404 errors such as http://www.domain.com/obsoletePage.cfm will trigger notFound.cfm However http://www.domain.com/obsoletePage.cfm?training=teleconference gets the standard CF

Re: Custom 404 with CF10

2013-04-15 Thread Mary Jo Sminkey
the requirement to enable detailed errors is actually with IIS7 not CF10, so if this was causing your issue it would have affected CF9 as well. Did you also upgrade from IIS6 to IIS7 by any chance ? Nope, for whatever reason we were not having the same issue on IIS7 and CF9 However you can set

Custom 404 with CF10

2013-04-13 Thread Mary Jo Sminkey
We're looking at moving to CF10 but have run into an issue we can't seem to figure out. It's not a problem on CF9 but is a deal breaker for us with CF10 unless we can find a solution. Basically our site uses a custom 404 handler, which is set up in IIS using the Execute URL as it calls

Re: Custom 404 with CF10

2013-04-13 Thread Russ Michaels
Why not have the standard cf 404 handler redirect to your custom error page? Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Apr 13, 2013 6:18 PM, Mary Jo Sminkey mary...@cfwebstore.com wrote: We're

Re: Custom 404 with CF10

2013-04-13 Thread Mary Jo Sminkey
Why not have the standard cf 404 handler redirect to your custom error page? Because it needs to handle situations that are not only CF 404s. Mary Jo ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

Re: Custom 404 with CF10

2013-04-13 Thread Russ Michaels
then do the same with the error template as well ? On Sat, Apr 13, 2013 at 9:33 PM, Mary Jo Sminkey mary...@cfwebstore.comwrote: Why not have the standard cf 404 handler redirect to your custom error page? Because it needs to handle situations that are not only CF 404s. Mary Jo

Re: Custom 404 with CF10

2013-04-13 Thread Mary Jo Sminkey
then do the same with the error template as well ? No, I mean they are not seen as ColdFusion errors of any kind. We'd have to make changes to our site and how the SEO is handled, etc. to make sure that anything that could conceivably be a 404 would get sent to CF in some way. I also seem

Re: Custom 404 with CF10

2013-04-13 Thread Russ Michaels
as ColdFusion errors of any kind. We'd have to make changes to our site and how the SEO is handled, etc. to make sure that anything that could conceivably be a 404 would get sent to CF in some way. I also seem to recall that using a cflocation to get a 404 handler could be tricky in terms of correctly

SOT: Custom 404

2013-01-22 Thread Steve LaBadie
I created a custom 404 page so visitors would see the CF error page. Now I can't see what errors are being produced when developing new dynamic content. Are there any recommendation on how to resolve this? Thanks, Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba

Re: SOT: Custom 404

2013-01-22 Thread Russ Michaels
-box.esu.edu wrote: I created a custom 404 page so visitors would see the CF error page. Now I can't see what errors are being produced when developing new dynamic content. Are there any recommendation on how to resolve this? Thanks, Steve LaBadie, Web Manager East Stroudsburg University 570-422

RE: SOT: Custom 404

2013-01-22 Thread Steve LaBadie
404 You only need the custom error page on the live site, simply disable it on your development machine. Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Jan 22, 2013 7:37 PM, Steve LaBadie slaba...@po

Re: SOT: Custom 404

2013-01-22 Thread Cameron Childress
LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Tuesday, January 22, 2013 2:51 PM To: cf-talk Subject: Re: SOT: Custom 404 You only need the custom error page on the live site

RE: SOT: Custom 404

2013-01-22 Thread Steve LaBadie
, January 22, 2013 3:05 PM To: cf-talk Subject: Re: SOT: Custom 404 In situations like yours I would say the opposite. If you are developing on a live server, you have no production machine, only a development one, deployed in a production environment. Really though, if you have a computer that you use

Re: SOT: Custom 404

2013-01-22 Thread Cameron Childress
On Tue, Jan 22, 2013 at 4:09 PM, Steve LaBadie slaba...@po-box.esu.eduwrote: I am still using MX7. I didn't see any examples of sending via email except for CF 8 and 9 http://www.bennadel.com/blog/932-Ask-Ben-Handling-Errors-With-ColdFusion-CFError.htm -Cameron -- Cameron Childress -- p:

404 errors in the application log

2012-04-02 Thread Randy Johnson
Hello, Is there a way to prevent 404 error messages from showing up in the application log? Thanks! Randy ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag

Re: 404 errors in the application log

2012-04-02 Thread Nathan Strutz
at 8:34 AM, Randy Johnson ra...@randy.cc wrote: Hello, Is there a way to prevent 404 error messages from showing up in the application log? Thanks! Randy ~| Order the Adobe Coldfusion Anthology now! http

Re: 404 errors in the application log

2012-04-02 Thread Dave Watts
IIS has an option to check for existing files before it hands the request off to CF. Just a heads-up - you have to be very careful with this feature, at least in some versions of IIS + CF. CF depends in many cases on wildcard patterns, and paths to files that don't even exist. You could also

Re: 404 errors in the application log

2012-04-02 Thread Randy Johnson
You could also implement an onMissingTemplate() method in your Application.cfc, which I think is a CF9 feature. Thanks, I will go this route. Randy ~| Order the Adobe Coldfusion Anthology now!

Re: 404 errors in the application log

2012-04-02 Thread Randy Johnson
You could also implement an onMissingTemplate() method in your Application.cfc, which I think is a CF9 feature. This is the suggestion I'd recommend, and it's available in CF 8 as well. Thanks, this is what I will do. Randy

Re: 404 errors in the application log

2012-04-02 Thread Russ Michaels
you also have a global setting in the cfadmin for missing template handler, put a path here and it will show for all missing files. note that the file must also exist at the same path in the default website that hosts the cfadmin or it wont validate. A very daft requirement if you ask me. On

Re: WSDL 404 Error

2011-09-26 Thread Shannon Rhodes
Thanks all...it seems to have magically resolved itself after some server maintenance this weekend. I appeciate the help! ~| Order the Adobe Coldfusion Anthology now!

Re: WSDL 404 Error

2011-09-24 Thread Shannon Rhodes
for your web service and load it in a browser ON the server, CF can't load it either. The 404 from your CFHTTP call is a good indication that CF simply can't find it. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com Why would there be an issue resolving the domain

Re: WSDL 404 Error

2011-09-24 Thread Russ Michaels
/coldfusion/8/htmldocs/help.html?content=webservices_19.html So folks, does anyone know what to do when ColdFusion fails to create the WSDL?? If you can't take the WSDL URL for your web service and load it in a browser ON the server, CF can't load it either. The 404 from your CFHTTP call is a good

RE: WSDL 404 Error

2011-09-24 Thread Bobby Hartsfield
in through the web server (web server being apache or iis or whatever you are using) to call a URL (not a file). You've already told us that you get a 404 when you try to CFHTTP the WSDL URL, so I assure you that CF is getting the same thing when it tries to invoke it as a web service. Drop an HTML file

Re: WSDL 404 Error

2011-09-24 Thread Dave Watts
, I guess, but important in finding a resolution. If it were actually failing to generate WSDL, you should see a 500 error rather than a 404 error. Are you able to browse the auto-generated documentation for your CFC? Are these URLs being served by CF's built-in web server, or by your own web

Re: WSDL 404 Error

2011-09-24 Thread James Holmes
=webservices_19.html So folks, does anyone know what to do when ColdFusion fails to create the WSDL?? If you can't take the WSDL URL for your web service and load it in a browser ON the server, CF can't load it either. The 404 from your CFHTTP call is a good indication that CF simply can't find

WSDL 404 Error

2011-09-23 Thread Shannon Rhodes
remote, then call the cfc?wsdl and it will automatically create the WSDL file for you. Well, I don't know if this is unsupported in CF7 or what, but I get a 404 error if I try calling http://mydomain/mycfc.cfc?wsdl (actually, if I try to invoke as a web service, I get a stub error, but if I plug

Re: WSDL 404 Error

2011-09-23 Thread Casey Dougall
can be summarized as ColdFusion makes it easy---just make your method access remote, then call the cfc?wsdl and it will automatically create the WSDL file for you. Well, I don't know if this is unsupported in CF7 or what, but I get a 404 error if I try calling http://mydomain/mycfc.cfc?wsdl

RE: WSDL 404 Error

2011-09-23 Thread Bobby Hartsfield
: Friday, September 23, 2011 3:38 PM To: cf-talk Subject: WSDL 404 Error I'm testing publishing my first web service. The CFC works fine---I can call any of the functions and dump the results to the screen. Everything I read online when researching how to turn this into a web service can

Re: WSDL 404 Error

2011-09-23 Thread Casey Dougall
in CF7 or what, but I get a 404 error if I try calling http://mydomain/mycfc.cfc?wsdl(actually, if I try to invoke as a web service, I get a stub error, but if I plug it into cfhttp I can see the page not found error returning). Where do I go from here? My guess is it's just not generating

Re: WSDL 404 Error

2011-09-23 Thread Shannon Rhodes
On Fri, Sep 23, 2011 at 3:38 PM, Shannon Rhodes shan...@rhodesedge.comwrote: I'm over 50% positive this happens with useing OnRequest in applicatiton.cfc I can't remember the work around for this off top of head since I don't do internal WSDL calls often but believe it is due to how

Re: WSDL 404 Error

2011-09-23 Thread Shannon Rhodes
No, same as the cfhttp call...but the cfc is there and functional as a normal object invocation. Can your server resolve http://mydomain/ ? Try to open the WSDL URL from a browser on the machine that is running CF. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

Re: WSDL 404 Error

2011-09-23 Thread Shannon Rhodes
Thanks but it's not onrequest, this is the entire application.cfc: cfcomponent displayname=Application output=true hint=Handle the application. !--- Set up the application. --- cfset THIS.Name = WebServiceApp / /cfcomponent

RE: WSDL 404 Error

2011-09-23 Thread Bobby Hartsfield
Message- From: Shannon Rhodes [mailto:shan...@rhodesedge.com] Sent: Friday, September 23, 2011 4:06 PM To: cf-talk Subject: Re: WSDL 404 Error No, same as the cfhttp call...but the cfc is there and functional as a normal object invocation. Can your server resolve http://mydomain/ ? Try

Re: WSDL 404 Error

2011-09-23 Thread Shannon Rhodes
Why would there be an issue resolving the domain? CFM files work fine from the same directory when called via url. Is there some other step to making a web service available that I'm missing here? ~| Order the Adobe

Re: WSDL 404 Error

2011-09-23 Thread Casey Dougall
On Fri, Sep 23, 2011 at 4:33 PM, Shannon Rhodes shan...@rhodesedge.comwrote: Why would there be an issue resolving the domain? CFM files work fine from the same directory when called via url. Is there some other step to making a web service available that I'm missing here? Do you have

Re: WSDL 404 Error

2011-09-23 Thread Shannon Rhodes
Yes access is remote. The only reason why I did any object invocation on the cfc was to test it. I'm merely excluding the possibility of error in the cfc itself. But that does me no good---it needs to be a web service. That's my dead end, you call the web service and get a 404. Can anyone

RE: WSDL 404 Error

2011-09-23 Thread Bobby Hartsfield
If you can't take the WSDL URL for your web service and load it in a browser ON the server, CF can't load it either. The 404 from your CFHTTP call is a good indication that CF simply can't find it. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com

Getting IIS 404 errors handled by CFM?

2010-12-24 Thread Marie Taylore
Is there a way to get the IIS 404 pages handled by the CF engine? This is CF8 on Win2003 Server. Currently, it displays the page, but when you View Source, you see all the CFML code. Switched back to a plain HTM file for now. Thanks! MarieT

Re: Getting IIS 404 errors handled by CFM?

2010-12-24 Thread Brian Polackoff
Set IIS custom 404 error to URL and set to /404.cfm. Then create a a file called 404.cfm an place it in your web root. This will do what you want. Thanks, Brian On Dec 24, 2010, at 6:04 PM, Marie Taylore mt4yl...@yahoo.com wrote: Is there a way to get the IIS 404 pages handled by the CF

JRun 404 without index.cfm (Win2008 R2 / CF9)

2010-12-20 Thread Jeff Chastain
. If I go to https://127.0.0.1/CFIDE/administrator/index.cfm, everything works. If I go to https://127.0.0.1/CFIDE/administrator/, I get a JRun 404 error (not an IIS 404). I have checked the web.xml file and the default index.cfm document is listed there. What am I missing here? Thanks

Re: JRun 404 without index.cfm (Win2008 R2 / CF9)

2010-12-20 Thread Scott Stroz
404 error (not an IIS 404). I have checked the web.xml file and the default index.cfm document is listed there.  What am I missing here? Thanks -- Jeff ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com

Re: JRun 404 without index.cfm (Win2008 R2 / CF9)

2010-12-20 Thread Jeff Chastain
Did you add index.cfm to the 'list' of default files in IIS? Not quite that obvious Scott ;-) Yeah, IIS has the index.cfm setup as the first default document and the 404 page I am getting is not the IIS page, thus my assumption that it is the JRun 404. The layout is very basic, dark grey

Re: IIS7 404 handler/URL Rewrite...

2010-09-24 Thread Eric Roberts
Not to be pain on this, but this is something I would like to accomplish today before I leave (last day of contract)...anyone know why the 404_handler.cfm that is specified as the 404 handler in IIS is not executing in IIS7 like it did in IIS6? Is there something ese that needs to be done in 7

RE: IIS7 rewrite and custom 404 handler

2010-09-24 Thread Eric Roberts
Problem solved...or to be more accurate, it was never a problem. Apparently one of the new features in IIS7 is when you access a page locally, you get detailed error pages, but when you access them remotely, you gey whatever your custom pages are :-D Problem solved...life is good :-D Eric

Re: IIS7 404 handler/URL Rewrite...

2010-09-24 Thread Judah McAuley
I use URL Rewriting on IIS7 but not with a 404 handler. It seems to me that if you are rewriting in the webserver layer, why would you rewrite to an invalid path? I just specify a regex for the rewrite that says take everything of the form /foo/bar/monkey and rewrite it to /index.cfm?params=foo

  1   2   3   4   5   6   >