Re: Loading Images into GWT via MySQL

2009-03-12 Thread Itamar Ravid
#x27;s URL to your image > download HttpServlet adding a parameter for the image id. > > regards > gregor > > On Mar 12, 8:54 pm, "fatjack1...@googlemail.com" > wrote: > > Hi, > > > > I'm not too sure how to implement a HTTPServlet. Does anyone kn

Re: Loading Images into GWT via MySQL

2009-03-12 Thread Itamar Ravid
The best way, IMO, is to not use GWT-RPC, but rather implement an HttpServlet, that retrieves the data from the database and returns it with the appropriate Content-Type in response to a GET http request. Then, you simply place an image in your GWT code, with its source being the path to the servle

Re: Gilead 1.2.2

2009-03-12 Thread Itamar Ravid
d be : >- add @ServerOnly annotation on your statusName getter and setter > (Gilead will prevent it to be cloned and merged by beanlib) >- just add a null check condition in your statusName getter and > setter > > Regards > Bruno > > On 12 mar, 00:06, Itamar Ravid wrot

Re: [ANN] Gilead 1.2.2

2009-03-11 Thread Itamar Ravid
Hi Bruno - first off, thanks for all of your hard work. Your project is a real life-saver, and we're using it extensively in our project. I'd like to report a bug. I have not tested yet with gilead 1.2.2, but I'd like to report it anyway. Assume two classes: public class Status { Long id;

Re: Announcing GWT 1.6 Milestone 1

2009-02-09 Thread Itamar Ravid
Awesome! Thanks, Scott. On Mon, Feb 9, 2009 at 6:33 PM, Scott Blum wrote: > On Sun, Feb 8, 2009 at 12:11 PM, Itamar Ravid wrote: > >> The difficulty arises when using Hosted Mode. First, I have to copy a >> modified web.xml to ${project}/tomcat/webapps/ROOT. This web.xml rout

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Itamar Ravid
Hi - I've perused the WAR Design document, but I've several questions that remained unanswered. In my project, we use GWT-SL and Gilead - the former for exporting Spring beans as GWT-RPC services, and the latter for transferring Hibernate-enabled objects back and forth between the server and clien

Re: Hibernate + GWT integration options

2009-01-30 Thread Itamar Ravid
You might want to look into the 'Dynamic Proxy' or 'Stateful Server' configurations of Gilead. These modes do not impose any technical inheritance or interface implementation requirements on your POJOs. Regarding remote services, you'll want to look into GWT-SL - it allows exporting regular POJOs a