[jboss-user] [JBoss Seam] - Re: Remoting - Callback method not being called

2008-02-01 Thread [EMAIL PROTECTED]
So you're definitely getting an XML response returned to the browser? By the way, there's no need to create a duplicate List to return, just return the query result. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125556#4125556 Reply to the post : http://w

[jboss-user] [JBoss Seam] - Re: Remoting - Callback method not being called

2008-02-01 Thread mcrandall
FYI: In my javascript, it should read: var eventId = result.getImage(); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125530#4125530 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125530 _

[jboss-user] [JBoss Seam] - Re: Remoting - Callback method not being called

2008-02-01 Thread mcrandall
This is what I'm getting back (in the debug window): abbreviated version: 3 | | | | 527c256b%3A117d13f877a%3A-7e97 | | %2Fimages%2F20080116%2Ftbrady%2F28.jpg | 527c256b%3A117d13f877a%3A-7d4f | ERROR | 2008013114095 | | | ABBREVIATED | Microsoft%20Internet%20Exp

[jboss-user] [JBoss Seam] - Re: Remoting - Callback method not being called

2008-02-01 Thread mcrandall
Try again: In my javascript, it should read: var eventId = result .getImage(); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125533#4125533 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125533 __

[jboss-user] [JBoss Seam] - Re: Remoting - Callback method not being called

2008-02-01 Thread [EMAIL PROTECTED]
You can exclude properties of the result by specifying an "exclude" string on your @WebRemote method. For example, if you didn't want to return the Applicationversion you'd write: @WebRemote(exclude = "applicationversion") | public List displayEvents() { | I'm a little bit concerned about