Re: This actually works!

2012-01-20 Thread Raymond Camden
I don't think that is accurate. Yes you can use array/struct functions on them, but they are not array/structs. Consider this example: cfxml variable=test obs users name type=rootRay/name nameFoo/name /users /obs /cfxml cfdump var=#test# cfset node = test.obs.users.name[2]

Re: This actually works!

2012-01-20 Thread Andrew Scott
Raymond, From what I have experienced what is returned from XMLParse is indeed an associate array, an array of structs, and your example doesn't use XMLParse. So Justin is actually correct. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: This actually works!

2012-01-20 Thread Raymond Camden
I repeated my test using xmlParse and got the same results. cfsavecontent variable=test obs users name type=rootRay/name nameFoo/name /users /obs /cfsavecontent cfset test2 = xmlParse(test) cfdump var=#test2# cfset node = test2.obs.users.name[2]

Re: This actually works!

2012-01-20 Thread Andrew Scott
Cool, well you maybe right. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Fri, Jan 20, 2012 at 11:18 PM, Raymond Camden raymondcam...@gmail.comwrote: I repeated my test using xmlParse and got the same results.

RE: ridiculously cheap CFML conference next month

2012-01-20 Thread Roger Austin
andy matthews li...@commadelimited.com wrote: But will NCDevCon be taking place this year? I've heard different stories. I'm not the official spokesperson, but I doubt any decision has been made one way or another. We are not that organized. (Don't tell Dan or Jim I said that.) A big

Re: ridiculously cheap CFML conference next month

2012-01-20 Thread Casey Dougall - Uber Website Solutions
On Thu, Jan 19, 2012 at 10:51 AM, Jason Blum jason.b...@gmail.com wrote: I know http://OpenCFSummit.org has been mentioned a few times on this list. I just wanted to share that the schedule is up and registrations are pouring in: http://opencfsummit.org/index.cfm/schedule/ Also wanted to

RE: ridiculously cheap CFML conference next month

2012-01-20 Thread andy matthews
Yeah, I went the first year when it was CFinNC and it was fantastic. andy -Original Message- From: Justin Scott [mailto:leviat...@darktech.org] Sent: Thursday, January 19, 2012 11:37 PM To: cf-talk Subject: Re: ridiculously cheap CFML conference next month But will NCDevCon be

Re: This actually works!

2012-01-20 Thread Jochem van Dieten
On Fri, Jan 20, 2012 at 6:03 AM, Justin Scott wrote: When you use XMLParse(), the resulting variable is a set of arrays and structures, so it's not just a lot like working with them, you actually are, What does that even mean in a typeless language? The way I always explain it when doing CF

(ot) SEO

2012-01-20 Thread Dave Hatz
Sorry about the OT here, but I know there are some really good SEO people that are on this list. I have a CFM page that processes some information, then redirects to another CFM page. I have a client that is telling me that my redirect inside my cfm page is not going to work for SEO. I have

CF9 .NET Integration

2012-01-20 Thread Rob Parkhill
Good Morning, I'm having an issue getting the .NET integration working with CF 9.01. I've downloaded and replaced the .NET integration stuff, to make sure that that is all good, but now it won't reference any class inside the assembly. NOTE: This is my first time with .NET integration...

RE: (ot) SEO

2012-01-20 Thread Jacob
You may want to look into this. cfheader statuscode=301 statustext=Moved permanently cfheader name=Location value=http://www.domain.com/page.cfm; If you are doing redirects, you want to use 301 to be search engine friendly. -Original Message- From: Dave Hatz

Re: CF9 .NET Integration

2012-01-20 Thread Scott Stewart
It sounds like you've run into an issue that I ran into when I upgraded to 9.0.1 See if this blog entry helps: http://www.sstwebworks.com/index.cfm?mode=archivemonth=7year=2011 Hope this helps On Fri, Jan 20, 2012 at 10:15 AM, Rob Parkhill robert.parkh...@gmail.comwrote: Good Morning,

Re: (ot) SEO

2012-01-20 Thread Steve 'Cutter' Blades
The bigger question is, what is it you are doing in the interim process, and is a redirect truly necessary? If this is a logging process, why aren't you just logging in your onRequestEnd? By doing the 301, the Search Engines are going to index and catalog the page being directed to. This

Re: CF9 .NET Integration

2012-01-20 Thread Rob Parkhill
Scott, Thanks, but I had that issue and fixed it. It can open the assembly, but it never finds the class inside of it. I'm not sure if it is a problem with the source dll, or if it has to do with name spaces. Cheers, Rob On Jan 20, 2012 10:40 AM, Scott Stewart webmas...@sstwebworks.com

Re: CF9 .NET Integration

2012-01-20 Thread Scott Stewart
After you instantiate the assembly, dump it. This will show you what CF sees.. it ain't always what you think it should be. On Fri, Jan 20, 2012 at 11:10 AM, Rob Parkhill robert.parkh...@gmail.comwrote: Scott, Thanks, but I had that issue and fixed it. It can open the assembly, but it

Re: CF9 .NET Integration

2012-01-20 Thread Rob Parkhill
But it won't instantiate unless I indicate the correct class... Hence my current problem... :-) On Jan 20, 2012 11:16 AM, Scott Stewart webmas...@sstwebworks.com wrote: After you instantiate the assembly, dump it. This will show you what CF sees.. it ain't always what you think it should be.

Re: This actually works!

2012-01-20 Thread Justin Scott
I don't think that is accurate. Yes you can use array/struct functions on them, but they are not array/structs. Consider this example: I saw your post and ran the code, and you are correct, CF is representing them as an xml document rather than arrays and structs. It's been a while since I

Re: CF9 .NET Integration

2012-01-20 Thread Leigh
Is your class publically accessible? Are you using the full namespace with dot notation ie If the namspace is COM and class name is Batch use COM.Batch?  Might also check the {cf_root}\jnbridge error logs. Depending on the real error, it sometimes has more detailed error information

Re: (ot) SEO

2012-01-20 Thread Donne Bachan
Redirects are never good for SEO. 301s are your best bet but if you are doing it on every page then I would look at another solution for your interim page. Possibly use your onRequest method in application.cfc? Sent from my iPhone On 20 Jan 2012, at 15:15, Dave Hatz daveh...@hatzventures.org

Re: ridiculously cheap CFML conference next month

2012-01-20 Thread Jordan Michaels
I was able to attend OFCS last year and it was great. I *really* appreciated the single track approach. It was nice to be able to see all the available content. Even the content I thought I would only be mildly interested in ended up being fascinating. I learned a lot and I'm sure those who

Re: (ot) SEO

2012-01-20 Thread Al Musella, DPM
Maybe there is a much easier way... Instead of redirecting, just do a cfinclude of that next page to place it inside the first page... this way the correct page gets indexed. ~| Order the Adobe Coldfusion Anthology now!

Re: (ot) SEO

2012-01-20 Thread William Seiter
Hey Dave, The description of what you are trying to accomplish is very vague. If you just wanted clarification on redirects vs SEO, they are not good practice and will probably mess everything up. If you want advice on how to handle what you need to accomplish on an SEO friendly way, please

Re: (ot) SEO

2012-01-20 Thread Dave Watts
You may want to look into this. cfheader statuscode=301 statustext=Moved permanently cfheader name=Location value=http://www.domain.com/page.cfm; If you are doing redirects, you want to use 301 to be search engine friendly. You can use CFLOCATION for permanent redirects (or any other

Re: (ot) SEO

2012-01-20 Thread Dave Watts
I have index.cfm, it parses the URL for some data, updates the DB, then I use CFLOCATION to send the page to another CFM page.  Client says this will not work for his SEO stuff. Why do you go to index.cfm in the first place, though? You could easily handle this in the page you ultimately