[JBoss-user] [Management, JMX/JBoss] - Re: SnmpAgent startup sequence

2004-02-26 Thread dimitris
This is a good way to get around them problem, until the next JBoss version! What happens is the SnmpAgent receives the Notification but doesn't know how to map it to SNMP. You need to make an entry in notifications.xml, for example jmx.attribute.change 0 0 1.2.3.4.5.6.7

[JBoss-user] [Messaging, JMS & JBossMQ] - Identifying a stuck subscriber

2004-02-26 Thread richieb
(this is a repost with corrected subject line) We have a problem with one of our client programs that subscribes to a topic (this is a temp subscription). The thread that processes the subscribed messages gets "stuck". Initial effect was that a lot of messages queued up on the topic (in one case

[JBoss-user] [Management, JMX/JBoss] - Re: JMX-console problem in JBoss 3.2.3

2004-02-26 Thread amayingenta
Are you using Tomcat 5? We had the same problem. The fix (which just adds a no argument constructor) is checked into CVS and will be in JBoss 3.2.4. You could do what I did and fix it in a copy of the 3.2.3 source and just update the class in jmx-console.war. Seems like Jasper has changed how i

[JBoss-user] [Messaging, JMS & JBossMQ] - which parameters 4 jndi lookup?

2004-02-26 Thread toniG
Hello, what have i to give my jndiContext.lookup("TopicConnectionFactory"); for parameters? The JNDI-name of the Bean? The path to the Bean? Somethin else? Thank ya all for your help. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823067#3823067 Reply to th

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Struts/JBoss error

2004-02-26 Thread bbalmer
This isn't an issue with JBoss. You should post this to the struts user list. http://sourceforge.net/mail/?group_id=49385 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823068#3823068 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Standard taglib with jboss 3.2.3, tomcat 5

2004-02-26 Thread ahardy66
Can someone tell me which module to download? I've downloaded and compiled the whole lot from CVS 3 times now and I'm not getting any further. I assumed that the module I needed is JBoss-3.2, looking at the list of modules in the jboss root. That wouldn't checkout though. I tried jboss-all, j

[JBoss-user] [Security & JAAS/JBoss] - Re: how is principal cached for subsequent accesses to web a

2004-02-26 Thread Martin0
Looking at the JavaWorld JAAS paper again, I see that subsequent web calls *don't* use the principal object, leading me to think I have to cache the principal in HTTPSession, and using it appropriately there after. This assumes I can run some servlet/jsp code before the restricted stuff that req

[JBoss-user] [Clustering/JBoss] - Re: JBoss Clustering is the Coolest Thing Ever

2004-02-26 Thread glyn_walters
The problem may be with the lookup code in your client. Are you using HA-JNDI when you create the IntialContext? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823071#3823071 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [EJB/JBoss] - Re: Why can not find DataSource by running java file in comm

2004-02-26 Thread [EMAIL PROTECTED]
Datasources are not accessible outside the JBoss app server process. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823072#3823072 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823072 ---

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: which parameters 4 jndi lookup?

2004-02-26 Thread kabkhan
Not sure I get the question, but here is how we look up a queue from a session bean that places a message on the queue. InitialContext iniCtx = new InitialContext(); Object tmp = iniCtx.lookup("java:comp/env/jms/QueueConnectionFactory"); QueueConnectionFactory qcf = (QueueConnectionFactory) tmp;

[JBoss-user] [Clustering/JBoss] - Re: sql server locking

2004-02-26 Thread glyn_walters
Thanks for the advice. I have seen a few issues users on these boards have been having with sql server. Particularly the way sql server may promote a row lock to a page or table lock. I am stuck with using sql server and am nervous about whether I will be creating problems for myself trying to u

[JBoss-user] [Management, JMX/JBoss] - Re: SnmpAgent startup sequence

2004-02-26 Thread paul-henri-spaak
Dimitri, "jmx.attribute.changed" is not the notification type I want to be handled by the snmp agent. In the sendNotifcation call in my code I specified IMPORTSERVICE_REGISTRATION_NOTIFICATION as the notification type and I specified a mapping for it in the notifications.xml file, but it wasn't ha

[JBoss-user] [Installation & Configuration] - Installation issues with Mac OS X 10.3.2 and JBoss 3.2.3

2004-02-26 Thread martin_graney
Hi All I am trying to install, get working, JBoss 3.2.3 on a Mac OS X 10.3.2 machine [Not Server] and have come across something that looks like a classpath issue. The following is the head of the log o/p anonymous wrote : ===

[JBoss-user] [Installation & Configuration] - Re: Precomiling JSPs in JBOSS3.2.x

2004-02-26 Thread wonnekeysers
Here's a little snippet of our ant script: | | | | | | | | | | | | | | | | | | | | | | | | | | | | View the original post : http://www.jb

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: which parameters 4 jndi lookup?

2004-02-26 Thread toniG
Thank you, i'll try to get a solution with ur help. Here is the client am am working at: jndiContext = new InitialContext(System.getProperties()); | connectionFactory = (TopicConnectionFactory) | jndiContext.lookup("javax.jms.TopicFactory"); | connection = connectionFactory.cr

[JBoss-user] [Installation & Configuration] - port number on Jboss

2004-02-26 Thread calou20
Hi, I try to install Jboss but it does not work. I think it is because I already use the 8080 port for another application. Where can I change the port number on Jboss ? Sincerely, Carole View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823082#3823082 Reply

[JBoss-user] [Performance Tuning] - Re: Lazy-loading on a single field

2004-02-26 Thread [EMAIL PROTECTED]
Anyone from JBOSS? We have the same problem, and I'm thinking I might split the table into two tables. One with the meta data and the other with an ID and the binary field to get around this problem. thx.. donp View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p

[JBoss-user] [Performance Tuning] - Monitor EJB's and sizes so I can Tune them or find problems

2004-02-26 Thread twgerber
Our application uses some EJB's - stateful and stateless. I would like to be able to monitor how many EJB's are active as well as the memory size they are taking up - particularly the stateful session beans. This will help me decide which EJB"s I might need to look at for tuning purposes. Is t

[JBoss-user] [EJB/JBoss] - java.lang.NoSuchMethodError in stateful session bean

2004-02-26 Thread biebel1975
Hi, We have a big problem with the creation of an object in the ejbCreate method of our bean (yComboDataBean). We construct an object that makes a database connection (yServerCtx). This object is then used in methods of the bean as a way to access the database. Constructing the bean fails, becaus

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

2004-02-26 Thread sunose
I have familiarly question. My issue is:the LDAP autentication is ok.but when I uss response.sendRedirect("check/frame.js"); the login page displayed. it is seem the web container is not acknowledge the authentication. who can tell me what cause this?I have study three days. thanks in advance.

[JBoss-user] [Installation & Configuration] - How to use the -Ant Task!

2004-02-26 Thread murxx
Hey everybody! I'd like to be able to remote-deploy a war file to out jboss-server, which is running on a remote system. I already managed to do the through the jmx-console by first ftping the WAR over there and then telling the MainDeployer to deploy "file:/name". Now I found this nice little

[JBoss-user] [Beginners Corner] - Persistent JNDI?

2004-02-26 Thread crosenbury
I have a requirement to integrate an application running on JBoss with an application running on a .NET platform. Most of the integration will be simple, but the security handshake between the two applications requires that I send an app-id and password. They did not use normal security certif

[JBoss-user] [Installation & Configuration] - Re: port number on Jboss

2004-02-26 Thread [EMAIL PROTECTED]
JBOSS_HOME/server//deploy/jbossweb-tomcat.sar/META-INF/jboss-service.xml View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823090#3823090 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823090 ---

[JBoss-user] [Datasource Configuration] - Re: CANNOT lookup on a datasource

2004-02-26 Thread moghrabi
Thank you for your response but how can I get a connection to my DBMS for simple objets using Jboss Connection Pool ? Is it possible ? In fact I have objets which use JDBC and I want to use the connection as defined in jboss/deploy. Xavier MOGHRABI View the original post : http://www.jboss.o

[JBoss-user] [EJB/JBoss] - ejb restriction

2004-02-26 Thread neutro
Hello all I have a question. It is (among other things) a restriction of EJB that you are not allowed to access the filesystem (to write, edit or delete files). I guess that's right?! So why can I delete a file? I set in standardjboss.xml to true and removed all entries from server.policy. But

[JBoss-user] [Datasource Configuration] - Re: CANNOT lookup on a datasource

2004-02-26 Thread [EMAIL PROTECTED]
Deploy a server side component, like a SLSB, that talks to your datasource. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823093#3823093 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823093

[JBoss-user] [EJB/JBoss] - Re: Why can not find DataSource by running java file in comm

2004-02-26 Thread moghrabi
Hello, I had the same problems because I used simple object and manage persistance via DAO over JDBC. I'd like to use the Datasource pool in order to use the same Connection as JBoss As datasources are not accessible outside Jboss, I can develop an EJB whose role is to distribute Connection t

[JBoss-user] [Installation & Configuration] - Re: Can't shutdown when running multiple instances

2004-02-26 Thread mmenz
Hi Dale, try this one: shutdown.sh --server=localhost:1099 --serverName=jboss.system:type=Server where 1099 is your jnp port (see your server.log) Matt View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823095#3823095 Reply to the post : http://www.jboss.org/ind

[JBoss-user] [EJB/JBoss] - Re: Why can not find DataSource by running java file in comm

2004-02-26 Thread [EMAIL PROTECTED]
Yes. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823096#3823096 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823096 --- SF.Net is sponsored by: Speed Start You

[JBoss-user] [Security & JAAS/JBoss] - Re: getting Custom Principal in EJBContext.getCallerPrincipa

2004-02-26 Thread Tang
I have also this problem and I checked my Subject was correctly filled. Is there a solution?? Or could you at least say me if it is not possible as I have been searching the solution for a while now. My commit method is like this: public boolean commit() throws LoginException { i

[JBoss-user] [EJB/JBoss] - Could not passivate

2004-02-26 Thread moghrabi
Hello, I've build an EJB session stateful which is linked to object that I've defined : Here's a illustration of my code : | public class MyEJBStateful implements SessionBean { | | public MyFirstClass object1; | public MySndClass object2; | | public void ejbCreate()

[JBoss-user] [Beginners Corner] - Questions Evaluating JBoss for Manufacturing

2004-02-26 Thread parisila
I have been looking at JBoss as an application server in our manufacturing area. We communicate with our manufacturing tools using an industry standard language and have java libraries to handle the low level communication. Our host applications consist of single client applications that talk

[JBoss-user] [Installation & Configuration] - Re: port number on Jboss

2004-02-26 Thread calou20
Thanks. I tried to change this port number and it seems not to be the only problem because Jboss still not work. When I try to connect Jboss, I have a lot of message. Is it normal ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823100#3823100 Reply to the p

[JBoss-user] [Beginners Corner] - Serving Static content

2004-02-26 Thread captrespect
I've figured out how to serve static content, like a ton of images, that you don't want to put into a war file. I've seen partial answers to this but noone really put it all together. So, here's what you do: --Create a directory on the server for the pictures or static content. --In this dire

[JBoss-user] [Datasource Configuration] - How to configure a data source

2004-02-26 Thread biondo79
Hi! IÂm getting started into JBoss and I would like to know how to configure a datasource. IÂm working with an Oracle db. Once I configure my datasource, is there necesary any aditional steps to deploy my JAR files? (Besides putting all my jar files into the deploy directory), best regards!! B

[JBoss-user] [Clustering/JBoss] - ::::::intercept dead instance of jboss :::::

2004-02-26 Thread nadaya
I want to intercept the dead instance of jboss in cluster... you have suggestions? Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823106#3823106 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823106 --

[JBoss-user] [Clustering/JBoss] - datasource config problem when using 2nd node in cluster

2004-02-26 Thread tom.baeyens
Hi, Continuing in the spirit of one of the previous posts : great job guys ! good docs too :-) Setup : I have one stateless session bean that uses hibernate to talk to the database. I want to try my app in the simplest possible cluster. So I took 2 nodes in the default partition cluster.

[JBoss-user] [Persistence & CMP/JBoss] - Re: jboss support EJB QL??

2004-02-26 Thread erik777
anonymous wrote : if the field type is TDateTime (in DataBase) ,how can i map it to JBOSS? to String type or to java.sql.Date ? or to java.sql.Timestamp?? I use MySQL, and the defaults work. I also have instance in jbosscmp-jdbc where I have the following, which may be the same as the default:

[JBoss-user] [JBoss Getting Started Documentation] - JBossJ2EE.pdf is aparently corrupted

2004-02-26 Thread johnreynolds
I attempted to download the getting started pdf, both from my home machine and from my work, and apparently the file is corrupted. I am using the link on the page: http://jboss.org/docs/index View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823109#3823109 Re

[JBoss-user] [Clustering/JBoss] - Re: datasource config problem when using 2nd node in cluster

2004-02-26 Thread glyn_walters
Could it be something as simple as your machineA address? What happens if you use the same address instead of localhost in the node A config? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823110#3823110 Reply to the post : http://www.jboss.org/index.html?mo

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Standard taglib with jboss 3.2.3, tomcat 5

2004-02-26 Thread remm
Get jboss-3.2 with Branch_3_2. The fix works for me. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823112#3823112 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823112

[JBoss-user] [Persistence & CMP/JBoss] - find queries read in PKs for the complete resultset

2004-02-26 Thread wtff
hello, my problem is that I got a table with 50 records in it and a CMP EJB which has a find method. The JBossCMP doc describes in detail all options for read-ahead, fetch-size, eager-and lazy load groups and all that. However, all these optimizations seem to apply only to the loading of in

[JBoss-user] [JBoss Getting Started Documentation] - Re: JBossJ2EE.pdf is aparently corrupted

2004-02-26 Thread [EMAIL PROTECTED]
It is not corrupted. What version of Acrobat Reader are you using? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823114#3823114 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823114 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: During startup server tries to load all messages in a JM

2004-02-26 Thread Amresh
Adrian thanks for your reply. It would be good to know your ideas on this. If possible I would like try adding this feature myself. When you say sybase config to you mean the sybase-jdbc2-service.xml. If yes here it is: | | | | | | | | | | | |

[JBoss-user] [Persistence & CMP/JBoss] - how to switch off referencial integrity within CMRs?

2004-02-26 Thread wtff
Hello, I created two CMP beans which have a relationship between them realized via a relation table. The database tables have existed before and the beans only need to be read only. My problem is: The relation table sometimes contains PK-references that do not exist in the entity tables, so th

[JBoss-user] [Datasource Configuration] - Re: How to configure a data source

2004-02-26 Thread [EMAIL PROTECTED]
See docs/examples/jca for examples. Drop the *-ds.xml file to your deploy directory and configure your applications to use the datasource JNDI lookup name. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823116#3823116 Reply to the post : http://www.jboss.or

[JBoss-user] [Installation & Configuration] - Re: Can't shutdown when running multiple instances

2004-02-26 Thread dbronk
Different exception so I guess we are making progress. I entered: C:\jboss-3.2.3\bin\shutdown.bat --server=localhost:1199 --serverName=jboss.system:type=Server (1199 is the naming port for this server) and received Exception in thread "main" javax.management.MalformedObjectNameException: malfo

[JBoss-user] Two conflicting Turbine web applications in JBoss 3.2.3 , is it a new bug?

2004-02-26 Thread Valerij Timofeev
Hi, our two web Turbine 2.3 applications are running fine in JBoss 3.2.1. In JBoss 3.2.3 (jboss-3.2.3 &tomcat-4.1.29) web application that has been deployed first functions properly. The second one not. These two applications has the same set of jar files under WEB-INF/lib. Attached you will

[JBoss-user] [Management, JMX/JBoss] - Re: I can't get to JMX to start invoking methods... (I need

2004-02-26 Thread RickHigh1
Thank you. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823120#3823120 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823120 --- SF.Net is sponsored by: Speed Star

[JBoss-user] [EJB/JBoss] - Re: Could not passivate

2004-02-26 Thread [EMAIL PROTECTED]
Does com.sylob.cochise.ventes.Business.CtrlCompleme nterCommande implement java.io.Serializable interface? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823119#3823119 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=382

[JBoss-user] [Messaging, JMS & JBossMQ] - OutOfMemoryError

2004-02-26 Thread Jochen
Hi! We have a problem with the following scenario: when the client has sent a message to the server, he gets a message in response. We have the problem that when the client sends a lot of messages in a very short period of time and in consequence the server vice versa, the server throws the fol

[JBoss-user] [Connectors and JCA/JBoss] - Re: Serversockets

2004-02-26 Thread karimrg
hi in my litlle knowledge, this kind of task needs to be implemented using mbeans. I have a scenary like that but with plain c clients. I found my way with jboss.net (web services) with soap at the clients. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823

[JBoss-user] [HTTPD, Servlets & JSP] - In "vanilla" JBoss 3.2.3, error-page in web.xml not recogniz

2004-02-26 Thread [EMAIL PROTECTED]
I have an application that works fine on one JBoss system, but on another, an error page specified in the web.xml for a particular exception doesn't work. (The error-page directive in general isn't doing anything.) Everything else in the application seems to work fine. The location element DOES

