[JBoss-user] [Beginners Corner] - Re: MBeans

2005-01-17 Thread Frito
Depends on how you are going to realise the connection to the external server... but this sound very much like a MBean as best practice. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862346#3862346 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: JBOSS connection pool caching problem

2005-01-17 Thread utkarshpanwar
Hi, No i am not using any Are you using entity beans. See the code below To get the connection private static Connection getConnectionFromPool() throws Exception { if (ds == null) { ctx = new InitialContext(); ds = (DataSource)

[JBoss-user] [HTTPD, Servlets JSP] - Re: Change filters mapping order in web.xml with xdoclet.

2005-01-17 Thread parahman
Along the way of learning JBoss I found the solution. Its actually written in one of the generated xml files (web.xml). Add filter mappings in a separate file called filter-mappings.xml. Put this in a directory which you merge (with XDoclet) with the web.xml file. View the original post :

[JBoss-user] [Beginners Corner] - Deploying Jar,Sar,War,Har .... ClassNotFound :-(

2005-01-17 Thread samfra
(sorry for posting it also in the jmx forums) Hello, what did I understand wrong ? I need to deploy the following - utils.jar - myobjects1.har - myobjects2.har - mymbean1.sar - mymbean1-interfaces.jar - mymbeanN.sar I've got problems with my classes First, I wanted mymbean1

[JBoss-user] [Beginners Corner] - Re: newbie questions

2005-01-17 Thread Frito
JBoss is coming with tomcat inside and uses JSP e.g. within the jmx-console.war . View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862350#3862350 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862350

[JBoss-user] [Management, JMX/JBoss] - Re: JMX: UndeclaredThrowableException

2005-01-17 Thread [EMAIL PROTECTED]
You probably use a different version of xercesImpl.jar on the client, with that on the server. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862352#3862352 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862352

[JBoss-user] [Installation Configuration] - Re: I can't start JBoss 4.0.1 from Eclipse 3.0.1 with Lomboz

2005-01-17 Thread Scharlau
Nalbion, you need to amend the server.xml file to remove one instance of the problem jar, and keep repeating the process until all errors are gone. Fabio, if I understand you correctly, then you've placed the new hibernate and xdoclet jars in the plugin, in order to bring them uptodate. If

[JBoss-user] [Messaging, JMS JBossMQ] - Re: org.jboss.mq.SpyJMSException in JBoss

2005-01-17 Thread kalapraveen
Hi Gene, Thank you so much for your reply..! Could you please let me know where exactly I need to give the CHECKPOINT DEFRAG Command? Is it in LocalDB.script file. If so, I did that. But, this command is getting erased by JBOSS automatically. Is there any permanant way of doing this? Thnak

[JBoss-user] [JCA/JBoss] - Managed JDBC transaction never commited on JBoss 4

2005-01-17 Thread mremond
Hello, I am trying to run the Kaon Open Source application on JBoss 4.0. Deployement is correct but fails to run correctly. After more investigation, it happens that the problem comes from JDBC transactions that are never commited. I was wondering what changes in JDBC managed transaction

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread Frito
Something like that is usually done by writing a MBean. If you don't know how to do this, read the JBoss doko, search the forum and the wiki since this has been specified pretty good. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862357#3862357 Reply to the

[JBoss-user] [Beginners Corner] - Re: ear file won't deploy

2005-01-17 Thread Frito
This has nothing to do with a comp method. This link may help you out if you want to learn more about JNDI and the application component environment (ENC namespace). http://docs.jboss.org/jbossas/jboss4guide/r1/html/ch3.chapter.html View the original post :

[JBoss-user] [Beginners Corner] - Re: Lifecycle of bean references inside Swing client app

2005-01-17 Thread Frito
btw, the same for statless, but there is no need to remove the bean and there is of course no timeout. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862361#3862361 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862361

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread eitangur
I tried to do so, but this causes the AS to stop responding, as it is constantly waiting for messages in a loop. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862362#3862362 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: Lifecycle of bean references inside Swing client app

2005-01-17 Thread Frito
Assumption: you are talking about a stateful session bean. You can create the bean with the home interface, an instance of the SFSB is created on the server. The reference (stub) is valid as long as the session bean hasn't timed out. You can even use the handle to store a reference to the

[JBoss-user] [EJB/JBoss] - Installing EJB 3.0

2005-01-17 Thread Bea
Hi all! I'm new with JBoss and I'm trying to install it and EJB 3.0 on my computer. JBoss version is 4.0.1-RC1 and SDK is 1.4.0 When I run: run.sh -c all I get the following error: Exception in thread main java.lang.NoClassDefFoundError: and Press any key to continue. . . What must I

[JBoss-user] [Installation Configuration] - Re: Unable to find a javac compiler;

2005-01-17 Thread Frito
typo?? anonymous wrote : export JAVA_HOME=/usr/java/jdk1.4.2_06 | export JDK_HOME=usr/java/j2sdk1.4.2_06 JAVA_HOME must point to a correctly installed JDK! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862365#3862365 Reply to the post :

[JBoss-user] [Javassist user questions] - Limitations

2005-01-17 Thread sirrurg
Hi, i have a question about the limitations mentioned in the tutorial on the javassist webpage. 1) as javassist doesnt support synchronized statments, does this mean that this could cause also problems when im copying a method that is synchronized or contains such a block? 2) to the

[JBoss-user] [JBossWS] - Re: Bug in ServiceDeployerEjb's portURI

2005-01-17 Thread raja05
Thanks for the response. Im still new to WS, sorry if im missing something obvious. There are 2 wsdl files in my jar archive, one of them having a wsdlsoap:address location=http://localhost:8080/ws4ee/services/TestBean/ and another with wsdlsoap:address

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread Frito
If your implementation is working as POJO implementation, it will work as MBean, too. You didn't implement the loop above within the start service method, did you? You will block the jmx server when the start method doesn't return. You must do this within your own thread. What was wrong with

[JBoss-user] [Installation Configuration] - Re: Using jboss with apache

2005-01-17 Thread beyarecords
'/yourwar/:8080/yourwar/folder/'??? Don't you mean localhost:8080/yourwar/folder/ ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862372#3862372 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862372

[JBoss-user] [EJB/JBoss] - Re: Try to insert null into a non-nullable column: column: I

2005-01-17 Thread demmahom
is my problem so dificullt to resolve? or did not i explain it good enough? please i need your feedback. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862374#3862374 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862374

[JBoss-user] [Beginners Corner] - Where is the deployer.jar?

2005-01-17 Thread africwildman
I use jboss 4.0.1,i only can find deployer.sh under the jboss-4.0.1/bin but can't find deployer.jar to run. how can i run deployer? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862375#3862375 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread eitangur
The problem is that threads are not supposed to be managed by me: ejb2.1 spec chapter 25.1.2 anonymous wrote : The enterprise bean must not attempt to manage threads. The enterprise bean must not attempt | to start, stop, suspend, or resume a thread, or to change a thread?s priority or name.

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread eitangur
from the book effective enterprise java anonymous wrote : In order to maintain a system that?s as scalable as possible, the container seeks to take on resource management as part of its duties. It does this because, as a unifying force across all sorts of different programs and enterprise

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread Frito
MBeans are not EJBs. The thread(s) must be managed in there! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862378#3862378 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862378

[JBoss-user] [Security JAAS/JBoss] - Specify SECURITY_PRINCIPAL and SECURITY_CREDENTIALS ?

2005-01-17 Thread 760613
Hi, Sorry if you find this question have been already answered in other documents/posts but I really still cant find a good answer! I want to use SECURITY_PRINCIPAL and SECURITY_CREDENTIALS from my clients when establish a context. | Properties env = new Properties(); |

[JBoss-user] [Beginners Corner] - Re: Integrating MMS server with jboss 3.2.5

2005-01-17 Thread Frito
Where is the problem? It is up to you where you are going to obtain threads (e.g. thread pools). The number of threads can (usually) be configured with the service since configuring this makes only sense per service (in your example the web service). And remember, you are going to provide a

[JBoss-user] [Messaging, JMS JBossMQ] - Re: message driven bean in session bean

2005-01-17 Thread chenna1978
Thanks for ur response. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862389#3862389 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862389 --- The SF.Net email is

[JBoss-user] Problem with generating an automatic primary key

2005-01-17 Thread frederic . kieffer
Hi, We have a problem with the automatic generation of a primary key in an CMP entity bean. We areusing eclipse 3.0, jboss3.2.4 and xdoclet 1.2.1. In the entity bean, we addedthe following xdoclet tags: /** * @ejb.bean name="PropertySOVCMP" *

[JBoss-user] [Security JAAS/JBoss] - Re: Struts security setup!! please help

2005-01-17 Thread potdl
Thanks guys, But i`m feeling a bit stupid now, it was the bug in Jboss 4.0.0 That coused the problem. I`ve installed the new Jboss RC1 and it is working like a charm. Thanks Derick View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862395#3862395 Reply to the

[JBoss-user] [Security JAAS/JBoss] - Problems with Digest Authentication

2005-01-17 Thread giordano
I had some problems with Digest Authentication. With Basic and Form authentication I didn't have problems except that request.isUserInRole() does not work. About Digest Authentication the browser display the window asking Username and Password but it is not able to recognize them and after 3

[JBoss-user] [Beginners Corner] - Deploying an EAR file in vhost

2005-01-17 Thread kumaran5
hi all, I want to configure more than one vhost in JBoss server and I set localhost as default host in jboss-service.xml under ?..deploy\jbossweb-tomcat41.sar\META-INF ?. how can I deploy ear file on virtual host other than localhost. Thanks in advance, Kumaran View the original post :

[JBoss-user] [Security JAAS/JBoss] - Re: Struts security setup!! please help

2005-01-17 Thread cuoz
You need to define a block in your login-config.xml that uses the DatabaseServerLoginModule. Then, make sure you add a reference to whatever realm you defined in your jboss-web.xml file for the webapp. If you are using the bundled tomcat, and not a standalone one, then it should work. The

[JBoss-user] [Security JAAS/JBoss] - Re: Specify SECURITY_PRINCIPAL and SECURITY_CREDENTIALS ?

2005-01-17 Thread tcherel
As far as I understand, authetnication through the JNDI context is not supported by JBoss. So, if you want to do it anyway, you will need to develop your own JBoss specific code to support it (or wait that JBoss supports it). The other standard authentication mechanism is to use JAAS. I do

[JBoss-user] [The Lizzard's corner] - Re: Where is JBoss AS heading in terms of scheduling ?

2005-01-17 Thread fredatwork
No one at JBoss Inc. answered to this question yet. It would be nice if someone could ? Can Scott Stark answer to this topic (it is related to JBoss implementation strategy? ps: in the meantime, I rely on Quartz tfor scheduling my services. See http://www.quartzscheduler.org/[url] View the

[JBoss-user] [The Lizzard's corner] - Re: Where is JBoss AS heading in terms of scheduling ?

2005-01-17 Thread CasaDelNorte
This is a great question - did you ever get an answer? Any current links? I'm completely puzzled about the right way to schedule services in JBoss. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862399#3862399 Reply to the post :

[JBoss-user] [Installation Configuration] - Build JBoss Javadoc

2005-01-17 Thread jiwils
We use JBoss 3.2.4 in production, and due to our use of JMX, the JBoss service lifecycle, clustering, and some other JBoss-specific functionality, we have long wanted to utilize the JBoss Javadoc. Using the JBoss 3.2.4 source tar, running build docs from the build directory, as the help

[JBoss-user] [Beginners Corner] - Re: Starting a function by using a timer

2005-01-17 Thread CasaDelNorte
If you touch (Linux) or resave the scheduler-service.xml file after JBoss has finished starting, you'll likely get your services started. Hope this helps. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862406#3862406 Reply to the post :

[JBoss-user] [HTTPD, Servlets JSP] - Stand alone Tomcat 5.5.4 and JBoss 3.2.6

2005-01-17 Thread nicc777
Hi, I am posting here after a suggestion from http://groups-beta.google.com/group/comp.lang.java.programmer/browse_frm/thread/64bae6fe6f450e54/2e8c0a058cf31a44#2e8c0a058cf31a44 Here goes... I am a non-programmer, sysadmin (Linux) that was given the task to deploy a basic JBoss server, assuming

[JBoss-user] [Installation Configuration] - Logging in JBoss 4.0.1

2005-01-17 Thread pani_rd
Hi, Problem: Not able to use application specific log4j.xml in jboss 4.0.1 Details: I'm trying to migrate one of my application from JBoss 3.2.3 to 4.0.1. In Jboss 3.2.3, following lines in jboss-web.xml helped myApp.war to use its own log4j.xml and print its log in a separate log file.

[JBoss-user] [JCA/JBoss] - Re: JBossManagedConnectionPool No more connection available

2005-01-17 Thread dtauzell
You can change the maximum number of connections in your *DS-service.xml file. Look for the tag: 50 Two common causes for using up all the connections are: 1. Your application code doesn't release the connection when exceptions happen. 2. There is some sort of deadlock situation

[JBoss-user] [EJB/JBoss] - NoSuchMethod - StatelessSessionContainer.removeHome

2005-01-17 Thread JBaruch
Hi, guys and gals. I get exception on application load, log is following. All the descriptors pass validation smoothly, and it seems very strange to me. I have replaced packages names with asterlinks. 2005-01-17 18:12:12,542 DEBUG [org.jboss.system.ServiceController] adding depends in

[JBoss-user] [Persistence CMP/JBoss] - Re: delete and insert vs update

2005-01-17 Thread vmukkamala
Thanks for you reply. It is same case with me as you noted. I can provide a sample application with source if needed. VM View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862433#3862433 Reply to the post :

[JBoss-user] [The Lizzard's corner] - Re: Where is JBoss AS heading in terms of scheduling ?

2005-01-17 Thread [EMAIL PROTECTED]
Its not a big roadmap item since there are numerous ways to do scheduling including the direct use of quartz. If someone wants to provide an enhanced quartz integration service that could bump up looking at quartz as a basis. View the original post :

[JBoss-user] [Security JAAS/JBoss] - Re: Specify SECURITY_PRINCIPAL and SECURITY_CREDENTIALS ?

2005-01-17 Thread [EMAIL PROTECTED]
Read about org.jboss.security.jndi.LoginInitialContextFactory: http://www.jboss.org/wiki/Wiki.jsp?page=LoginInitialContextFactory Passing the login credentials through the JNDI InitialContext is not a standard. There is no j2ee spec that even suggests this is how a client might provide its

[JBoss-user] [Security JAAS/JBoss] - Need to implement User lock out Using JBoss / Tomcat contain

2005-01-17 Thread ravichittari
I am using Jboss container security successfully, I use form based login with j_security _check and everything is working fine. Now, I need to implement User lock out after 5 consecutive login failures. I am able to track the consecutive login failure from my login module. But I am not able

[JBoss-user] [Security JAAS/JBoss] - Re: Problems with Digest Authentication

2005-01-17 Thread [EMAIL PROTECTED]
Digest authentication does not work as it requires access to a clear text password on the server side, and this is not generally possible. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862429#3862429 Reply to the post :

[JBoss-user] [EJB/JBoss] - Application Client Module: Deploy

2005-01-17 Thread walvat
Error message: The content of element type jboss-client is incomplete, it must match (jndi-name,ejb-ref*,resource-ref*,resource-env-ref*) ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862431#3862431 Reply to the post :

[JBoss-user] [Security JAAS/JBoss] - Need Help Here

2005-01-17 Thread niefeng
Hi, I am new to j2ee and trying to use DatabaseServerLoginModule as the loginModule to secure my webpage. Could anyone provide some example or guideline on setting up the security constraint? I will use form-based authentication... Since the login.jsp page is written by me, how can I pass both

[JBoss-user] [Installation Configuration] - Re: Build JBoss Javadoc

2005-01-17 Thread [EMAIL PROTECTED]
Use the all target. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862439#3862439 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862439 --- The SF.Net email is sponsored

[JBoss-user] [EJB/JBoss] - Re: How Can I dynimicly load a Class in Session Bean (Statel

2005-01-17 Thread keros
I've been having classloader problems as well with 3.2.3 (I've tried w/ 3.2.6 as well). I did the | Thread.currentThread().getContextClassLoader().getResourceAsStream() | Thread.currentThread().getContextClassLoader().loadClass() | which works great. I now get my class loaded just

[JBoss-user] [EJB/JBoss] - Re: Application Client Module: Deploy

2005-01-17 Thread darranl
Your XML is invalid, what does your XML look like? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862442#3862442 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862442

[JBoss-user] [JCA/JBoss] - Re: Hot deploy/redeploy datasources

2005-01-17 Thread [EMAIL PROTECTED]
So for where we stand right now, the approach described in the the original post is the best bet for hot deploy/undeploy of datasources? If so, do you see any merit in updating the stylesheet described here http://jboss.org/wiki/Wiki.jsp?page=ConfigConnectionFactoryDeployer so that a

[JBoss-user] [Beginners Corner] - Re: set statement in run.bat

2005-01-17 Thread rocklord1960
Thanks for the advise! I'll post hear with the results. Bart View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862450#3862450 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862450

[JBoss-user] [Beginners Corner] - Missing some source files for Jboss 4.01 source?

2005-01-17 Thread fxia99
This is my first time trying to compile the JBoss source files but I found there are bunch of source files missing, typically xxxMBean such as org.jboss.ejb.EjbMoudleMBean, ContainerMBean, org.jboss.deployment.EARDeployerMBean etc. Any idea? thanks a lot Frank View the original post :

[JBoss-user] [EJB/JBoss] - Re: Nobody knows it????????????????????!!!

2005-01-17 Thread [EMAIL PROTECTED]
FAQ: http://www.jboss.org/wiki/Wiki.jsp?page=JBossForums View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862456#3862456 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862456

[JBoss-user] [EJB/JBoss] - rmi-iiop and inner classes

2005-01-17 Thread bonoc
Posted: Mon Jan 17, 2005 12:15 PMPost subject: Inner classes I have a value class that has an inner class. The deployment of ejb fails due to this. Where can I find a list of supported/unsupported types and

[JBoss-user] [EJB/JBoss] - rmi-iiop

2005-01-17 Thread bonoc
WindowsXP Sun1.4.2_05 JBoss3.2.3 I am deploying an ejb that has a reference to a POJO. The POJO extends another POJO that extends another POJO. The deployment is failing w/ the following message at deploy time. Any ideas as to what is causing this? Thanks [EMAIL PROTECTED] Jan 2005

[JBoss-user] [EJB/JBoss] - Error deploying application

2005-01-17 Thread adrianob
Hello, im trying to deploy a application and there are messages about findAll methods that cant be found. So, in almost all, there is a method findAll in the descriptor and in Home interface of the entities. Above follow an example of the output: 16:15:56,303 INFO [EjbModule] Deploying

[JBoss-user] [EJB/JBoss] - Nobody knows it????????????????????!!!

2005-01-17 Thread demmahom
I am woundering why did not you reply to my problem.Is it difficult? Please tell me , if it is difficult so i can see other Forums(i thougt here is the right place). Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862448#3862448 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: HTTP Session Timeout Configuration?

2005-01-17 Thread daorriss
Will setting the timeout in the web.xml file of my WAR override that setting? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862464#3862464 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862464

[JBoss-user] [Beginners Corner] - Error 404 when running HelloWorld Example (Mac OS X System)

2005-01-17 Thread O.B.
Hello, I installed JBoss4.0.1 and Ant1.6.2 without a hitch following instructions from the website below. http://developer.apple.com/internet/java/enterprisejava.html Then I tried going to http://localhost:8080/HelloWorld/HelloWorlds following the instructions on the link above but the error

[JBoss-user] [Installation Configuration] - Re: Clustering and various Operating Systems - Possible?

2005-01-17 Thread guycole
I test w/Fedora 3 and Solaris 9 hosts. The hosts all have the same version of JBoss (3.2.6) and the same JVM (1.4.2_06). Clustering works in my scenario. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862466#3862466 Reply to the post :

[JBoss-user] [Performance Tuning] - Re: Monitoring recommendations?

2005-01-17 Thread jeff.kehoe
Anybody from JBoss have any comments? What's important to look at? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862457#3862457 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862457

[JBoss-user] [EJB/JBoss] - rmi-iiop/security support

2005-01-17 Thread bonoc
I know that 3.2.x doesn't support CSIv2. But I believe that 4.0.x does - correct? We are stuck on 3.2.3 for now. I am using IIOP.NET to connect a C# client to our secured ejbs (and there lies the problem). I need to somehow get security working. I know I can write an EJB interceptor that

[JBoss-user] [Installation Configuration] - Re: Problems with JBoss 4.0 and JavaService

2005-01-17 Thread darranl
but the applet in the web-console not start Are there any errors displayed anywhere? What web browser and operating system are you trying to view the web console from? If Windows with IE which JRE is the web browser configured to use? View the original post :

[JBoss-user] [Clustering/JBoss] - Rolling updates?

2005-01-17 Thread daorriss
What is your hypothesis of the results of performing a rolling update of the JBOSS clustered web servers by shutting down just one JBOSS instance, upgrading it and then restarting it and then going to the next?? I m afraid that small changes in the structure of the application would make this

[JBoss-user] [JCA/JBoss] - Re: Managed JDBC transaction never commited on JBoss 4

2005-01-17 Thread [EMAIL PROTECTED]
Your post makes little very little sense to me. What does JDBC transactions that are never commited mean? If you mean JTA transactions that can have jdbc local transactions, they either commit/rollback or timeout. I'm *guessing* you are referring to point 8 on this FAQ?

[JBoss-user] [JCA/JBoss] - Re: JCA calling a DLL

2005-01-17 Thread [EMAIL PROTECTED]
The dll needs to be in the path/library path of JBoss. Beyond that, the common error is to get the JNI mangled name wrong. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862472#3862472 Reply to the post :

[JBoss-user] [HTTPD, Servlets JSP] - Apache/JBoss best practices...

2005-01-17 Thread titom
Hi, I am running Apache 1.3 in front of JBoss 4.0.0. One talking to the other through AJP13. Apache deserves the static files as js, css, html or images files, JBoss deserves the dynamic content and the static content that need security checks. I deploy an ear that contains two war files at

[JBoss-user] [JCA/JBoss] - Re: ManagedConnectionPool destroyed, then cannot be re-creat

2005-01-17 Thread [EMAIL PROTECTED]
The CCM is global and will only be destroyed if you redeploy transaction-service.xml Most likely you have redeployed jboss-jca.sar which also requires redeployment of transaction-service.xml (transaction-service.xml uses classes from jboss-jca.sar). In JBoss4 this problem has gone away as

[JBoss-user] [Jobs@JBoss] - JBoss QA Engineer

2005-01-17 Thread admin
Come join a rapidly growing enterprise software and services company and the home of Professional Open Source. JBoss, Inc. has immediate opening in Atlanta, Georgia or Austin, Texas. This is a tremendous opportunity to be a part of a fast-paced, leading edge software company that is changing

[JBoss-user] [Persistence CMP/JBoss] - dynamic datasource selection using EJB

2005-01-17 Thread andrewtv
Anyone know how to dynamically specify the datasource of an entity bean during runtime, specifically so some methods can go to replicated datasources / non-updating? I'd like to programatically specify which EJB calls are read-only (to the database). Andrew View the original post :

[JBoss-user] [JCA/JBoss] - Re: Unable to configure Firebird 1.5 with JBoss AS 4.0.1

2005-01-17 Thread [EMAIL PROTECTED]
FAQ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862481#3862481 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862481 --- The SF.Net email is sponsored by: Beat the

[JBoss-user] [Messaging, JMS JBossMQ] - JMS NameNotFoundException: ConnectionFactory not bound

2005-01-17 Thread gzhuye
Anyone help me with the following problem? After I unzipped jboss4.0 and didn't alter any configuration, ran a sample jms, it couldn't loopup ConnectionFactory: javax.naming.NameNotFoundException: ConnectionFactory not bound | | Hashtable env = new Hashtable(); |

[JBoss-user] [JCA/JBoss] - Re: Hot deploy/redeploy datasources

2005-01-17 Thread [EMAIL PROTECTED]
This is an old FAQ. JDBC drivers CANNOT be hot deployed, or more accuratly redeployed. The class java.sql.DriverManager does some horrible classloader caching. If you change Sun's class to use the thread context classloader rather than Class.forName() then it becomes possible to redeploy jdbc

[JBoss-user] [JCA/JBoss] - Re: How idle-timeout works

2005-01-17 Thread dtauzell
You are right. While the datasource I added has idle-timeout-minutes set to 0, there is a file 'hsqldb-ds.xml' which defines DefaultDS which does have a timeout value. Sorry about that. -Dave View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862484#3862484

[JBoss-user] [Installation Configuration] - Re: Clustering and various Operating Systems - Possible?

2005-01-17 Thread dschneller
Hi, can I use following scenario: One JBoss-Applicationserver on a MS Windows with 2 Clustermembers. One Cluster runs on the MS Windows maschine, the other cluster on a Solaris maschine. Could this run? With this scenario I would like to prevent any failover. View the original post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: exceptionlistener on old connection stays alive

2005-01-17 Thread [EMAIL PROTECTED]
Your code is wrong. If either setExceptionListener() or session.close() fails (throws an exception), you bypass connection.close(). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862489#3862489 Reply to the post :

[JBoss-user] [Installation Configuration] - Re: Build JBoss Javadoc

2005-01-17 Thread jiwils
[EMAIL PROTECTED] wrote : Use the all target. I thought you might say that, so I have also run build all for both JBoss 3.2.4 and 3.2.6 and both targets result in failed builds. The specific build errors are below: For 3.2.4: ...snip... | | docs-javadocs: | | _buildmagic:init: |

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Distributed transaction and Message Driven Bean

2005-01-17 Thread [EMAIL PROTECTED]
No. And it is deliberatly designed/speced that way. Otherwise it wouldn't be asynchronous. A sender and receiver's tranasctions are quite independent and may be separated both spatially and temporily. View the original post :

[JBoss-user] [EJB/JBoss] - Re: rmi-iiop/security support

2005-01-17 Thread reverbel
Yes, 4.0.x implements CSIv2. The way to piggy-back contextual data into IIOP requests is via CORBA portable interceptors. You need a matched pair of request interceptors (one at the client side, the other at the server side). Look at what has been done in 4.0.x. The CSIv2 code is in

[JBoss-user] [Beginners Corner] - Re: Missing some source files for Jboss 4.01 source?

2005-01-17 Thread [EMAIL PROTECTED]
Its not difficult: | cd jboss-4.0.1-src/build | ./build.sh | View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862477#3862477 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862477

[JBoss-user] [JCA/JBoss] - Re: Hot deploy/redeploy datasources

2005-01-17 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : | The only workaround is to redeploy JBoss's local jdbc resource adapter | when you want to redeploy a driver (which doesn't work very well if there is no more than driver). Could you expand briefly on what you mean here? Is it that redeploying

[JBoss-user] [JCA/JBoss] - Re: How idle-timeout works

2005-01-17 Thread [EMAIL PROTECTED]
The trace message should not be reachable if you really do have that config: From the InternalManagedConnectionPool constructor | if (poolParams.idleTimeout != 0) | IdleRemover.registerPool(this, poolParams.idleTimeout); | You can see this attribute on the jmx console for

[JBoss-user] [JCA/JBoss] - Re: DB2 datasource connection

2005-01-17 Thread [EMAIL PROTECTED]
You don't have native method (dll) installed View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862482#3862482 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862482 --- The

[JBoss-user] [JCA/JBoss] - Re: Serious Connection Problems....(MANAGED CONNECTION PROBL

2005-01-17 Thread [EMAIL PROTECTED]
Read the FAQ: SQLException - IOException View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862483#3862483 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862483 --- The

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS NameNotFoundException: ConnectionFactory not bound

2005-01-17 Thread [EMAIL PROTECTED]
Please use the getting started guide or examples on the WIKI rather than posting your random gibberish to the forums. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862485#3862485 Reply to the post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: onException() called on JBoss shutdown, but not UILServe

2005-01-17 Thread [EMAIL PROTECTED]
Sounds to me like your network/os/jvm is broken. Closing the server socket should send a tcp/ip RST or similar to the client. Even if it didn't, the ping should catch the error when it detects the connection is no longer open (at most a two minute wait using the default config). View the

[JBoss-user] [Messaging, JMS JBossMQ] - Re: aantetomaso

2005-01-17 Thread [EMAIL PROTECTED]
Search is your friend. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862487#3862487 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862487 --- The SF.Net email is

[JBoss-user] [Messaging, JMS JBossMQ] - Re: MDB Stops processing messages

2005-01-17 Thread [EMAIL PROTECTED]
Reporting bugs against old versions is futile (especially when they this one was fixed/worked around over a year ago). It is actually a bug in oswego's concurrent.jar View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862488#3862488 Reply to the post :

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Distributed transaction and Message Driven Bean

2005-01-17 Thread [EMAIL PROTECTED]
Besides MySQL doesn't even support XA. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862492#3862492 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3862492 --- The SF.Net

[JBoss-user] [Installation Configuration] - Deployment via config file

2005-01-17 Thread sbuster
Is there a way I can deploy an ear project in a directory without naming the director xx.ear? I already have the project setup in CVS and don't want to change the configuration. If I update the jboss-service.xml file i expects everything in the directory to either be an ear file, or the

[JBoss-user] [Beginners Corner] - JBoss not J2EE compliant with jndi-name

2005-01-17 Thread johnv
I deployed the JBossDukesBank.ear I built using the JBoss getting started tutorial. After doing this the names listed in the global JNDI namespace are the bean names not the names specified as jndi-name in the jboss.xml. For example: ejb-nameCustomerBean/ejb-name

[JBoss-user] [Clustering/JBoss] - Re: problem in Hot deploying the exploded war file.

2005-01-17 Thread yangju
I tried to hot deploy exploded (unpacked) war in all/farm, but I got: java.io.FileNotFoundException: D:\apps\jboss\jboss-4.0.1RC2\server\all\f arm\webapp.war (Access is denied) at java.io.FileInputStream.open(Native Method) Neverthless, the change seems to be picked up by the master node (the

[JBoss-user] [JCA/JBoss] - Re: No ManagedConnections available ...

2005-01-17 Thread RolfZ
Well I upgraded to 3.2.6 but still have the same issue after around 15-19 hours of stress testing Any other suggestions ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862500#3862500 Reply to the post :

[JBoss-user] [JBoss Getting Started Documentation] - Jboss y Jdk

2005-01-17 Thread joker53
Hello im installing jboss 4 and jdk 1.4 . I downloaded from java.sun.com the 1.4 J2ee sdk and installed it. but y run the run.sh and i get a message de java not found. 1) j2eesdk it is the same than jdk?.. 2)How do i set de environment variable PATH and JAVA_HOME permanently on linux?. ( i

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Getting ping timeout trying to connect to a Queue

2005-01-17 Thread mcgourty
After reviewing the recovery logic in our app I believe that we are encountering a deadlock in the 'onException' method of our Queue Exception Listener. Because we never set the exception listener to null when before closing the queue connection in our exception listener it triggers another

[JBoss-user] [JBossWS] - Re: Configuring beanMapping with JBossWS

2005-01-17 Thread AndrewGriffiths
For anyone interested an easy workaround was to remove the jboss-ws4ee module and install/configure Apache Axis as a standard web application instead. In my case this easily allowed me to deploy the web services by manually writing the deployment wsdd. View the original post :

[JBoss-user] [JCA/JBoss] - Re: No ManagedConnections available ...

2005-01-17 Thread [EMAIL PROTECTED]
1) Read the FAQ on how to enable closing a connection for you in the web layer 2) Use READ THIS FIRST to get TRACE information for org.jboss.resource one part of which shows the evolution of the pool. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3862506#3862506

  1   2   >