how to read xml data

2001-02-24 Thread ramesh deva
Hi i am facing with big problem. Actually One server(java) is posting data to our coldfusion server by calling our coldufusion page (test.cfm). they are posting variable info as a xmlpacket = "---xmldata---" but when we are receiving from coldfusion we are displaying "form.xmlpacket"

RE: Parsing text containing CF tags

2001-02-24 Thread Philip Arnold - ASP
I would appreciate your help on the following question. Is there a way to parse text containing CF tags without the tag being interpreted by the server? What I am trying to do is generate a query dynamically by writting it to a text file. Then read the query from the text to a variable to

Re: configuring sql server native drivers

2001-02-24 Thread Freddy
Hmmm seems strange there is no native driver available for sql server... anyway I am still having alot of trouble configuring the ole driver. I went ahead and registered all the components as I read on the allaire knowledge base and then configured the datasource as specified and I still cannot

Re: managed server recomendations

2001-02-24 Thread net_man
Check out www.atswebnet.com and there dedicated server prices. Not the cheapest, but with no Data Transfer restrictions is by far the best value. Robert - Original Message - From: "Cold Fusion" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Saturday, February 24, 2001 12:56 AM

Re: Threaded Discussion App with Tree view...??

2001-02-24 Thread Roger B .
On Thu, 22 Feb 2001 07:38:25 -0800, [EMAIL PROTECTED] (paul smith) wrote: In addition, there was no preview option that I could see. Is Allaire Forums the only CF app with a preview? Paul, Nope... the CF-based forum app that powers one of my projects has been doing previews for a couple years

Re: advanced list

2001-02-24 Thread John Allred
Douglas, If I understand the intent of your original question, I would recommend the list that ACFUG (Atlanta CFUG) hosts: http://www.acfug.org/ -- Very little chit chat and the questions are generally more advanced. Regards, --John [EMAIL PROTECTED] wrote: My apologies to the list and for

Re: Threaded Discussion App with Tree view...??

2001-02-24 Thread paul smith
Roger: Any schedule for release? Cost? Demo? best, paul At 09:37 AM 2/24/01 -0600, you wrote: On Thu, 22 Feb 2001 07:38:25 -0800, [EMAIL PROTECTED] (paul smith) wrote: In addition, there was no preview option that I could see. Is Allaire Forums the only CF app with a preview? Paul,

Re: OT: SQL Replication

2001-02-24 Thread Brian Panulla
Jim, Do both sites run ColdFusion? One possibility that I've been kicking around is using CF's WDDX to exchange data between servers via CFHTTP calls I think this model would work: 1) "Extranet" server receives new listing from local LAN users. 2) Listing is inserted into local LAN

Re: OT: SQL Replication

2001-02-24 Thread Dick Applebaum
Brian/Jim This approach *does* work. And, you don't need CF at the remote (web) site... it can be any system/language which supports WDDX. ASP/VBS, for example. I have implemented a similar approach when migrating a site from one App server/SQL Server Combo to a different App server/SQL

RE: cf_nesting

2001-02-24 Thread Hal Helms
Jason, you can get it from my site at www.halhelms.com. Hal Helms == See ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training == -Original Message- From: Jason Egan [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 24, 2001 1:45 AM To: CF-Talk

Purchase Order Tracking System

2001-02-24 Thread eisensmi
I am looking for an extremely simple Purchase Order Tracking system which is web based. Anyone have any recommendations? Thanks. /spe ~~ Structure your ColdFusion code with Fusebox. Get the official book at

cfx_execute

2001-02-24 Thread lsellers
Another toy. :) http://www.intrafoundation.com/freeware.html ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: Purchase Order Tracking System

2001-02-24 Thread John Wilker
Sure. Pay one of us to write it for you :-) Otherwise nope sorry. J. John Wilker Web Applications Consultant Allaire Certified ColdFusion Developer Office: 909-943-8428 www.billtracker.org http://www.billtracker.org -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

How to access client's NT system/user environment vars?

2001-02-24 Thread Cruz, Joseph
Hey, all. I was just wondering if there was any way to access and output the client's NT system/user environment variables (i.e. %username% or %windir%) and have them accessible to a CF template. Any ideas would be greatly appreciated! Joe ~~

Re: How to access client's NT system/user environment vars?

2001-02-24 Thread Howie Hamlin
That would be a big security hole. The only way I know to get any kind of senstitive information from clients is by using ActiveX controls and even then the client has to download the control and trust it as well. So, basically, I think you're out of luck... Regards, Howie - Original

RE: How to access client's NT system/user environment vars?

2001-02-24 Thread John Wilker
I don't know about directory but username can be accessed in #REMOTE_USER# The only places I've used it is in intranet apps where I had to make IIS not allow anonymous, so that it would record the nt username. It actually holds the domain/username. Hope that helps J. John Wilker Web

RE: How to access client's NT system/user environment vars?

2001-02-24 Thread Cruz, Joseph
Ah. I can see now how it could be a potentially serious security risk if you could somehow get a clients' username just by calling a web page. We were actually looking at a way to automatically allow a user into our web-based applications without having them authenticate again(since we

OT : Forms Question...

