[cfaussie] 301 redirect in CF

2006-05-14 Thread Ryan Sabir
Heya, I have a file with this content: cfheader statuscode="301" statustext="Moved permanently"cfheader name="Location" value="http://www.newgency.com" Located at this URL: http://www.newgency.com/testmove.cfm However when I use this tool: http://web-sniffer.net/ To check my http header

[cfaussie] Re: Webservices playing with the data

2006-05-14 Thread grant
have a look at encoding on your xml. ms word produces those ghey little double quotes that are in the ISO character set and not utf-8, which i've had trouble with before. just an idea, may be something completely unrelated. G On 5/12/06, cfgroupie [EMAIL PROTECTED] wrote: Hi guys, Not sure

[cfaussie] External XML Entities with CF 7...

2006-05-14 Thread Kai Koenig \( ZeroOne \)
Hi folks, I'm just trying to break down a large XML document into several smaller pieces using !ENTITY For some reason CF 7's XML engine doesn't like the way I'm doing it: a.xml: !DOCTYPE myDocype [ !ENTITY configuration SYSTEM b.xml ] juhu configuration; /juhu b.xml: b

[cfaussie] Re: External XML Entities with CF 7...

2006-05-14 Thread Patrick Branley
Hi KaiIve noticed the same thing with DTD's it seems whatever you do, it only goes 1 level deep with the validation.if you try to do for example XHTML validation and point it to: http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtdwhich contains references to other DTD files that define the symbols

[cfaussie] CF aptitude test

2006-05-14 Thread Ryan Sabir
Hey all, On the subject of recruitement, which has been a hot topic lately, just wondering if anyone out there has a set of ColdFusion technical questions thatcould be asked of a potential employee in an interview? I'm thinking a 15 - 20 minute quiz that would test their knowledge of CF

[cfaussie] Re: External XML Entities with CF 7...

2006-05-14 Thread Kai Koenig \( ZeroOne \)
It's def. an issue with the way CF parses XML files, because this Java test code works totally fine for me and gives another indication that the way I've done it within XML should be correct. import java.io.File; import javax.xml.parsers.DocumentBuilder; import

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Mark Mandel
CF is just a syntax - I'd be more interested in application design sort of questions - Things like DB modelling, object handling (if you use OO), general use of MVC, etc. Questions like 'given problem A, how would you model it with maintenance in mind', 'if performance became a huge priority,

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Scott Thornton
Hello, If you have a copy, some of the questions out of Ben Forta's CF MX Exam guide would be good. [EMAIL PROTECTED] 15/05/2006 11:32 am Hey all, On the subject of recruitement, which has been a hot topic lately, just wondering if anyone out there has a set of ColdFusion technical

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Barry Beattie
also, http://www.brainbench.com/xml/bb/business/hiring/hireemployees.xmlthese ppl have online exams to weed out the time wasters before they get to you although I don't know if their CF exam is any newer than 6.1more info:http://tech.badpen.com/index.cfm?mode=entryentry=25 On 5/15/06, Barry

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Ryan Sabir
CF is just a syntax - I'd be more interested in application design sort of questions - That's what I'm thinking as well, which is why I think the CF certification exams might not be the best place to start. Maybe not so much a CF aptitude test, but a general technical evaluation,

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Rod Higgins
The certification exam tests a lot more then just CF syntax, if it did it would be of little value. From my experience only about 60% of the exam focused on cf syntax type questions. The rest was on evaluating code and general web 'assumed knowledge' type questions. I think the certification

[cfaussie] Re: CF aptitude test

2006-05-14 Thread Scott Barnes
Garu Menzel from ABN AMRO had some curly ones that tripped me up (mind you not very hard). I'd ask them freakout questions aswell whats the preferred route in terms of CFLOOP if you first have to re-serialze the data into either an array or structure. I mean either way if they answer it, you

[cfaussie] OT: Anyone going to the Website CMS for GOVT Conf (Canberra)?

2006-05-14 Thread Scott Barnes
Anyone hitting this tommorow? http://www.marcusevans.com/events/CFEventinfo.asp?EventID=10852 -- Regards, Scott Barnes http://www.mossyblog.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To

[cfaussie] Re: OT: Anyone going to the Website CMS for GOVT Conf (Canberra)?

2006-05-14 Thread Barry Beattie
have you asked Peter Tilbrook? he might even put you up for the night... On 5/15/06, Scott Barnes [EMAIL PROTECTED] wrote: Anyone hitting this tommorow? http://www.marcusevans.com/events/CFEventinfo.asp?EventID=10852 -- Regards, Scott Barnes http://www.mossyblog.com

[cfaussie] Re: 301 redirect in CF

2006-05-14 Thread Ben Bishop
Hey Ryan, cfheader statuscode=301 statustext=Moved permanentlycfheader name=Location value=http://www.newgency.com To check my http header information, rather than the 301 redirect I've indicated, I get told it's a 302 redirect, which is not what I want.Try capping the 'p' in 'permanently',