Re: Connecting GWT with XML or MYSQL... HELP!

2009-07-28 Thread Sean
I connect to a MYSQL DB on my server using GWT's RPC's. In the interface's Impl method on the server side is where I connect to the DB, execute the queries and then return the results. Works great. Another option for you to look at. On Jul 28, 1:41 am, Kamal Chandana Mettananda lka...@gmail.com

Connecting GWT with XML or MYSQL... HELP!

2009-07-27 Thread sam
I am trying to create a GWT Google Map Application, in which I collect the markers in form of (lat, long) and store in XML or MYSQL. After collection, I read of the data and print out the points. Do you guys know if I can connect MYSQL with GWT? Or, How do I connect and store data in XML from

Re: Connecting GWT with XML or MYSQL... HELP!

2009-07-27 Thread Norman Maurer
You need todo the bindings on the serverside (via RPC/JSON etc). Just read the docs Bye, Norman 2009/7/28 sam sabir...@gmail.com: I am trying to create a GWT Google Map Application, in which I collect the markers in form of (lat, long) and store in XML or MYSQL. After collection, I read of

Re: Connecting GWT with XML or MYSQL... HELP!

2009-07-27 Thread Kamal Chandana Mettananda
You can use a Servlet in server side to store/retrieve data using a Database (MySQL) or an XML file. GWT can use that Servlet to communicate. --- Kamal Mettananda http://lkamal.blogspot.com On Tue, Jul 28, 2009 at 10:58 AM, Norman Maurer nor...@apache.org