[JBoss-user] [Messaging, JMS & JBossMQ] - JBoss overrides user specified in createQueueConnection

2004-02-26 Thread posselt
Hi y'all, This concerns JBoss-3.2.3RC1 (should be the same in 3.2.3 final since the code didn't change) I wanted to remove my "guest" user and ran into an exception saying that "User: guest is NOT authenticated". The problem ist that I do NOT use user quest. I traced the JBoss code and found the

Re: [JBoss-user] [Messaging, JMS & JBossMQ] - OutOfMemoryError

2004-02-26 Thread rsequeira
I'm just speaking out loud here, but isn't that the objective of JMS - to do asynchronous message processing. I don't know if the speed matters in asynchronous processing. Ofcourse you don't want the response to take ages. OutOfMemory errors sometimes show up when the java vm runs low on memory. W

[JBoss-user] [Beginners Corner] - HELP! Can't configure CMT in JBoss 3.2.3

2004-02-26 Thread nerotnt
Don't know where to look anymore. I have a Session Bean with the following ejb-jar.xml: | | http://java.sun.com/dtd/ejb-jar_2_0.dtd";> | | | | |Generated by XDoclet | | | | | | | | MpBean | | pt.ejb.Mp

[JBoss-user] [EJB/JBoss] - java.sql.SQLException: Communication link failure.(Connectio

2004-02-26 Thread arhu
Hi My problem is i created an Entity Bean, that insert records in As/400 DB2 Database, i deployed this EJB and the deploy is OK, sometimes i execute my application the findAll() method and i obtain the results from the table of my database. But another times i execute my application, and i obt

[JBoss-user] [Installation & Configuration] - SSL Keystore Configuration

2004-02-26 Thread cam156
Hello, I am trying to configure SSL in my JBoss Server. I am running with version 3.2.2 I have modified my jboss-service.xml file in default/conf to have the following mbeans for security: | | | | org.jboss.security.plugins.JaasSecurityDomain | |

[JBoss-user] [Persistence & CMP/JBoss] - HELP! Can't configure CMT in JBoss 3.2.3

2004-02-26 Thread nerotnt
Don't know where to look anymore. I have a Session Bean with the following ejb-jar.xml: | | http://java.sun.com/dtd/ejb-jar_2_0.dtd";> | | | | |Generated by XDoclet | | | | | | | | MpBean | | pt.ejb.Mp

[JBoss-user] [Installation & Configuration] - Nested deployment

2004-02-26 Thread jacklyn
When I run my server, in the console I get a part that is like this: [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/all/deploy/jboss-net.sar/ | 12:44:27,335 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/all/deploy/jboss-net.sar/axis.jar | 12:44

[JBoss-user] [Persistence & CMP/JBoss] - SapDB autoincrement PK

2004-02-26 Thread dsturze
How do I setup the SapDB for an autoincrement PK for my CMP/Entitybean? I have a: - JBoss 3.2.3 - EntityBean with PK (java.lang.Long id) - SAPDB 7.4 My setup creates the table, but without the needed sequence. jbosscmp-jdbc.xml is configured for autoincement and does not touch the field, thus my

[JBoss-user] [Management, JMX/JBoss] - Re: I can't get to JMX to start invoking methods... (I need

2004-02-26 Thread RickHigh1
Juha, That worked like a charm. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823132#3823132 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823132 --- SF.N

[JBoss-user] [Management, JMX/JBoss] - Re: SnmpAgent startup sequence

2004-02-26 Thread dimitris
Hi again, I think you need to specify the actual value of the IMPORTSERVICE_REGISTRATION_NOTIFICATION constant both in your managers.xml and notifications.xml e.g. the-mbean-name the-actual-notification-type another-actual-notification-type ... ... the-actual-noti

[JBoss-user] [Security & JAAS/JBoss] - Solution! Re: JBoss SX seems to cache user/roles

2004-02-26 Thread RickHigh1
Thanks for all your help. I was able to clear the cache. Here is the code that does the trick. It took a bit of doing. There was sample code online but it was with an older version of JBoss so it did not quite work. The Director of Training for JBoss Europe sent me the final missing piece. Her

[JBoss-user] [EJB/JBoss] - Re: Could not passivate

2004-02-26 Thread moghrabi
NO When this class implements Serializable, it works thank you ! Xavier MOGHRABI View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823136#3823136 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823136 --

[JBoss-user] [Datasource Configuration] - Re: How to configure a data source

2004-02-26 Thread biondo79
docs/examples/jca ? where is that? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823137#3823137 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823137 --- SF.Net is

[JBoss-user] [Persistence & CMP/JBoss] - Re: HELP! Can't configure CMT in JBoss 3.2.3

2004-02-26 Thread wtff
I don't understand how the deployment descriptor you posted relates to your CMP problem. If you want to use CMP (container managed persistence) then you have to write an entity bean, not a session bean. An entity bean needs to have its ejb-jar.xml descriptor and can have two further jboss des

[JBoss-user] [Persistence & CMP/JBoss] - Re: HELP! Can't configure CMT in JBoss 3.2.3

2004-02-26 Thread nerotnt
"wtff" wrote : I don't understand how the deployment descriptor you posted relates to your CMP problem... I mean CMT (Container Managed Transaction), not CMP. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823139#3823139 Reply to the post : http://www.jboss

[JBoss-user] [Security & JAAS/JBoss] - specify truststore

2004-02-26 Thread jccampot
Hi: I am using jboss-3.2.1_tomcat-4.1.24, and i have configured it to use ssl. It works fine but when i active the clinet authentication (clientAuth="true") it stop working. I think is because i havent configured the server truestore. Any idea where to do this? thanks in advance View the orig

[JBoss-user] [Management, JMX/JBoss] - does a .war have to be registered somewhere?

2004-02-26 Thread rsie
Could someone tell me why my .war (below): http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";> bostonbred MyBostonBredApplication 60 welcome.html I was having many problems so i reduced everything to just some POJOs and the simple .

[JBoss-user] [EJB/JBoss] - Re: java.sql.SQLException: Communication link failure.(Conne

2004-02-26 Thread pilhuhn
Fix the db/2. The connection reset indicates that the db dropped your connection. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823142#3823142 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823142 ---

[JBoss-user] [Installation & Configuration] - Re: Installation and Configuration

2004-02-26 Thread dinesh.nair
I get the same problem except that the javac errors do not get displayed. It's a new installation from a download I did today from the JBoss site. It was JBoss-3.2.3. I've run the server using the run script. I then tried to connect to http://localhost:8080/jmx-console. This is what produced t

[JBoss-user] [Persistence & CMP/JBoss] - CMR with foreign key as part of primary key : OK with 3.2.1,

2004-02-26 Thread nicolas
Hello all We are currently developping an EJB/Web-App which uses CMP 2.0 and IBM DB2. We have been trying to upgrade from JBoss 3.2.1 to 3.2.3 and hereby experienced the following problem: There is a unidirectional one-to-many CMR between Bean1 and Bean2. The foreign key in Bean2 (p_nr) is par

RE: [JBoss-user] [Datasource Configuration] - Re: How to configure a data source

2004-02-26 Thread Rod Macpherson
/jboss*/docs/examples/jca/oracle-ds.xml You put this in your launch configuration, e.g., /jboss*/server/default/deploy Example: __ datasource jdbc:oracle:thin:@host:1521:sid oracle.jdbc.driver.OracleDriver name password org.jboss.r

[JBoss-user] [Installation & Configuration] - Re: Jboss performance

2004-02-26 Thread twutort
I updated my JBoss version to 3.2.3. I also implemented most of the changes on the link from Bill Burke. It seems to be a little faster by not by much. Is there any suggestions you having for speeding up JDBC calls outside of beans? I added the to my datasource and set it to 100. JDBC cal

[JBoss-user] [Security & JAAS/JBoss] - The users of the Role

2004-02-26 Thread tholedobr
Hi Do I need to create any user and put it in my Role Securities, like the RI??? In my stand alone aplication I defined my role and the method permissions but all applications keep using the bean. is there a way to create users in JBoss? View the original post : http://www.jboss.org/index.

[JBoss-user] [Datasource Configuration] - Re: How to configure a data source

2004-02-26 Thread pilhuhn
Did you ever look at your jboss directory structure? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823148#3823148 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823148

[JBoss-user] [EJB/JBoss] - Warnings with mySql - XA

2004-02-26 Thread luigifonti
I have developed my first, simple, Bean managed Entity bean. I am using Jboss-3.0.4 and mySql-3.2 Everyting works, but every time I access the database using the bean, i get some warnings, like: 1) javax.transaction.xa.XAException: wrong id in commit: expeced: null, got: XidImpl 2) javax.tr

[JBoss-user] [Security & JAAS/JBoss] - Re: The users of the Role

2004-02-26 Thread [EMAIL PROTECTED]
Check the documentation. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823150#3823150 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823150 --- SF.Net is sponsored

[JBoss-user] [Beginners Corner] - deploying war and ear separately

2004-02-26 Thread moraleslos
Hi, I've encountered a problem where I must deploy, separately, an ear containing all the EJBs and a war containing the WEBAPP. When I launch JBoss, I get this message: deployer: [EMAIL PROTECTED] status: Deployment FAILED reason: Error during deploy; - nest

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Standard taglib with jboss 3.2.3, tomcat 5

2004-02-26 Thread ahardy66
This is the one that compiles into jboss-3.2.4RC1? Adam View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823152#3823152 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823152 ---

[JBoss-user] [Clustering/JBoss] - Re: datasource config problem when using 2nd node in cluster

2004-02-26 Thread tom.baeyens
That worked ! Thanks, I owe you one :-) As a reward, you may use our software for free ! http://jbpm.org :-)) Regards, Tom. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823153#3823153 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Persistence & CMP/JBoss] - Application Deadlock + jboss 3.2.3

