John Robey
Member since May 17, 2010
- Profile: /members/6049-john-robey.htm
- Comments: 7
Recent Blog Comments By John Robey
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Jun 8, 2010 at 3:13 PM
It was essentially redefining them each page via cfset, a la: -- cfapplication name="theApp" sessionmanagement="Yes" setclientcookies="No" sessiontimeout=#Createtimespan(0,0,15,0)# cfcookie name="CFID" Value="#Session.cfid#" cfcookie name="CFTOKEN" Value="#Session.cftoken#" -- This was more-or-... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Jun 2, 2010 at 2:57 PM
urlSessionFormat() fixed it! Thanks much! :) -John R.... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Jun 2, 2010 at 2:48 PM
Looking into it, it appears that our previous model simply had definitions for CFID and CFTOKEN within application.cfm, so they automatically carried from page to page (as application.cfm loaded first). Since application.cfc doesn't do this, obviously, it wasn't working. Turning on client cookies s... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Jun 2, 2010 at 2:37 PM
We do have client-side cookies disabled (gov't contractor, we have very draconian privacy reqs we have to follow), but we've never had an issue with session management previously. This is the first time we've used application.cfc instead of application.cfm, tho, so I'm still learning what's what abo... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Jun 2, 2010 at 2:30 PM
Okay, here's a weird one ... I have a cart structure being defined by OnSessionStart() ... except that it's getting redefined with every page all. It's essentially re-starting the session every time I go from one page to the next! Any idea what might be causing this behavior? Thanks, -John R.... read more »
-
My First ColdFusion Web Service
Posted on May 19, 2010 at 8:25 AM
@Ben Nadel, thanks, I'll give that a try. The WSDL renders okay, but cfinvoke just doesn't cut the mustard. The ASP.NET team are working on retooling their files, too, so hopefully between us we can work it out. -John R.... read more »
-
My First ColdFusion Web Service
Posted on May 17, 2010 at 11:41 PM
Hello! I've been attempting to consume an ASP.NET web service in CF9 via CFINVOKE, but all I am coming up with is: Cannot generate stub objects for web service invocation. Name: [server redacted] Servicehost/ProductInquiryService.svc?wsdl. WSDL: [server redacted] Servicehost/ProductInquiryService.... read more »