[jboss-user] [JBoss Seam] - Re: Converter Issue

2007-12-02 Thread rvkishore
xshuang, below is the code for my CategoryConverter. | import javax.faces.component.UIComponent; | import javax.faces.context.FacesContext; | import javax.faces.convert.ConverterException; | | import org.jboss.seam.Component; | import org.jboss.seam.annotations.Name; | import org.jb

[jboss-user] [JBoss Seam] - Re: Converter Issue

2007-11-29 Thread rvkishore
It works fine after I added a categoryConverter. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109041#4109041 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4109041 ___ jbos

[jboss-user] [JBoss Seam] - Re: Converter Issue

2007-11-29 Thread rvkishore
Going through some other postings I believe that s:selectitems is going to have a "itemValue" attribute soon. Any idea when that is going to be out? In the meanwhile is there any workaround for this issue View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109009#

[jboss-user] [JBoss Seam] - Converter Issue

2007-11-29 Thread rvkishore
I have two entities, Sheet and Category. A Sheet can belong to multiple Categories. So, I have in my Sheet.java | | @ManyToMany(mappedBy = "sheets") | private List categories = new ArrayList(); | | In my create Sheet page | |

[jboss-user] [JBoss Seam] - Re: Richfaces configuration issues

2007-11-21 Thread rvkishore
that worked. I needed to remove the ajaxjsf jar file from a previous version. Thank you View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106922#4106922 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106922 __

[jboss-user] [JBoss Seam] - Richfaces/Trinidad configuration

2007-11-21 Thread rvkishore
Would anyone be so kind as to post their config files web.xml + faces-config.xml for Richfaces/Trinidad/Ajax4jsf setup. I have been trying to setup without much luck. The docs arent of much help either. I am using Jboss4.2.1/ Seam 2.0/ Facelets Thanks in advance View the original post : htt

[jboss-user] [JBoss Seam] - Re: Richfaces configuration issues

2007-11-21 Thread rvkishore
I see a booking example for icefaces, not richfaces. Is there anything that uses richfaces? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106814#4106814 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106814 __

[jboss-user] [JBoss Seam] - Richfaces configuration issues

2007-11-21 Thread rvkishore
I am trying to get Richfaces configured for my seam application. The richfaces user guide recommends a web.xml config | web-app version="2.4" | | xmlns="http://java.sun.com/xml/ns/j2ee"; | | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | | xsi:schemaLocatio

[jboss-user] [JBoss Seam] - Re: GWT Example in 2.0 CR3 doesn't work

2007-10-31 Thread rvkishore
Yeah. I checked out code from CVS and did a build and deploy. Still getting the same exception. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4100899#4100899 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4100899 __

[jboss-user] [JBoss Seam] - Re: GWT Example in 2.0 CR3 doesn't work

2007-10-29 Thread rvkishore
Filed a JIRA issue for this. http://jira.jboss.com/jira/browse/JBSEAM-2170 Does anyone have any workarounds? Thanks in advance Kishore View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4099975#4099975 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - GWT Example in 2.0 CR3 doesn't work

2007-10-26 Thread rvkishore
I compiled the GWT example in the 2.0 CR3 release with GWT 1.4 and deployed it. I get the following error on the server | | java.lang.IllegalStateException: No active event context | at org.jboss.seam.core.Manager.instance(Manager.java:248) | at org.jboss.seam.servlet.C

[jboss-user] [JBoss Seam] - GWT Integration

2007-10-25 Thread rvkishore
I am trying to get a GWT widget to talk to my Seam application. I followed the example in the seam reference doc. But it looks like the Seam ServiceImpl component is not getting called at all. I have a question specific to the setting of the service. In the example code | private MyServiceAsy

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Jboss remote access issues

2007-08-29 Thread rvkishore
I am tryiing to deploy my application to Jboss 4.2.1 on a linux box. I am starting the server with run.sh -b xx.xxx.xx.xx to bind to the external facing ip address. However when I try to access the site from my browser all I get is a blank page. I checked my etc/hosts file and it has the fo

[jboss-user] [JBoss Seam] - DataModel edit issue

2007-08-28 Thread rvkishore
I am using the DataModel & DataModelSelection annotations to manage a datalist. The add and delete are working fine but the edit has a problem. The new values are not being submitted from the edit page into the Managers edit action. Below is my code | | @Stateful | @Scope(SESSION) |

[jboss-user] [JBoss Seam] - Re: seam webservice conversation id issues

2007-08-10 Thread rvkishore
OK, the exception goes away when I add an aribitrary conversation Id to the SOAP headers. But it seems kind of counter intuitive to have a conversation id in the soap request even for the login service. Isn;t the conversation supposed to be generated and managed by seam? Or am I missing the poin

[jboss-user] [JBoss Seam] - seam webservice conversation id issues

2007-08-10 Thread rvkishore
I am trying to expose parts of my seam application as a web service. I am starting off with a simple login service. I am following the recommended pattern of using a SLSB as a facade and exposing that as a webservice. SLSB | | @Stateless | @WebService(name = "DtlService", serviceName =

[jboss-user] [JBoss Seam] - Re: Issues with AS 4.0.5 / Seam 2.0 Beta1

2007-08-05 Thread rvkishore
here is the solution that worked for me Add the following to the web.xml in the jbossweb-tomcat55.sar/conf directory | | com.sun.faces.config.ConfigureListener | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070

[jboss-user] [JBoss Seam] - Issues with AS 4.0.5 / Seam 2.0 Beta1

2007-08-03 Thread rvkishore
I am trying to port my Seam 2.0 application which runs fine on AS 4.2.1 to AS 4.0.5. I followed the instructions in the docs to replace the myfaces jar files with the jsf-* files and modified the web.xml file. I am getting the following exception when I deploy my app's ear file | 8-03 21:3

[jboss-user] [JBoss Portal] - Re: header.jsp - How To?

2007-07-20 Thread rvkishore
To remove the window state buttons you can set the windowrenderer to emptyrenderer. | | MyPortletWindow | | MyPortletInstance | | center | 1 |

[jboss-user] [JBoss Portal] - Re: header.jsp - How To?

2007-07-20 Thread rvkishore
I put the exploded war file for my app in the jboss-portal.sar directory and changed the jboss-service.xml to reflect the changes. Still no luck. The server does not pick up the my header.jsp and tabs.jsp. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40663

[jboss-user] [JBoss Portal] - Re: header.jsp - How To?

2007-07-19 Thread rvkishore
Env : JBoss portal 2.6 / AS 4.2 I am running into the exact same issue. The documentation on what is a very common customization is really sparse. Would highly appreciate it if any of the JBoss folks throw some light on this. Thanks in advance View the original post : http://www.jboss

[jboss-user] [JBoss Portal] - http://www.jboss.org/portal/dtd/portal-object_2_6.dtd Not fo

2007-07-18 Thread rvkishore
I get a 404 for http://www.jboss.org/portal/dtd/portal-object_2_6.dtd. Anyone knows where the new location is? Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065582#4065582 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBoss Portal] - installation question

2007-07-17 Thread rvkishore
I installed Jboss portal 2.6 GA and configured it to work with a MySQL database. I get the following error at startup time === 21:47:39,455 ERROR [URLDeploymentScanner] Incomplete Deployment listing: --- MBeans waiting for other MBeans --- ObjectName: portal:c