[JBoss-user] [JBoss Seam] - Re: problem - JNDI InitialContext properties:null

2006-06-20 Thread tthiele
just in time...
very well - now it works! great!...

With this listener element, I got a deployment error.
But - after changing in components.xml


  | 

to


  | 

I see what I expected.

Thanks a lot
/Tilo

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951931#3951931

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951931


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem - JNDI InitialContext properties:null

2006-06-20 Thread tthiele
alright. Maybe the problem is my Filter. I have a (Authentication-)Filter 
installed. If the branch
request.getRequestDispatcher(fwd).forward(request, response);
  | 
is being called, the NPE occurs. If the branch
chain.doFilter(request, response);
  | 
is being called, the seam processes the request properly.

web.xml is:


  | 
  | http://java.sun.com/xml/ns/j2ee"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"; version="2.4">
  |
  | 
  |   
  | Seam Redirect Filter
  | 
org.jboss.seam.servlet.SeamRedirectFilter
  | 
  | 
  | 
  | Seam Exception Filter
  | 
org.jboss.seam.servlet.SeamExceptionFilter
  | 
  | 
  |
  |   Authentication
  |   
de.ems.dap.appengine.web.AuthenticationFilter
  |   
  |  failedForward
  |  /login.seam
  |   
  |
  | 
  | 
  | Seam Redirect Filter
  | *.seam
  | 
  | 
  |
  |   Authentication
  |   /noch-nicht*
  |
  | 
  |   
  | 
org.apache.myfaces.webapp.StartupServletContextListener
  | 
  | 
  | 
  | 
  | javax.faces.STATE_SAVING_METHOD
  | client
  | 
  | 
  | 
  | 
  | Faces Servlet
  | javax.faces.webapp.FacesServlet
  | 1
  | 
  | 
  | 
  | Faces Servlet
  | *.seam
  | 
  | 
  |
  | 
  |
  | 
  |   
  | 
  |
  | 
  | 
  | 
AuthenticationFilter is:
package de.ems.dap.appengine.web;
  | 
  | import java.io.IOException;
  | 
  | import javax.servlet.Filter;
  | import javax.servlet.FilterChain;
  | import javax.servlet.FilterConfig;
  | import javax.servlet.ServletException;
  | import javax.servlet.ServletRequest;
  | import javax.servlet.ServletResponse;
  | import javax.servlet.http.HttpServletRequest;
  | import javax.servlet.http.HttpSession;
  | 
  | import de.ems.dap.appengine.business.AppSession;
  | 
  | /**
  |  * Filter class
  |  *
  |  * @web.filter  name="Authentication"
  |  * @web.filter-mapping  url-pattern="/*"
  |  * @web.filter-init-param
  |  *   name="failedForward"
  |  *   value="/login.seam"
  |  */
  | public class AuthenticationFilter implements Filter {
  | 
  | //private static org.apache.commons.logging.Log log = 
org.apache.commons.logging.LogFactory.getLog(AuthenticationFilter.class);
  | private String   authenticationFailedForward;
  | 
  | public AuthenticationFilter() {
  | }
  | 
  | public void init(FilterConfig cfg) throws ServletException {
  | authenticationFailedForward = cfg.getInitParameter("failedForward");
  | }
  | 
  | public void doFilter(ServletRequest request, ServletResponse response, 
FilterChain chain) throws IOException, ServletException {
  | 
  | HttpSession session = ((HttpServletRequest) 
request).getSession(true);
  | AppSessionHolder ash = AppSessionHolder.getInstance(session);
  | 
  | AppSession as = null;
  | if(ash!=null) {
  | ash.getAppSession();
  | }
  | boolean ok  = (as!=null);
  | 
  | String url   = ((HttpServletRequest) 
request).getServletPath();
  | ok |= url.startsWith("/login.");
  | ok |= url.startsWith("/logout.");
  | ok |= url.startsWith("/life-check.");
  | 
  | if (ok) {
  | chain.doFilter(request, response);
  | } else {
  | String fwd = authenticationFailedForward;
  | 
  | request.getRequestDispatcher(fwd).forward(request, response);
  | }
  | }
  | 
  | public void destroy() {
  | }
  | 
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951920#3951920

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951920


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: problem - JNDI InitialContext properties:null

2006-06-20 Thread tthiele
sorry - ignore this cross posting. It is a JBoss Seam subject.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951911#3951911

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951911


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem - JNDI InitialContext properties:null

2006-06-20 Thread tthiele
okay thomas, you made me to proceed trying.

If I remove the element


  | 
  | 
  | 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener
  | 
  | 

it woks. 
So, if this is the solution - what is the explanation?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951909#3951909

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951909


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem - JNDI InitialContext properties:null

2006-06-20 Thread tthiele

  | http://java.sun.com/dtd/web-facesconfig_1_0.dtd";>
  | 
  | 
  | 
  | /login.jsp
  | 
  | kunde
  | /home-kunde.jsp
  | 
  | 
  | dekra-hv
  | /home-dekra-hv.jsp
  | 
  | 
  | dekra-nl
  | /home-dekra-nl.jsp
  | 
  | 
  | 
  | 
  | 
  | 
  | 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener
  | 
  | 
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951901#3951901

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951901


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem - JNDI InitialContext properties:null

2006-06-20 Thread tthiele
It seems to work now. After removing the file WEB-INF/faces-config.xml I can 
see my pages.

But - does this mean that it is not possible to provide my application with an 
individual faces-config? What if i need sth. like a custom validator...

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951880#3951880

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951880


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - problem - JNDI InitialContext properties:null

2006-06-19 Thread tthiele
When I try to start with a simple seam/ejb3 app from scratch, I get the 
following error when I send the first request: 

2006-06-20 00:28:11,052 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext 
properties:null
  | 2006-06-20 00:28:11,052 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] 
