Re: Working with GWT 2.3 and MyBatis

2011-07-08 Thread Fabricio Pizzichillo
Hello. The problem is a missing XML file where the configuration database, and so gives an error of IO. bye Fabricio 2011/6/28 Geraldo Lopes geraldo...@gmail.com Gwt is persistent agnostic. It looks like your client code is referencing server code. When you compile the client code it gets

Working with GWT 2.3 and MyBatis

2011-06-28 Thread peter faulk
I am new to using GWT, and I am trying to get some simple persistence going using MyBatis. Under the server folder/directory, I have a connection factory source file that simply reads from a configuration.xml in order to create a MyBatis SqlSessionFactory object. In my project .gwt.xml, I path

Re: Working with GWT 2.3 and MyBatis

2011-06-28 Thread Geraldo Lopes
Gwt is persistent agnostic. It looks like your client code is referencing server code. When you compile the client code it gets translated to javascript, and run in the browser, and because of this there are restrictions to which code can be translated.