Re: AMF call problem, CF returning no response

2013-03-08 Thread Nathan Mische
What is the access modifier on the gateway functions? If public you may need to change to remote. --Nathan On Thu, Mar 7, 2013 at 9:04 PM, Rick Root rick.r...@gmail.com wrote: I'm trying this again so I can explain everything in one fell swoop... I have an old Flash app (last compiled with

Re: SAML and ColdFusion - struggling.

2011-09-14 Thread Nathan Mische
Mark, I'm pretty well versed in Shibboleth. You say you are setting up a Shibboleth server, do you mean the IdP product? If so I don't think that is what you want. You need to set up the Shibboleth SP software on your web server in order to consume assertions. Are you receiving these assertions

Re: Debugging SOAP

2011-05-25 Thread Nathan Mische
On Tuesday, May 24, 2011, Robert Rhodes rrhode...@gmail.com wrote: I don't need to monitor between my computer and the application server.  I need to monitor between the application server and a remote server across the web that hosts the web service. Adding the proxyserver and proxyport

Re: Debugging SOAP

2011-05-24 Thread Nathan Mische
You can use a proxy to do this. I use Charles. For example, assume your local computer is running Charles and has an IP address of 192.168.1.1 and the development server can reach your local computer at that address. In your cfinvoke tag, set the proxyServer attribute to 192.168.1.1 and the

Re: CM?

2006-05-31 Thread Nathan Mische
Love the Farcry!! A bit scattered on the learning curve, but it's a great program at a great price!! Geoff Bowers recently posted a FarCry Getting Started Guide to help get users up to speed with FarCry: http://blog.daemon.com.au/index.cfm?objectid=7E8FA9A1-EA69-0EC7-F2DD9803CB1F37D0

Re: OT Checking for video plugins

2005-05-27 Thread Nathan Mische
Have you looked at BrowserHawk? http://www.cyscape.com/ ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message:

Encrypting JDBC

2005-05-04 Thread Nathan Mische
Is it possible to encrypt the JDBC connection between ColdFusion and the database server? I'm using CFMX 7 Standard and MS SQL Server 2000. Thanks, --Nathan ~| Logware (www.logware.us): a new and convenient web-based time

Re: Encrypting JDBC

2005-05-04 Thread Nathan Mische
Thanks everyone for the suggestions. --Nathan On 5/4/05, Dave Watts [EMAIL PROTECTED] wrote: Is it possible to encrypt the JDBC connection between ColdFusion and the database server? I'm using CFMX 7 Standard and MS SQL Server 2000. Yes. Microsoft recommends using SSL for encrypting

Re: CFMX 6.1 Standard Questions

2005-02-24 Thread Nathan Mische
With CFMX Standard, the context root is /, so every request is routed through the CF module for your web server to determine whether CF should handle it. Thanks Dave, I'm basing my question on an article I read on the Macromedia site, Implementing Multitier Hardware Load Balancing with

CFMX 6.1 Standard Questions

2005-02-23 Thread Nathan Mische
Hello, I've recently changed jobs and have gone from working on CFMX 6.1 Enterprise (J2EE on JRun) with Oracle to CFMX 6.1 Standard with SQL Server 2000. I have a few questions relating to the differences in these environments. First, what database driver does CFMX standard use for SQL Server?

Re: CFMX 6.1 Standard Questions