setRepository, [EMAIL PROTECTED], [EMAIL PROTECTED] url=null ,addedOrder=0}
  | 2006-06-20 00:28:11,062 ERROR 
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/dekra-ap].[Faces
 Servlet]] Servlet.service() for servlet Faces Servlet threw exception
  | java.lang.IllegalStateException: Could not start transaction
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.begin(SeamExtendedManagedPersistencePhaseListener.java:77)
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.beforePhase(SeamExtendedManagedPersistencePhaseListener.java:35)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.informPhaseListenersBefore(LifecycleImpl.java:520)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.restoreView(LifecycleImpl.java:105)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:66)
  | 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 
de.ems.dap.appengine.web.AuthenticationFilter.doFilter(AuthenticationFilter.java:54)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:30)
  | 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:96)
  | 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.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
  | at 
org.jboss.web.tomcat.tc5.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:95)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | 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:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | 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)
  | Caused by: java.lang.NullPointerException
  | at org.jboss.seam.util.Naming.getInitialContext(Naming.java:26)
  | at org.jboss.seam.util.Naming.getInitialContext(Naming.java:37)
  | at 
org.jboss.seam.util.Transactions.getUserTransaction(Transactions.java:48)
  | at 
org.jboss.seam.util.Transactions.isTransactionActiveOrMarkedRollback(Transactions.java:30)
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.begin(SeamExtendedManagedPersistencePhaseListener.java:68)
  | ... 30 more
  | 2006-06-20 00:28:11,062 DEBUG 
[org.jboss.web.tomcat.tc5.session.JBossCacheManager] check to see if needs to 
store and replicate session with id N15gE2eYVoGB1pI8e8LobQ**
  | 2006-06-20 00:28:11,062 DEBUG 
[org.jboss.web.tomcat.tc5.session.ClusteredSession] processSessionRepl(): 
session is dirty. Will increment version from: 0 and replicate.
  | 2006-06-20 00:31:38,820 ERROR [org.jboss.naming.JNDIView] 
