Re: Visit object

2006-06-01 Thread Mário Lopes
Yes, renaming actually did work. Thank you very much for your kind help. -- Mário On 6/1/06, Andreas Bulling <[EMAIL PROTECTED]> wrote: On 01. Jun 2006 - 16:39:06, James Carman wrote: | Try renaming what you call the getter/setter. See what that does. There is | a deprecated getVisit() metho

Re: Visit object

2006-06-01 Thread Mário Lopes
This is the error reported Error at context:/WEB-INF/Home.page, line 6, column 53: Method 'public abstract com.icom.crm_feup.Visit com.icom.crm_feup.Home.getVisit()' (declared in class com.icom.crm_feup.Home) has no implementation in class com.icom.crm_feup.Home (or enhanced subclass $Home_0). I

Re: Visit object

2006-06-01 Thread Mário Lopes
On 6/1/06, Andreas Bulling <[EMAIL PROTECTED]> wrote: On 01. Jun 2006 - 17:56:58, Mário Lopes wrote: | Hi. | | I've been following Tapestry in Action to implement a Visit session | object but I was unable to make it work. Declaring a getVisit(); as | abstract and then calling it th

Visit object

2006-06-01 Thread Mário Lopes
Hi. I've been following Tapestry in Action to implement a Visit session object but I was unable to make it work. Declaring a getVisit(); as abstract and then calling it through Visit visit = (Visit) getVisit(); seems to be deprecated. What's the correct usage for Visit on T4? Thanks in advance.

Avoid template parsing

2006-05-24 Thread Mário Lopes
Is there any tag to avoid a certain block of code from being parsed on a .html? I have some javascript on that file and it complains about things it shouldn't. Regards. -- Mário - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Object persisting without invoking Persist annotation

2006-05-23 Thread Mário Lopes
Please, never mind. My dumbest mistake. Doing a if (object == null) { .. } on pageBeginRender() that prevented the method from being updated. I feel ashamed :x -- Mário On 5/23/06, Mário Lopes <[EMAIL PROTECTED]> wrote: Here's a strange one. I have a table that shows some rows f

Object persisting without invoking Persist annotation

2006-05-23 Thread Mário Lopes
Here's a strange one. I have a table that shows some rows from a table on the database. The source of the contrib:Table is not declared as persist but still I update the database, do a page refresh and it doesn't update anything. I have to manually restart the webserver to see the new entry on th

Simple tag enclosing

2006-05-23 Thread Mário Lopes
Hi, how can I do the following: );"> Thanks -- Mário - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to do..

2006-05-22 Thread Mário Lopes
Hi, I want to implement a chat. I was thinking about doing REST requests between clients and the object handling the chat. For instance, client would request a chat conversation by doing an HTTP POST http://host/ChatHandler?request=true On the servers side (Tapestry therefore), how should I do t

Re: Google Web Toolkit

2006-05-21 Thread Mário Lopes
On 5/21/06, Geoff Longman <[EMAIL PROTECTED]> wrote: I will be posting the code. Probably on Monday. Right now I'm working on Spindle 4T4 ;-) Hey.. can't wait to put my hands on that :-)! Keep up the good work! -- Mário Geoff On 5/20/06, Mário Lopes <[EMAIL PROTECT

Re: Google Web Toolkit

2006-05-20 Thread Mário Lopes
Seems really cool Geoff. Could you post the source code to take a look? -- Mário On 5/21/06, Geoff Longman <[EMAIL PROTECTED]> wrote: I has some luck with GWT last night duplicating the Tacos autocompleter. here's a movie of it... http://spindle.sourceforge.net/AutoCompleterDemo.htm Geoff

Tapestry and Web Services

2006-05-20 Thread Mário Lopes
Hi! I want to build a web based chat. The client will connect with the server through REST requests. How can I build a service/component/servlet to manage this in Tapestry? Thanks. -- Mário - To unsubscribe, e-mail: [EMAIL PRO