[JBoss-user] [EJB 3.0] - Re: Entity Beans in 3.0 not persisting property changes

2006-05-16 Thread raygeeknyc
Sure enough! Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3943098#3943098 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3943098 --- Using Tomcat but need t

[JBoss-user] [EJB 3.0] - Re: Entity Beans in 3.0 not persisting property changes

2006-05-09 Thread raygeeknyc
anonymous wrote : Remember that you must have a running db transaction though. Is this typically done through a wrapper method with the appropirate transaction attributes in such a case? I tried accessing the EntityManager's getTransaction() in my code and it [the call to getTransaction()] thre

[JBoss-user] [EJB 3.0] - Re: Entity Beans in 3.0 not persisting property changes

2006-05-08 Thread raygeeknyc
Thanks, I've seen that but based on my experience with other Persistence frameworks I expected the bean to be kept in sync with the database once it was persisted. It seems that in EJB3.0 obtaining a bean from the database (via find) is not the same as introducing a bean to the database (via me

[JBoss-user] [EJB 3.0] - Entity Beans in 3.0 not persisting property changes

2006-05-06 Thread raygeeknyc
I have an entity bean that I am deploying in CR2, I am finding that the beans I instantiate via the EntityManager (ie a query returns them) are kept in sync with the database but when I create new instances outside of the persistence context and then use the Entity Manager persist (or merge) met

[JBoss-user] [JBossWS] - Re: Complex types in WS4EE.

2005-08-08 Thread raygeeknyc
Never mind :-( Sometimes a URL is exactly that, just code a URL to a deployment of the ws4ee-deployment.xml file or whatever it is deployed as :-) If anyone else wants a complete example of CustomTypes using DII let me know and I'll put it up on the Wiki View the original post : http://www.j

[JBoss-user] [JBossWS] - Re: Complex types in WS4EE.

2005-08-06 Thread raygeeknyc
I realized after posting that I wasn't very clear on what my roadblock is, sorry I have this working to the point where I can run an application client and get an exception that there are no deserializers for my Custom Type. I have a ws4ee-deployment.xml file and believe that I need to use the

[JBoss-user] [JBossWS] - Re: Complex types in WS4EE.

2005-08-06 Thread raygeeknyc
Does anyone have a working example of using a DII client to access a web service with custom types? I am almost there but am not having any luck specifying the correct parameter values for the method described in the Wiki which takes the additional parameters to locate the type mappings and the

[JBoss-user] [Installation, Configuration & Deployment] - Error page for mod_jk installtation

2005-08-06 Thread raygeeknyc
Hi I have an Apache 2 --> JBoss 4.0.2 server using mod_jk2. When jboss is down, a redirect brings up an error page with a status code of 200. I would like to trap this with (the equivalent of, or) an Apache ErrorDocument. I can't figure out where this behavior (the Status code, presumably g

[JBoss-user] [JBossWS] - Re: could not find deserializer for type

2005-08-01 Thread raygeeknyc
"[EMAIL PROTECTED]" wrote : You could read the wiki on DII clients. | | http://wiki.jboss.org/wiki/Wiki.jsp?page=WSClientDII Thomas I am struggling with this same issue; I think that full source of the classes that are excerpted in the Wiki page would go a long way to helping. (to provide

[JBoss-user] [Installation & Configuration] - Re: JBoss remote debugging under MacOS X

2005-05-02 Thread raygeeknyc
OK, if you just use the debug parameters specified in the releases run.bat sans suspend=y it works fine :-) But I also realized that telneting to the port first ties it up, so don't do this and then try a debug session without restarting JBoss View the original post : http://www.jboss.org/inde

[JBoss-user] [Installation & Configuration] - Re: JBoss remote debugging in 4.0.1sp1

2005-05-02 Thread raygeeknyc
I have moved the configuration from MacOSX to Windows 2000 and am having the same problem, while the server is coming up I can telnet to localhost DEBUG_PORT and there is something listening at the port. After the catalina startup completes and my .war files are deployed, if I try to connect to

[JBoss-user] [Installation & Configuration] - JBoss remote debugging under MacOS X

2005-05-01 Thread raygeeknyc
Hi I have JBoss 4.0.1sp1 running on MacOSX 10.3. I have added the JAVA_OPTS for remote debugging | # | DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" | JAVA_OPTS="${DEBUG_OPTS} ${JAVA_OPTS}" | # | export JAVA_OPTS | # | the java opts show up i

[JBoss-user] [Installation & Configuration] - JBoss remote debugging under MacOS X

2005-05-01 Thread raygeeknyc
Hi I have JBoss 4.0.1sp1 running on MacOSX 10.3. I have added the JAVA_OPTS for remote debugging | # | DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" | JAVA_OPTS="${DEBUG_OPTS} ${JAVA_OPTS}" | # | export JAVA_OPTS | # | the java opts show up i