JNDIView.getHAJndiAttributes() failed
  | java.lang.NullPointerException: name cannot be null
  | at javax.management.ObjectName.construct(ObjectName.java:342)
  | at javax.management.ObjectName.(ObjectName.java:1304)
  | at org.jboss.naming.JNDIView.getHAJndiAttributes(JNDIView.java:836)
  | at org.jboss.naming.JNDIView.getHAU

[JBoss-user] [JBoss Seam] - problem - JNDI InitialContext properties:null

2006-06-19 Thread tthiele
When I try to start with a simple seam app from scratch, I get the following 
error when I send the first request:

2006-06-20 00:28:11,052 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext 
properties:null
  | 2006-06-20 00:28:11,052 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] 
setRepository, [EMAIL PROTECTED], [EMAIL PROTECTED] url=null ,addedOrder=0}
  | 2006-06-20 00:28:11,062 ERROR 
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/dekra-ap].[Faces
 Servlet]] Servlet.service() for servlet Faces Servlet threw exception
  | java.lang.IllegalStateException: Could not start transaction
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.begin(SeamExtendedManagedPersistencePhaseListener.java:77)
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.beforePhase(SeamExtendedManagedPersistencePhaseListener.java:35)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.informPhaseListenersBefore(LifecycleImpl.java:520)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.restoreView(LifecycleImpl.java:105)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:66)
  | 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 
de.ems.dap.appengine.web.AuthenticationFilter.doFilter(AuthenticationFilter.java:54)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:30)
  | 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:96)
  | 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.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
  | at 
org.jboss.web.tomcat.tc5.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:95)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | 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:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | 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)
  | Caused by: java.lang.NullPointerException
  | at org.jboss.seam.util.Naming.getInitialContext(Naming.java:26)
  | at org.jboss.seam.util.Naming.getInitialContext(Naming.java:37)
  | at 
org.jboss.seam.util.Transactions.getUserTransaction(Transactions.java:48)
  | at 
org.jboss.seam.util.Transactions.isTransactionActiveOrMarkedRollback(Transactions.java:30)
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.begin(SeamExtendedManagedPersistencePhaseListener.java:68)
  | ... 30 more
  | 2006-06-20 00:28:11,062 DEBUG 
[org.jboss.web.tomcat.tc5.session.JBossCacheManager] check to see if needs to 
store and replicate session with id N15gE2eYVoGB1pI8e8LobQ**
  | 2006-06-20 00:28:11,062 DEBUG 
[org.jboss.web.tomcat.tc5.session.ClusteredSession] processSessionRepl(): 
session is dirty. Will increment version from: 0 and replicate.
  | 2006-06-20 00:31:38,820 ERROR [org.jboss.naming.JNDIView] 
