[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-12 Thread Zealot
I can't understand why this happens. Thomas in his DVDstore example uses the 
same approach. Did anyone tested DVDstore on last CVS build of jboss-seam.jar?

thanks

--Andrew 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912042#3912042

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912042


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-12 Thread sergejp
I have such error in registration example in jboss-seam-1.0beta1 distribution.

I build an run example under jBoss-4.0.3sp1.

But booking example works fine.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912072#3912072

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912072


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-12 Thread sergejp
sergejp wrote : I have such error in registration example in 
jboss-seam-1.0beta1 distribution.
  | 
  | Problem solved: I have typed 
http://localhost:8080/seam-registration/register.jsp; in browser to run 
example, but url must be http://localhost:8080/seam-registration/register.jsf

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912088#3912088

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912088


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-10 Thread Zealot
I've changed jboss-seam.jar to the last from CVS and my application start 
crushing after I add items to the user cart
It was working well before changing.

h:commandButton id=addSelectedAction value=add selected to cart 
action=#{productOrdering.addToCart} styleClass=button /

@Stateful
  | @Name(productOrdering)
  | @Interceptor(SeamInterceptor.class)
  | @Intercept(ALWAYS)
  | @Cache(value=NoPassivationCache.class)
  | //@Conversational(ifNotBegunOutcome=main)
  | @LoggedIn
  | public class ProductOrderingAction implements ProductOrdering, Serializable 
{
  | 
  | 
  | 
  | public String addToCart() {
  | if (products == null) {
  | log.info(products null);
  | return null;
  | }
  | for (SelectableItemSiteProduct item: products) {
  | if (item.getSelected()) {
  | item.setSelected(false);
  | cartService.addProduct(item.getItem(), new Double(1));
  | log.info(1 a);
  | }
  | }
  | return null;
  | }
  | 

cart bean

@Stateful
  | @Name(cartService)
  | @Interceptor(SeamInterceptor.class)
  | @Intercept(ALWAYS)
  | @Cache(value=NoPassivationCache.class) 
  | //@Conversational(ifNotBegunOutcome=main)
  | @Scope(SESSION)
  | @LoggedIn
  | public class CartAction implements Cart, Serializable {
  | 
  | ..
  | 
  | public void addProduct(SiteProduct product, Double quantity) {
  | log.info(??? ? ??? ??);
  | for (SelectableItemCartItem item: cart) {
  | log.info(1);
  | if 
(product.getId().equals(item.getItem().getSiteProduct().getId())) {
  | item.getItem().addQuantity(quantity);
  | log.info(2);
  | return;
  | }
  | }
  | log.info(3);
  | CartItem line = new CartItem();
  | log.info(4);
  | line.setQuantity(quantity);
  | line.setSiteProduct(product);
  | log.info(5);
  | cart.add(new SelectableItemCartItem(line));
  | log.info(6);
  | }

One component use method from another component

but after stage 6  I have exception:

17:40:36,437 INFO  [Cart] 3
  | 17:40:36,437 INFO  [Cart] 4
  | 17:40:36,437 INFO  [Cart] 5
  | 17:40:36,437 INFO  [Cart] 6
  | 17:40:36,437 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces 
Servlet threw exception
  | javax.faces.FacesException: Error calling action method of component with 
id productsFound:addSelectedAction
  | at 
org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
  | at javax.faces.component.UICommand.broadcast(UICommand.java:106)
  | at 
javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
  | at 
javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:316)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at com.web.UTF8Filter.doFilter(UTF8Filter.java:31)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 

[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-07 Thread [EMAIL PROTECTED]
OK, so this bug is caused by this change:

http://anoncvs.forge.jboss.com/viewrep/JBoss/jboss-seam/src/main/org/jboss/seam/jsf/SeamPhaseListener.java?r1=1.40r2=1.41


I'm not sure why Thomas made that change, so I don't feel confident to fix it 
right now.

Note that AFAICT, this problem only occurs in the case of a previous uncaught 
exception.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3911087#3911087

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911087


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-07 Thread Zealot
I've changed my jboss-seam.jar to the last build from CVS and user cart 
crushed on my application :-)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3911134#3911134

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911134


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-07 Thread [EMAIL PROTECTED]
This bug was actually already there in the 1.0Beta version, so this is 
unrelated.
I now have to work on today's webinar ;) I will look at this bug tomorrow.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3911149#3911149

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911149


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
same error form me!

anyone solve this problem?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910886#3910886

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910886


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread lcoetzee
Hi,

this is the error I get using the current CVS build:

  | 2005-12-06 16:16:45,689 DEBUG [org.jboss.seam.contexts.Contexts] found in 
event context: org.jboss.seam.core.manager
  | 2005-12-06 16:16:45,689 ERROR [org.jboss.seam.servlet.SeamExceptionFilter] 
uncaught exception handled by Seam: null
  | 2005-12-06 16:16:45,690 ERROR 
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/tryseam].[Faces
 Servlet]] Servlet.service() for servlet Faces Servlet threw exception
  | java.lang.RuntimeException: Uncaught Exception
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.endWebRequestAfterException(SeamExceptionFilter.java:52)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
  | at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:407)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
  | at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)
  | 