2005-02-23 Thread Nathan Mische
with 6.1), unless you replace it with jDTS or the MS driver. -Original Message- From: Nathan Mische [mailto:[EMAIL PROTECTED] Sent: Thursday, 24 February 2005 10:59 To: CF-Talk Subject: CFMX 6.1 Standard Questions Hello, I've recently changed jobs and have gone from working on CFMX

RE: Limiting SQL Results

2004-12-13 Thread Nathan Mische
If you are using MySQL 4.1 you may be able to do something like: SELECT i1.ID, i1.ISBN FROM ISBN i1 WHERE i1.ID IN ( SELECT i2.ID FROM ISBN i2 WHERE i2.ISBN = i1.ISBN LIMIT 2 ) I don't use MySQL so your mileage may vary. --Nathan

RE: String question...

2004-12-08 Thread Nathan Mische
There are a few ways you could do this, the easiest probably being REFind(). REFind(^AUDIT/,AUDIT/Systems) --Nathan -Original Message- From: Charles Heizer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 08, 2004 12:37 PM To: CF-Talk Subject: String question... Hello, I was

RE: An exception occurred when instantiating a Com object.

2004-11-23 Thread Nathan Mische
You may need to use the com2java utility. You can find more info here: http://www.macromedia.com/support/coldfusion/ts/documents/tn18211.htm -Original Message- From: Jonathan Bigelow [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 23, 2004 11:41 AM To: CF-Talk Subject: Re: An

/WEB-INF/cfclasses location

2004-10-20 Thread Nathan Mische
Before applying the 6.1 updater my CF classes were all stored in the Jrun directory (ie. C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses). After applying the updater my classes are now being placed under the IIS webroot (ie. C:\Inetpub\wwwroot\WEB-INF\cfclasses). Is there anyway

RE: Bug in CFMX's arithmetic functions

2004-06-28 Thread Nathan Mische
Any reason you are not using CFMX 6.1? I just ran the following in CFMX 6.1 and got the expected result, 0.123. cfscript DecryptedData = 123.123; x = Evaluate(Val(#DecryptedData#) - Fix(Val(#DecryptedData#))); writeOutput(x); /cfscript Also, there is no need for the Evaluate function, Val

CFMX Enterprise, JRun and Flash Remoting

2004-06-23 Thread Nathan Mische
We recently upgraded our ColdFusion server from Pro to Enterprise and now we can't seem to get Flash Remoting working. When Ibrowse to flashservices/gateway I get a blank page, but when I try to connect to a service from the Flash Service Browser I get the following error: Service threw an

RE: CFMX Enterprise, JRun and Flash Remoting

2004-06-23 Thread Nathan Mische
user AdminServlet: init From: Nathan Mische [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 10:04 AM To: CF-Talk Subject: CFMX Enterprise, JRun and Flash Remoting We recently upgraded our ColdFusion server from Pro to Enterprise and now we can't

RE: CFMX Enterprise, JRun and Flash Remoting (Update)

2004-06-23 Thread Nathan Mische
I've been working on this off and on all day and this is what my investigation has uncovered so far. I tried accessing the service in question as a web service (http://www.mysite.com/myservice.cfc?wsdl) and this was causing a HTTP 500 Internal server error. I looked at the Jrun log

RE: cfscript question

2004-05-07 Thread Nathan Mische
Yes, the variables are in the variables scope. While it is not necessary to use the var statement, you probably want to for such things as loop counters and other local variables. http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/udfs12.htm

Oracle, CLOBs and the Oracle Thin Driver

2004-03-19 Thread Nathan Mische
Does anyone know if it is possible to work with CLOBs using Oracle's Thin Driver? It is my understanding that to work with CLOBs in Oracle you must use bind parameters. However if I attempt to update a CLOB field using cfqueryparam with a cfsqltype of CF_SQL_CLOB, the update does not work. The

RE: CF Portal...

2004-02-19 Thread Nathan Mische
You may want to look into FarCry. http://farcry.daemon.com.au Also, Macromedia's Spectra has gone open-source. http://spectrasource.macromedia.com/active/ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Spell Check custom tag needed

2004-02-04 Thread Nathan Mische
Darron Schall has an article in the latest CFDJ about using the Java open source spell checker Jazzy (http://sourceforge.net/projects/jazzy) with ColdFusion. You may want to check that out. --Nathan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Nathan Mische
I would also recommend using CFQUERYPARAM. cfquery name=AgentDetails datasource=020 UPDATE PropertyAgent SET PropertyAgentCompanyName = cfqueryparam value=#Form.PropertyAgentCompanyName# cfsqltype=CF_SQL_VARCHAR /, PropertyAgentFlatNumberHouseName = cfqueryparam

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Nathan Mische
I agree you should use CFQUERYPARAM, but not during debugging Interesting. I find using CFQUERYPARAM makes debugging easier as it generates very clear error messages such as: Error Executing Database Query. Invalid data 123-456-7890 for CFSQLTYPE CF_SQL_NUMERIC. [Todays Threads] [This

RE: CF Eclipse plug-in sourceforge

2004-01-29 Thread Nathan Mische
Awesome, I've been looking for an Eclipse plug-in for CFML. Thanks Rob. --Nathan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: PayflowPro and CFMX

2004-01-07 Thread Nathan Mische
You can use the Java cfx_payflowpro tag, you just have to make sure you pass in all attributes. See the VeriSign knowledge base article vs12273. http://kb.verisign.com/esupport/esupport/consumer/esupport.asp?id=vs1227 3 HTH, Nathan From: chad [mailto:[EMAIL

RE: PayflowPro and CFMX

2004-01-07 Thread Nathan Mische
occurred on line 14. I believe it is in the class there is an error, wasn't this verified by Verisign? _ From: Nathan Mische [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 1:07 PM To: CF-Talk Subject: RE: PayflowPro and CFMX You can use the Java cfx_payflowpro

RE: PayflowPro and CFMX

2004-01-07 Thread Nathan Mische
Description: CFXPayFlowPro Thanks for the help Chad - Original Message - From: Nathan Mische To: CF-Talk Sent: Wednesday, January 07, 2004 2:42 PM Subject: RE: PayflowPro and CFMX Hmm... I have it working on CFMX 6.1, and had it working on CFMX 6.0 before that. Which version

RE: First foray into COM - getting an error

2003-12-15 Thread Nathan Mische
Are you running CFMX. If so make sure you have the proper Java stubs for Outlook. See Macromedia TechNote 22922, Accessing Complex COM Objects in ColdFusion MX using Java Stubs, for more info. http://www.macromedia.com/support/coldfusion/ts/documents/tn18211.htm --Nathan -Original

Server-side redirects, jsessionID and IIS

2003-09-19 Thread Nathan Mische
I'm doing a server side redirect using getPageContext().forward(). With J2EE sessions enabled I think the redirect ends up being to something like http://www.myserver.com/index.cfm;jsessionID=123456789?param1=whatever. Am I correct in this thinking? Anyway, using getPageContext().forward() with

RE: cgi.auth_password

2003-09-19 Thread Nathan Mische
I don't think it is possible. It would be a huge security risk if it were... --Nathan -Original Message- From: Suyer, Ed [PRD Non-JJ] [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 4:29 PM To: CF-Talk Subject: cgi.auth_password Is it possible to retrieve an

RE: Word Com Problems

2003-07-30 Thread Nathan Mische
I think \page is the control word for a required page break in RTF. HTH --Nathan -Original Message- From: Den Melton [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 2:47 PM To: CF-Talk Subject: Word Com Problems The solution at:

RE: DRK4 - pollster

2003-07-29 Thread Nathan Mische
Do you have authenticated access enabled on the pollster directory? I ran into a similar problem because I have integrated Windows authentication enabled on my development server and that was causing a problem with the cflogin. The cflogin structure was being populated with my credentials, needed

RE: Application Security using cflogin and cfloginuser

2003-03-21 Thread Nathan Mische
This sounds like the exact same issue I was having trying to use cflogin with integrated windows authentication on IIS 5. The issue seemed to be resolved in updater 2. --Nathan ~| Archives:

RE: CFX_PayFlowPro and CFMX

2003-03-14 Thread Nathan Mische
Ali, For CFX_PayFlowPro to work on CFMX you must pass all attributes into the tag, including PARMLIST,PROXYADDRESS,PROXYPORT,PROXYLOGON, and PROXYPASSWORD. These attributes will usually be left blank, like this: CFX_PAYFLOWPRO QUERY=RESULT HOSTADDRESS=test-payflow.verisign.com HOSTPORT=443

3 Cells Wide

2003-02-21 Thread Nathan Mische
Hey Guy, This is what I came up with: cfquery name=queryName datasource=datasourceName SELECT c.categoryName, s.subCategoryName FROM tblCategory c, tblSubCategory s WHERE c.categoryid = s.categoryid ORDER BY c.categoryName /cfquery cfset categoryCount=1 table

RE: 3 Cells Wide

2003-02-21 Thread Nathan Mische
/tr /table --Nathan -Original Message- From: Nathan Mische Sent: Friday, February 21, 2003 12:23 PM To: CF-Talk Subject: 3 Cells Wide Hey Guy, This is what I came up with: cfquery name=queryName datasource=datasourceName SELECT c.categoryName