Re: [cgiapp] Returning XML output for AJAX

2007-02-01 Thread Nathan L. Walls
Bruce; I've had good luck using XML::Writer and XML::Writer::String for outputting XML consistently. Cheers, Nathan -- nathan l. walls [EMAIL PROTECTED] general: http://ismedia.org/ photo stream: http://flickr.com/photos/base10/ On Jan 27, 2007, at 11:07

Re: [cgiapp] Returning XML output for AJAX

2007-01-30 Thread David Kaufman
Hi Bruce, Bruce McKenzie [EMAIL PROTECTED] wrote: What I want to do is return XML (as an Ajax response) to the jQuery Interface library Autocomplete plugin [...] Of the modules on CPAN that could produce this XML structure, which would be *easiest* to use? Do I need to change the headers of

Re: [cgiapp] Returning XML output for AJAX

2007-01-29 Thread Michael Peters
Rhesa Rozendaal wrote: IMHO, that would be XML::Simple. It's a bit tricky to force XML::Simple to generate the exact same output, but it depends a lot on the context if you need it. I've normally used XML::Simple in the past, but it's not really that simple. I've just heard about the new

Re: [cgiapp] Returning XML output for AJAX

2007-01-29 Thread Rhesa Rozendaal
Michael Peters wrote: I've normally used XML::Simple in the past, but it's not really that simple. I've just heard about the new XML::Tiny that is supposed to be much smaller, use less memory and just use core modules. It might be worth checking out. I took a quick look at XML::Tiny, but as

Re: [cgiapp] Returning XML output for AJAX

2007-01-29 Thread Michael Peters
Rhesa Rozendaal wrote: Michael Peters wrote: I've normally used XML::Simple in the past, but it's not really that simple. I've just heard about the new XML::Tiny that is supposed to be much smaller, use less memory and just use core modules. It might be worth checking out. I took a

[cgiapp] Returning XML output for AJAX

2007-01-27 Thread Bruce McKenzie
OK, so I'm way behind the rest of the world when it comes to XML -- but I am using CGI::Application -- so how hard could it be to catch up? :-) What I want to do is return XML (as an Ajax response) to the jQuery Interface library Autocomplete plugin. In the plugin documentation example, data

Re: [cgiapp] Returning XML output for AJAX

2007-01-27 Thread Rhesa Rozendaal
Bruce McKenzie wrote: OK, so I'm way behind the rest of the world when it comes to XML -- but I am using CGI::Application -- so how hard could it be to catch up? :-) What I want to do is return XML (as an Ajax response) to the jQuery Interface library Autocomplete plugin. In the plugin