[JBoss-user] [EJB/JBoss] - Re: SFSB problem

2004-08-04 Thread claude.glauser
See ejb specification, chapter 7.5.6, last paragraph. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844167#3844167 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3844167 ---

[JBoss-user] [EJB/JBoss] - Re: SFSB problem

2004-08-04 Thread claude.glauser
Calls to stateful session beans are not synchronized according to the ejb specification. Scott Stark wrote in another thread: anonymous wrote : Change the stateful session interceptor to synchronize calls instead of throwing an exception or add a client interceptor that does the synchronization

[JBoss-user] [EJB/JBoss] - Re: Can a simple EJB (no app server) client start transactio

2004-08-03 Thread claude.glauser
I found the solution myself. There is a UserTransaction object registered in the jndi tree ("UserTransaction"). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844021#3844021 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[JBoss-user] [EJB/JBoss] - Re: Can a simple EJB (no app server) client start transactio

2004-08-03 Thread claude.glauser
Some more infos: In a simple ejb client, I can not call session_context.setRollbackOnly(); because a simple ejb client has no session_context. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844018#3844018 Reply to the post : http://www.jboss.org/index.html?m

[JBoss-user] [EJB/JBoss] - Can a simple EJB (no app server) client start transactions?

2004-08-03 Thread claude.glauser
Hi, we intend to call an ejb (version 2.0) from a stored procedure (java). Here in pseudocode: SQL statement 1 SQL statement 2 call to EJB session bean SQL statement 3 If SQL statement 3 fails, will all the ejb stuff (made by the session bean) roll back also? How can I demarcate transactions

[JBoss-user] [Security & JAAS/JBoss] - Re: request.getUserPrincipal returns null

2004-04-21 Thread claude.glauser
It is HttpServletRequest, not the HttpResponse, which offers this mehtod (J2EE 1.3). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831817#3831817 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831817

[JBoss-user] [JBoss.NET & SOAP] - Re: xdoclet tag reference, parameter reference ?

2004-04-17 Thread claude.glauser
I found it myself. You wil find a link on this page: http://www.jboss.org/developers/guides/jboss.net/xdoclet View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831185#3831185 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [JBoss.NET & SOAP] - xdoclet tag reference, parameter reference ?

2004-04-16 Thread claude.glauser
Hi, does anybody know a link to the documentatoin of the x-doclet tags for the JBoss.net-module and the parameter description of "web-service.xml" for JBoss.net ? Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830978#3830978 Reply to the post : http

[JBoss-user] [JBoss.NET & SOAP] - Re: WSDL error - simpleType

2004-04-16 Thread claude.glauser
I have the same problem too (mono wsdl tool). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830975#3830975 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830975 ---

[JBoss-user] [Persistence & CMP/JBoss] - Re: How can I prevent sql update statement on cmp-beans ?

2004-04-04 Thread claude.glauser
Thanks a lot for your help ! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3829100#3829100 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3829100 --- This SF.Net e

[JBoss-user] [Persistence & CMP/JBoss] - How can I prevent sql update statement on cmp-beans ?

2004-04-04 Thread claude.glauser
Hi, i looked at the issued sql statements for a jboss-ql query. There are only two statements to retreieve all beans :), but also an update statement for every bean when the function returns: Executing SQL: UPDATE documententity SET Creation_Date=?, Modification_Date=? WHERE Id=? I am not aware