Re: Struts app on bar code scanner

2006-05-24 Thread Gareth Evans
It looks like your getters is returning this.barcode and your setter is setting this.myValue I'm guessing this could be the problem. Gareth marcus biel (innoWake gmbh) wrote: Hi, I got a little struts app that works fine on my or any other pc - But it's supposed to be running on a little bar

Re: Struts app on bar code scanner

2006-05-24 Thread Antonio Petrelli
marcus biel (innoWake gmbh) ha scritto: public String getMyValue() { System.out.println("Get MyValue: "+ myValue); // returns NULL return this.barcode; } public void setMyValue ( String myValue) { System.out.println("My MyValue: "+ myValue); // Returns myVal