As a test I have rolled back to a previous seam-jar I built from CVS at the end 
of November (sorry can't remember the precise date). Using that version I don't 
run into this problem. (Using the current CVS built I have also noticed the 
exception when leaving my app for a while).

Strange.

Louis

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910916#3910916

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910916


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
can u email me this version of jboss-seam.jar?
thank you!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910917#3910917

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910917


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
Is it your only stack trace ? You should have more. This error is the 
consequence of another.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910924#3910924

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910924


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
Without SeamExceptionFilter we have the next stack and the application is down 
(i need to restar jboss)


15:38:57,151 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces Servlet
 threw exception
javax.faces.FacesException: Error calling action method of component with id _ta
gId2:_tagId51
at org.apache.myfaces.application.ActionListenerImpl.processAction(Actio
nListenerImpl.java:74)
at javax.faces.component.UICommand.broadcast(UICommand.java:106)
at javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:9
0)
at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1
64)
at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(Lifecycl
eImpl.java:271)
at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java
:86)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:94)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:173)
at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(Exte
nsionsFilter.java:122)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:173)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
lter.java:81)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
alve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
alve.java:178)
at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrinc
ipalValve.java:39)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
yAssociationValve.java:159)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
e.java:59)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
ava:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
ava:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
ve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
a:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:856)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
ssConnection(Http11Protocol.java:744)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
int.java:527)
at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
kerThread.java:112)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.faces.el.EvaluationException: /editDonatore.xhtml @147,59 actio
n=#{editDonatore.annulla}: javax.ejb.EJBTransactionRolledbackException: null;
CausedByException is:
javax.naming.NameNotFoundException: EntityManagerFactory not bound
at com.sun.facelets.el.LegacyMethodBinding.invoke(LegacyMethodBinding.ja
va:73)
at org.apache.myfaces.application.ActionListenerImpl.processAction(Actio
nListenerImpl.java:63)
... 28 more
Caused by: javax.ejb.EJBTransactionRolledbackException: null; CausedByException
is:
javax.naming.NameNotFoundException: EntityManagerFactory not bound
at org.jboss.ejb3.tx.Ejb3TxPolicy.handleInCallerTx(Ejb3TxPolicy.java:65)

at org.jboss.aspects.tx.TxPolicy.invokeInCallerTx(TxPolicy.java:117)
at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java
:138)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
java:98)
at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInt
erceptor.java:61)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
java:98)
at org.jboss.aspects.security.AuthenticationInterceptor.invoke(Authentic
ationInterceptor.java:63)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
java:98)
at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterce
ptor.java:32)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
java:98)
at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(Asynchrono
usInterceptor.java:91)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.
java:98)
at org.jboss.ejb3.stateful.StatefulContainer.dynamicInvoke(StatefulConta
iner.java:239)
at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:107)
at 

[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
I try lcoetzee jboss-seam.jar but i have the same error.
It happens when i open a conversation and stop for few minutes.
Who can help me? Please!!?!?!? :-(

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910946#3910946

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910946


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
So it seems that there is a problem on conversation timeout and we will look 
into it, But please be patient.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910950#3910950

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910950


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
Thanks! 


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910953#3910953

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910953


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
It always helps if someone can submit an actual runnable EAR to JIRA so that we 
can actually reproduce and debug this.

It's pretty hard to fix problems when all we can see is a stacktrace and none 
of the code that causes the error.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910959#3910959

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910959


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread [EMAIL PROTECTED]
sure gavin!

i apologize for the amount of messages, but i think this problem is quit easy 
to reproduce, opening a conversation and wait for few minutes.
Normally the first time it's ok, but if i repeat the task i have these error.
The problem is that i need to restart the AS and this is really a great problem 
!!

Could you check ?

I have to run in production in the next days! :-( Plz



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910963#3910963

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910963


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-06 Thread jdestef
Hi,

I have a similar problem. In my logout action method I call 
Seam.invalidateSession (not sure if that makes any difference in the actual 
problem). When I try to log back in I get a stack trace similar to the one 
reported in this thread. Looks like the code is tring to access an invalid 
HttpSession. This happens when I use the seam build from 12/5. If I use the 
seam build from 11/21 then this issue does not occur.

Tx

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3911008#3911008

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911008


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-05 Thread [EMAIL PROTECTED]
Maybe your Entity Manager is misconfigured.

anonymous wrote : 
  | javax.naming.NameNotFoundException: EntityManagerFactory not bound
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910746#3910746

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910746


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-05 Thread Zealot
It works perfectly all the time until I i stop working with it for few minutes. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910840#3910840

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910840


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user