2001-02-24 Thread Kevin Mansel
Is there a way that once someone enters the maximum number of elements in a form, that it automatically tabs to the next field In this example, entering a phone number by areacode, prefix and suffix only. so once the user enters the 3 digit area code, i want it to hop to the next

OT: HTML Code for Meassage has been read...

2001-02-24 Thread Erika L Walker
I'm almost afraid to send this OT question, but I really don't want to join an HTML list. I'm a member of 5 different CF lists and thats really all I want to be a member of.besides you guys are all great (and sometimes VERY funny!) So I'm hoping that someone here may have an answer to this

Re: HTML Code for Meassage has been read...

2001-02-24 Thread Thomas Muck
I haven't tried this (server is down at the moment), but you might be able to send a Disposition-Notification-To header with a CFMAILPARAM tag. Something like: CFMAILPARAM NAME="Disposition-Notification-To" VALUE="[EMAIL PROTECTED]" tom www.basic-ultradev.com -

RE: OT : Forms Question...

2001-02-24 Thread James McCullough
Kevin this will do it. form name="form1" Areainput name="areacode" size="3" type="text" onkeyup="javascript:if(this.value.length==3) document.form1.prefix.focus();"br Prefixinput name="prefix" type="text" /form -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent:

RE: OT : Forms Question...

2001-02-24 Thread James McCullough
Kevin, you don't need the javascript: form name="form1" Areainput name="areacode" size="3" type="text" onkeyup="if(this.value.length==3)document.form1.prefix.focus();"br Prefixinput name="prefix" type="text" /form -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent:

Re: Forms Question...

2001-02-24 Thread Bryan LaPlante
Double check my logic, my editor is not up and I am typing off the top of my head. function tabTo(nextField) { if (event.srcElement.value.length == 3) eval("document.foo." + nextField + ".focus()"); } form name="foo" input name="areacode" type="text" size="3"

RE: How to access client's NT system/user environment vars?

2001-02-24 Thread Ken Wilson
Will CGI.REMOTE_USER not give you enough to work with? I use that to make it a transparent process for IE users. Netscape users muddy the water a bit but can still be dealt with if required. So what's your setup like? NT/IIS? What browsers? Ken We were actually looking at a way to

RE: How to access client's NT system/user environment vars?

2001-02-24 Thread Cruz, Joseph
CGI.REMOTE_USER doesn't seem to be available unless the user authenticates against the web server (in our case, IIS on Win2K). What we were thinking of doing was bypassing that step entirely since they authenticate to the workstation to begin with (which is where the idea of using the NT

Re: Forms Question...

2001-02-24 Thread Mr Bean
If your using an Access database and have a custom definition such as telephone number once they hit the end it will jump to the next field or am I missing something here? "Kevin Mansel" [EMAIL PROTECTED] wrote in message

remove

2001-02-24 Thread Cheryl Wilson
--=_98307206218467=_ Content-Type: text/plain; charset="us-ascii" What's the correct syntax to get removed? http://www.vertronics.com Designing web sites and building Business on the net! - ICQ: 97340665 AIM: vertronics - (770)

RE: How to access client's NT system/user environment vars?

2001-02-24 Thread Ken Wilson
Sorry, I wasn't paying close enough attention to what you said. The way I handle it is transparent to the user but does require having authentication turned at IIS. Ken CGI.REMOTE_USER doesn't seem to be available unless the user authenticates against the web server (in our case, IIS on

Re: How to access client's NT system/user environment vars?

2001-02-24 Thread Howie Hamlin
Maybe this would help? http://www.intrafoundation.com/intranethostingtoolkit.html Regards, Howie - Original Message - From: "Cruz, Joseph" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Saturday, February 24, 2001 4:38 PM Subject: RE: How to access client's NT system/user

OT: Traveling between networks...

2001-02-24 Thread Bill Davidson
I posted this in response to someone else's email on another mailing list (completely unrelated). I thought, some of you might benefit from it... I bounce back and forth between the office network, and the home network a lot. I, unfortutantely, am still running WIn98 on my VAIO, so it is a bit

duplicate() or readonly lock?

2001-02-24 Thread Rick Lamb
I have some confusion on reading shared memory variables. I've been using a read locks to read shared memory variables to a request scope for using through the site, but I've recently heard of people using the duplicate() function to read shared memory variables. Can anybody help me why I should

RE: duplicate() or readonly lock?

2001-02-24 Thread Hal Helms
Rick, Duplicate() is a function that does just what it sounds like--and is especially useful when dealing with deeply nested complex vars like structures, but it doesn't have anything to do with the shared scope issue. You might be thinking of a technique for turning a shared scope variable into

RE: cf_nesting

2001-02-24 Thread Jason Egan
yeah, I did find it in one of your examples thank you! Jason Egan -Original Message- From: Hal Helms [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 24, 2001 11:49 AM To: CF-Talk Subject: RE: cf_nesting Jason, you can get it from my site at www.halhelms.com. Hal Helms == See

Application generating HTML?

2001-02-24 Thread Jeff Davis
Maybe this is a silly questions but here goes: Can you place html elements such as layer and content information in the application.cfm file and it displayed on the page that is linked too? For example, can I place my header layer and navigation layer in the application file so they will

Re: Application generating HTML?

2001-02-24 Thread Howie Hamlin
You can definitely do that but I think you'll find that it is considered a bad practice. Regards, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server Get your free copy