Nested structs in SOAP web service request

2007-06-12 Thread Conan Saunders
I'm trying to interact with the ebay API through SOAP, and I'm not able to run any methods that contain nested arguments. For example, this method call works fine because the arguments, "version" and "title", are not nested: ws = CreateObject("webservice", "urltosomewebservice/webservice.wsdl"); t

RE: Okay, bear with me, I'm not even sure what I'm asking...

2004-03-25 Thread Conan Saunders
John's suggestion is good, and you might also see if using a BASE HREF tag might help you. http://coveryourasp.com/BaseHref.asp Conan At 02:54 PM 3/25/2004, you wrote: >I think the biggest problem is that you're handling 2 different kind of >URLs.  1 is a straight domains "www.client1.com" and

isDefined vs structKeyExists

2004-03-24 Thread Conan Saunders
In CFMX 6.1, are these two functions completely equivalent, or is there a difference? isDefined("APPLICATION.MyVar") structKeyExists(APPLICATION, "MyVar") Thanks, Conan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: web application vs. web site was Re: Securing CF Apps.

2004-03-23 Thread Conan Saunders
BTW, saying that a user being able to bookmark something is valid for a web "site" but not for an application is not true either. There are plenty of applications, whether desktop or HTTP based, that can benefit from bookmarking. Quick made up example: say I have a human resources application.

RE: customizing JRun servlet 500 error page

2004-03-23 Thread Conan Saunders
ready, but ANYTIME you are using IE and get a 500 >Internal Server Error, you should check out the page with another browser. >IE often HIDES error messages that are the true cause of a 500 Internal >Server Error message. >   -Original Message- >   From: Conan Saunders [mailto:[

RE: web application vs. web site was Re: Securing CF Apps.

2004-03-23 Thread Conan Saunders
What if you take a standalone desktop application and completely port its functionality to something like Cold Fusion or .NET, the only difference being that it can be accessed from anywhere in the world by firing up a browser and typing a URL, rather than clicking an .EXE on the local machine.

web application vs. web site was Re: Securing CF Apps.

2004-03-23 Thread Conan Saunders
There are two separate issues here, let's not mix them: 1) What is a web "application" vs. what is a web "site" 2) Once you've settled on your definitions for the above two, you can have your security discussion without arguments in which both people are "right" because they are talking about tw

RE: Securing CF Apps.

2004-03-23 Thread Conan Saunders
At 01:30 PM 3/23/2004, you wrote: > >> 2. By using plain text variable names your going to give the potential > >> intruder a decent insight into your application design, and this > >> will give > >> them the ability to make educated guesses as to your other circuit > >> names. > > >So? > >So by un

second try: customizing JRun servlet 500 error page

2004-03-23 Thread Conan Saunders
Sent this yesterday and got no responses. Trying again today, maybe with all the security talk somebody will have an answer. I'd like to be able to completely (or as completely as possible) conceal what technology is running my web application (with extensionless URLs, renamed and/or encrypted

customizing JRun servlet 500 error page

2004-03-22 Thread Conan Saunders
Under CFMX 6.1 on IIS6, if I request a URL with a query string containing an invalid URL character encoding, I get a 500 Internal Server Error response back from JRun. For example, requesting this: >page.cfm?test=%zz produces the response: >JRun Servlet Error500 null > I know that %zz is an i

RE: YALT: when to lock in CFMX

2004-03-10 Thread Conan Saunders
I sent this a couple hours ago and haven't seen it show up on the list yet, so I'm sending again. Thanks Barney, Peter, and Reed for your responses. After reading Barney's article, I still have one more question. When you have a race condition on unlocked shared memory variables, what are

YALT: when to lock in CFMX

2004-03-10 Thread Conan Saunders
I apologize in advance if this has already been hashed and rehashed... In the Web Application Construction Kit for CFMX, it says: "Previous versions of CF required you to use locks far more frequently, even when there wasn't a race condition issue at hand. Basically, you needed to lock every li

Suggestions for Windows version control

2004-03-08 Thread Conan Saunders
I want to get a version control system running, preferably something easily integrated with CFStudio/HomeSite+ (or a similar code-centric editor). I don't need anything fancy or complex, I just want something that will maintain a commented change history of my application, allow me to diff a fi

Re: serving non-CFM files w/ Cold Fusion

2004-02-10 Thread Conan Saunders
At 11:08 PM 2/10/2004, you wrote: >I just did a quick test with CF5/IIS5 and this approach appears to work for >me.  I created a directory on an existing web site and then in IIS an >application with the extension * mapped to C:\CFusion\bin\iscf.dll.  If I >request an existing file in the directory

RE: serving non-CFM files w/ Cold Fusion

2004-02-10 Thread Conan Saunders
t; > - > Cameron Childress >     Sumo Consulting Inc > --- > land:  858.509.3098 > cell:  678.637.5072 > aim:   cameroncf > email: [EMAIL PROTECTED] > > -Original Message- >   

RE: serving non-CFM files w/ Cold Fusion

2004-02-10 Thread Conan Saunders
I'm not concerned about load--regular graphics and resource files that don't need protection would come from a non-protected directory that wouldn't involve any CF processing. Say you have a directory "/admin" on a site. That directory contains CFM pages for maintaining your web application, as

serving non-CFM files w/ Cold Fusion

2004-02-10 Thread Conan Saunders
Say I have a directory containing these three files: page.cfm info.txt image.gif I want everything in this directory to be protected by my Cold Fusion login for this application. For example if SESSION.IsLoggedIn is not defined, bump to the login screen. I want the files to be located directly

multicharacter regular expression help

2001-08-19 Thread Conan Saunders
es as single characters. I need to be able to treat the two-letter codes as a single block. Is this possible with reg expressions, or I should I just loop over the string and do it myself? Thanks, Conan Saunders ~~ Structure your ColdFusion

ANSWERED! RE: UPS and XML integration, anybody have a working solution?

2001-08-15 Thread Conan Saunders
ct, I was sending my DOMDocument object. That's what was wrong. I should have been sending the XML text directly, without loading it into a DOMDocument: Doh... thank you very much! Conan Saunders At 06:20 PM 8/15/2001 -0400, you wrote: >-Original Message- >From: Lomvard

RE: UPS and XML integration, anybody have a working solution?

2001-08-15 Thread Conan Saunders
//www.ups.com/ups.app/xml/Track) I've tried my code using the new test/integration URL's, and I get the same (non-working) responses back that I get from the production URL's. Is there nobody that has gotten CF to integrate with UPS? Conan Saunders At 05:24 PM 8/15/2001 -0400

UPS and XML integration, anybody have a working solution?

2001-08-15 Thread Conan Saunders
tag here: http://devex.allaire.com/developer/gallery/info.cfm?ID=DE7F6772-4A73-11D5-83 F000508B94F85A&method=Full Nothing I have tried has worked. I have contacted UPS technical support and they were no help at all. Thank you very much for any help. I can forward a PDF of t