I am referring to this article
http://code.google.com/apis/maps/articles/phpsqlsearch.html
I want to build a
java(servlet/jsp) application using above
functionality. I have google on JAXP API for generating a xml
documnet.
So my question is as in the above php script we are out put the xml
documnet ($dom->saveXML() ) so instead what should i have to do in a
servlet.?
My opinion is create a model java class(CreateDomXml) which creates
the xml document and call it in the servelt class and out put the
result in the serlet as,
CreateDomXml cc=new CreateDomXml();
out.println(call a method which return the xml dom));
is it correct?
Also how to call my servelt as in the php file where it calls like,
var searchUrl = 'phpsqlsearch_genxml.php?lat=' + center.lat() +
'&lng=' + center.lng() + '&radius=' + radius;
in order to call this method GDownloadUrl(searchUrl, function(data) {}
Im really looking forward for an answer or any resources. Thank you.
Best Regards,
Harshana.