JNDIView.getHAJndiAttributes() failed
  | java.lang.NullPointerException: name cannot be null
  | at javax.management.ObjectName.construct(ObjectName.java:342)
  | at javax.management.ObjectName.(ObjectName.java:1304)
  | at org.jboss.naming.JNDIView.getHAJndiAttributes(JNDIView.java:836)
  | at org.jboss.naming.JNDIView.getHAUrl(JND

[JBoss-user] [JBoss.NET] - HELP Needed on missing NS in rpc call

2005-07-07 Thread tthiele
>From a given wsdl I generated stubs and deployment descriptor. A relevant 
>piece of wsdl is:

  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
When I send a request to mysqelf I get this error:
Request:
  | 
  | http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  |  http://schemas.xmlsoap.org/soap/encoding/";>
  |   
  |   http://schemas.xmlsoap.org/soap/encoding/"; 
xsi:type="ns1:typeFahrzeugDaten" 
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:ns1="urn:DEKRA">
  |
  |
  | Response:
  | http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  |  
  |   
  |soapenv:Client
  |Invalid element in 
de.ems.carmanager.schnittstelle.ejbcommon.bmw.hmd.TypeFahrzeugDaten - 
Haendlernummer
  | 
I added a namespace ns1 to Haendlernummer and got this result:
Request:
  | 
  | http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  |  http://schemas.xmlsoap.org/soap/encoding/";>
  |   
  |   http://schemas.xmlsoap.org/soap/encoding/"; 
xsi:type="ns1:typeFahrzeugDaten" 
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:ns1="urn:DEKRA">
  |
  |
  | Response:
  | http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  |  
  |   
  |soapenv:Client
  |Invalid element in 
de.ems.carmanager.schnittstelle.ejbcommon.bmw.hmd.TypeFahrzeugDaten - 
Sender
  | 
It seems that the deserializer does not know the namespace and can not find the 
field meta data.

So what did I wrong?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884155#3884155

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884155


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - jboss and pja on a system without X11

2005-01-10 Thread tthiele
I'm getting the error

"Toolkit not found: com.eteks.Toolkit"

using jboss 3.2.6 and pja-2.5.jar
The property
awt.toolkit=com.eteks.Toolkit
is set properly. I tried to put jpa-2.5.jar in 
j2sdk14/jre/lib
jboss326/server/default/lib
.../WEB-INF/lib
without success.

Did anyone cope with this problem?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861387#3861387

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861387


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: JNDI Context lookup failure with jboss 3.2.3

2004-04-20 Thread tthiele
I can't see any env-entry tags in your web.xml but only ejb-refs.
So, I suppose you should write
Object homeObject = ctx.lookup("java:comp/ejb/ega/Login");
instead of
Object homeObject = ctx.lookup("java:comp/env/ega/Login");


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831563#3831563

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831563


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Unable to compile class for JSP

2004-04-20 Thread tthiele
i.e. did you install multiple versions of jdks? I tried this once with WinXP and got a 
similar mess. Environment variables and registry entries seems to have a magic 
influence to the java system.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831565#3831565

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831565


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: which (bugfree) JVMs do you recommended?

2004-04-02 Thread tthiele
Wow!
this bug is now second on the Top 25 list. I hope SUN will soon(er) start to fix the 
bug.

thanks,
Tilo

PS:
The toppest one is obviously submitted by the JBoss team.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3828871#3828871

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3828871


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - please donate 10 minutes of your time.

2004-03-30 Thread tthiele
hello everybody,

in order to get a stable environment for JBoss please go to this url

http://developer.java.sun.com/developer/bugParade/bugs/4724356.html

and vote for this bug so that SUN starts soon to fix it. Eventually you need to 
register an account.

We are running our application.ear on JBoss 3.2.2 and Sun JDK 1.3.1_09 on Win2k. 
However, we are getting the JVM crash with all 1.3 versions on Win and Linux.

thanks
Tilo[/url]

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3828063#3828063

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3828063


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Jboss only works with local clients on Linux

2004-03-22 Thread tthiele
I had the same 'crazy' problem. The solution was to configue the ns resolution 
correctly. It seems that the reverse lookup needs to be consistent with the forward 
lookup. Otherwise JNDI doesn't work properly. I think that would explain the 
'asymmetric' behaviour of your system.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3826891#3826891";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3826891>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - which (bugfree) JVMs do you recommended?

2004-03-22 Thread tthiele
Due to the Bug #4724356 (see: 
http://developer.java.sun.com/developer/bugParade/bugs/4724356.html) in the SUN JDK 
JBoss is crashing very often when running at high load or even druing (re)deploying. 
I'm using JBoss 3.2.X and SUN JDK >1.3.0. We are bound to JDK1.3 but experiments with 
JDK 1.4.X gives similar results: sometimes memory usage 'explodes' and the system 
fires OutOfMemoryExceptions and/or terminates with SIGSEG exception.

So, which JDK resp. JVM is save to run a production system with JBoss?

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3826834#3826834";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3826834>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


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

2004-03-19 Thread tthiele
I observed similar behaviour with Windows as well as Linux. Make sure that your 
network configuration is really correct. I.e. the _reverse_ ns-lookup must be correct.

Hope it helps
/tilo

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3826502#3826502";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3826502>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user