Re: [ACFUG Discuss] Coldfusion server Host

2008-06-11 Thread Steven Ross
if you happen to have a CF license you could install it on your own (non windows) virtual host at http://slicehost.com . Great pricing at $20 a month for the most basic server (but, i doubt the memory footprint of CF would allow it to run at the $20 a month price point). -Steven On Tue, Jun 10,

Re: [ACFUG Discuss] XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Derrick Peavy
Steven thank you for the reply. Mixed results. One worked, one did not, haven't tried accessing the multiple children (yet). Accessing the struct item (link/href) works fine. In fact, I gave that a whirl later in the night after sending this message ... for (i = 1; i LTE

RE: [ACFUG Discuss] Coldfusion server Host

2008-06-11 Thread Dusty Hale
I use hostmysite.com. They're probably a little more cost but service is really good. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Forrest C. Gilmore Sent: 06/10/2008 11:34 PM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] Coldfusion server

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Dusty Hale
I found a work around for now by creating a copy of the live database on my VPS server at HostMySite. Not a great way to develop but will get me by for now. I think you're right the best thing would be to just install express. I just wonder how I ended up installing the eval in the first place

Re: [ACFUG Discuss] XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Steven Ross
remove the period... ie: selectedElements[i][fn:image].XmlText; -Steven On Wed, Jun 11, 2008 at 9:20 AM, Derrick Peavy [EMAIL PROTECTED] wrote: Steven thank you for the reply. Mixed results. One worked, one did not, haven't tried accessing the multiple children (yet). Accessing the struct

RE: [ACFUG Discuss] Coldfusion server Host

2008-06-11 Thread Charlie Arehart
I know you've gotten various recommendations, but I'd also like to point out that this is just one of the many kinds of questions I answer in my list of over 700 tools and resources for CFers. I have nearly 100 categories, including: ColdFusion Hosting Alternatives

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Charlie Arehart
Well, if you install Express on the same machine that had the eval, the new Express edition could read the SQL Server files (MDF, LDF) that were created there. No need to import/export. You'd just create the DB new in Express but point it at the existing files. I'm pretty sure that would work.

RE: [ACFUG Discuss] XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Charlie Arehart
Derrick, besides Steven's useful replies to you so far, since you said you were green with CF/XML processing, I can't recommend highly enough that you spend 30 minutes reading this wonderful guide: Utilizing XML and XSLT in ColdFusion MX

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Dusty Hale
Charlie do you happen to know the default location of the data files? I can't seem to locate the file. I also search with Windows desktop search but no luck yet. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charlie Arehart Sent: 06/11/2008 11:47 AM To:

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Dusty Hale
I will definitely try that and let you know if it works. It will likely be a day or two before I get around to it. Can't thank you enough for the suggestions. Dusty _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charlie Arehart Sent: 06/11/2008 11:47 AM To:

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Dusty Hale
Actually it appears that I may already have it installed because Outlook Business Manager uses it. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charlie Arehart Sent: 06/11/2008 11:47 AM To: discussion@acfug.org Subject: RE: [ACFUG Discuss] OT: problem with IIS on

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Dusty Hale
Hey disregard that I found them. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dusty Hale Sent: 06/11/2008 12:11 PM To: discussion@acfug.org Subject: RE: [ACFUG Discuss] OT: problem with IIS on XP Pro. Charlie do you happen to know the default location of the data

RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

2008-06-11 Thread Dusty Hale
SQL Studio Express doesn't seem to let me change the file names to point to the data files. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charlie Arehart Sent: 06/11/2008 11:47 AM To: discussion@acfug.org Subject: RE: [ACFUG Discuss] OT: problem with IIS on XP Pro.

Re: [ACFUG Discuss] Need example - XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Derrick Peavy
Steven, thank you. I did go through the W3School article after you sent it as well as skimming the doc that Charlie sent. I actually use that site a lot. With your help, I solved the two small problems, but the problem with duplicate children still plagues me. At this point, i am back to

RE: [ACFUG Discuss] Need example - XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Fennell, Mark P.
Is there no way to normalize (if that's the right term) the XML? Granted, you'd have to be the one generating the XML, but it would sure be nice to have rm:image1, rm:image2, etc. That would also give you the ability to have descriptions for each of the images. Barring that, and this isn't what

Re: [ACFUG Discuss] Need example - XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Derrick Peavy
Mark: Thank you! Yes, to all of that, I can do that, have done it. May resort to that. But it's not the right way and I am trying hard to learn the finer points of this. The problem is simply that I can't find an example and even thinking outside the box seems to be of no use in solving

RE: [ACFUG Discuss] Need example - XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Fennell, Mark P.
I couldn't agree with you more. I can't tell you the number of vendors who fail to grasp the concepts and importance of primary and foreign keys in databases. I think the right way is often detoured by someone doing it the wrong way upstream... Hence the old addage, if you want something done

Re: [ACFUG Discuss] Need example - XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Steven Ross
Have you tried this?arrayImport[i][4] = selectedElements[i][rm:image][i].XmlText; On Wed, Jun 11, 2008 at 4:10 PM, Derrick Peavy [EMAIL PROTECTED] wrote: Steven, thank you. I did go through the W3School article after you sent it as well as skimming the doc that Charlie sent. I actually use

Re: [ACFUG Discuss] Need example - XML Import/parse help - 3 questions about sample data

2008-06-11 Thread Steven Ross
just curious... what is the error? On Wed, Jun 11, 2008 at 5:42 PM, Steven Ross [EMAIL PROTECTED] wrote: Have you tried this?arrayImport[i][4] = selectedElements[i][rm:image][i].XmlText; On Wed, Jun 11, 2008 at 4:10 PM, Derrick Peavy [EMAIL PROTECTED] wrote: Steven, thank you. I did go

Re: [ACFUG Discuss] Coldfusion server Host

2008-06-11 Thread xman30097
Thanks a lot guys for the valuable information. Xiaojun Jiang On Wed, Jun 11, 2008 at 11:44 AM, Charlie Arehart [EMAIL PROTECTED] wrote: I know you've gotten various recommendations, but I'd also like to point out that this is just one of the many kinds of questions I answer in my list of