2004-02-26 Thread hormati
Hi all, I'm using jboss 3.2.3, I have entity beans and session bean as facade. I set read-only = true for all of my get methods in jboss.xml: get* false ... so I should not get deadlock when i'm reading database. but when i call readXXX [also read only method] method on session

[JBoss-user] [EJB/JBoss] - Deployment problem for two ejb that share the same code

2004-02-26 Thread maksymg
Hi All, I have an ejb1.jar module that by simplicity has a EJBHomeFactory session bean that caches references to other bean homes. The module by itself works fine. But I need to include two such modules (driving and driven) in the same application (I have two similar database schema with refere

[JBoss-user] [Beginners Corner] - Tutorial on J2EE using JBOSS, Eclipse and Lomboz.

2004-02-26 Thread poqonos
Hello, I am trying to follow the tutorial (Tutorial on J2EE using JBOSS, Eclipse and Lomboz), getting the follwoing error, chapter 3 example. I followed every all the steps as described in the tutorial. Table not found: STOREACCESS in statement [select userid from storeaccess where usernam

[JBoss-user] [Security & JAAS/JBoss] - Re: specify truststore

2004-02-26 Thread jccampot
In an other post i read that i have to modify de run.conf JAVA_OPTS="-Djavax.net.ssl.trustStore=C:\trustStore -Djavax.net.ssl.trustStorePassword=changeit" bit it still not work. do i have to do something else? recompile? thanks View the original post : http://www.jboss.org/index.html?modu

[JBoss-user] [Messaging, JMS & JBossMQ] - JMS QueueBrowser showing no entries

2004-02-26 Thread MGruener
When I create a QueueBrowser from a valid QueueSession and Queue. I never see any entries. When I debug the QueueSession it also has an empty messages linked list. Also, queueSender.setPriorty(x) has no affect. Has anyone else seen this? Is there a configuration setting I might be missing.

Re: [JBoss-user] [Persistence & CMP/JBoss] - Application Deadlock + jboss 3.2.3

2004-02-26 Thread BAO RuiXian
hormati wrote: Hi all, I'm using jboss 3.2.3, I have entity beans and session bean as facade. I set read-only = true for all of my get methods in jboss.xml: get* false Naturally, should true solve your problem? Best Bao ... so I should not get deadlock when i'm reading data

[JBoss-user] [Connectors and JCA/JBoss] - Re: Howto encrypt connection factory passwords

2004-02-26 Thread john01279
What would be the change required in hsqldb.xml to include JAAS authentication? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823161#3823161 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823161 -

[JBoss-user] [Security & JAAS/JBoss] - authentication from MDB

2004-02-26 Thread etrxndy
I have a message driven bean that I want to call a session bean from. The problem is I don't know how to authenticate the user because the session bean is protected by JAAS. The message driven bean is called by a different session bean, which is authenticated. So, is it possible to pass a princi

[JBoss-user] [Installation & Configuration] - Can't use external libraries. Jboss3.2.3 - classes12.jar

2004-02-26 Thread brickpaul
Urgent: I'm using JbuilderX Enterprise with Jboss3.2.3 When I try to import library classes12.jar for XADatasources through Jbuilder I get the following error: 21:21:51,493 ERROR [Engine] SingleSignOnContextConfig[/WebModule1] Exception processing JAR at resource path /WEB-INF/lib/classes12.j

[JBoss-user] [HTTPD, Servlets & JSP] - Trouble importing library in JbuilderX for servlet.

2004-02-26 Thread brickpaul
Urgent: I'm using JbuilderX Enterprise with Jboss3.2.3 When I try to import library classes12.jar for XADatasources through Jbuilder I get the following error: 21:21:51,493 ERROR [Engine] SingleSignOnContextConfig[/WebModule1] Exception processing JAR at resource path /WEB-INF/lib/classes12.

[JBoss-user] [Persistence & CMP/JBoss] - Application Deadlock + jboss 3.2.3 [continue]

2004-02-26 Thread hormati
sorry I mean true that was a mistake in my last post, can u please answer me ? Amir Hossein Hormati View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823167#3823167 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823167

[JBoss-user] [Datasource Configuration] - Help needed with importing classes12.jar for oracle using Jb

2004-02-26 Thread brickpaul
Urgent: I'm using JbuilderX Enterprise with Jboss3.2.3 When I try to import library classes12.jar for XADatasources through Jbuilder I get the following error: 21:21:51,493 ERROR [Engine] SingleSignOnContextConfig[/WebModule1] Exception processing JAR at resource path /WEB-INF/lib/classes12.

[JBoss-user] [Security & JAAS/JBoss] - Re:

2004-02-26 Thread Martin0
Eric, That's sounds interesting - can you elaborate? Thanks Martin View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823171#3823171 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823171 ---

[JBoss-user] [Installation & Configuration] - Separate ear/war deployment

2004-02-26 Thread moraleslos
Hi, I've encountered a problem where I must deploy, separately, an ear containing all the EJBs and a war containing the WEBAPP. When I launch JBoss, I get this message: deployer: [EMAIL PROTECTED] status: Deployment FAILED reason: Error during deploy; - nested th

RE: [JBoss-user] [HTTPD, Servlets & JSP] - Trouble importing library in JbuilderX for servlet.

2004-02-26 Thread Rod Macpherson
To get you going you could toss classes12.jar in your /jboss*/server/some-config/lib directory and leave it out of your webapp. OT: Have you considered using Ant in combination with Eclipse? Problems tend to be more transparent and remedies instantaneous. There is also the side benefit of not hav

[JBoss-user] [Installation & Configuration] - Re: Separate ear/war deployment

2004-02-26 Thread Dark_Lord
You should use ejb-external-ref if the EJBs you are using is not in the same deployment unit. Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823173#3823173 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS QueueBrowser showing no entries

2004-02-26 Thread Dark_Lord
Well, what about the fact the queue is empty every time you're browsing it? Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823174#3823174 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823174 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: OutOfMemoryError

2004-02-26 Thread Dark_Lord
Are you creating a new session every time you're sending a message? Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823175#3823175 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823175 -

  1   2   >