[JBoss-user] [Messaging, JMS & JBossMQ] - ConnectionConsumer feature

2004-04-21 Thread joany
Hi, Our JMS does not support ASF ( chapter 8 SUN spec). According to my understading, we need to have the three interfaces: * ServerSession * ServerSessionPool * ConnectionConsumer The Application Server vendor has to implement these interfaces. Please correct me if I am wrong. Can you please th

[JBoss-user] [EJB/JBoss] - Strange [verifier] EJB spec violation problem

2004-04-21 Thread willievu
org.jboss.ejb.EJBDeployer sometimes failed to deploy my ear. I said sometimes because the ear works the first when server configuration directory is constructed from scratch. If I stop and restart jboss, org.jboss.ejb.EJBDeployer may complain that one of the ejb impls in the ear does not match

[JBoss-user] [Beginners Corner] - Unable to access MySQL datasource

2004-04-21 Thread offline
Alright, I'm going to admit right off that i am *learning* J2EE programming, and i am currently at a very elementary stage of it. So, if answering questions that seem really obvious to you isn't your bag, i'd stop reading about... now. On to the question(s?): I'm trying to go through the IBM De

[JBoss-user] [Installation & Configuration] - JBoss hosting environment suggestions (CPanel/Plesk/Ensim/Ot

2004-04-21 Thread sblaes
I'm getting ready to rent a dedicated server, and would like to run JBoss on it. However, they give me the option of using straight Redhat Enterprise, CPanel, Plesk or Ensim. I'm not sure which to choose. The straight Redhat install is most appealing I think, because I don't have to be concer

[JBoss-user] Attempt to get lock ref with a null object

2004-04-21 Thread Vamsi Sarma
Hi sesques, Thanks for ur interest on me. Here i am posting I  have created a simple cmp , with 3 fields empId, empFirstname,empLastName. Here empId is primary key with autoincrement. When i enter Emp first name, last name using the create method my cmp is working fine and i am able to create

[JBoss-user] [Persistence & CMP/JBoss] - Re: Attempt to get lock ref with a null object

2004-04-21 Thread vamsi27E1508
Hi sesques Thanks for ur interest on me. Here i am posting I have created a simple cmp , with 3 fields empId, empFirstname,empLastName. Here empId is primary key with autoincrement. When i enter Emp first name, last name using the create method my cmp is working fine and i am able to create new

[JBoss-user] [EJB/JBoss] - Re: access jboss appserver using public dial up connection/i

2004-04-21 Thread latif
I tried with out any firewall in my server. Even though its not working !! Latif View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831846#3831846 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831846 ---

[JBoss-user] [HTTPD, Servlets & JSP] - Re: How to config servlet in jboss-3.2.3/Eclipse3.0/Lomboz/J

2004-04-21 Thread JonathanYZQ
Ronny , I'm try to find the solution. But I cann't find it at present. Regards, JonathanYZQ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831845#3831845 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831845 --

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

2004-04-21 Thread spiritualmechanic
I think you could create an MBean to keep a list of each user and how many tries they've done. Then increment the amount on a login attempt. Check the MBean each time the user tries to log in. Keep the timestamp of the initial and/or final try and compare. Set the MBean on a timer and purge whe

[JBoss-user] [Management, JMX/JBoss] - JMX Spine

2004-04-21 Thread spiritualmechanic
I'm trying to configure an MBeanServerFactory, creating a new ServerImpl and setting the properties, then calling init and start. Init goes fine, but on start I get: ClassNotFoundException: No ClassLoaders found for: org.jboss.naming.NamingService Is there a jar I'm missing? I think I have the b

[JBoss-user] [HTTPD, Servlets & JSP] - Re: jsp syntax question

2004-04-21 Thread kosulin
Put the results to the HttpSession attribute. Vlad P.S. Using dynamic SQL statements in web applications is very dangerous. Just assume that a Principal.getName() return a String like "'; ALTER TABLE public.tblloginname; bla-bl-bla". You should use parameterized PreparedStatement instead of Sta

[JBoss-user] [Management, JMX/JBoss] - note on instrumenting a NotificationBroadcaster as an XMBean

2004-04-21 Thread brettcalvin
Just thought I'd share something I'd discovered: If you have a class that implements the NotificationBroadcaster interface (sends JMX notifications) and you instrument it as a ModelMBean using the XMBean approach (by providing an XML description of the MBean interface), you must have a public me

[JBoss-user] [Installation & Configuration] - Re: Problems deploying a EAR file

2004-04-21 Thread scttu
I try to include the ojb.jar as "java" element in the application.xml, still the same problem. 2004-04-22 09:15:39,538 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/G:/jboss/jboss-3.2.3-n/server/default/deploy/eplyPortal.ear 2004-04-22 09:15:39,538 INFO [org.j

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Why are the session objects lost?

2004-04-21 Thread mrgarageman
What is the scope of the bean on the 2nd jsp? page or session? or try using response.sendRedirect(url) instead of using . View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831838#3831838 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&m

[JBoss-user] [Installation & Configuration] - Re: Problems deploying a EAR file

2004-04-21 Thread scttu
So simply you means i define a ojb.jar and i can reference all the classes in the ojb.jar from any of my class in the ear. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831839#3831839 Reply to the post : http://www.jboss.org/index.html?module=bb&op=p

Re: [JBoss-user] [HTTPD, Servlets & JSP] - jsp syntax question

2004-04-21 Thread Vladyslav Kosulin
LORDs_diakonos wrote: I hava a page with the code below <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> | | <%@ taglib uri="http://java.sun.com/jstl/fmt"; prefix="fmt" %> | | <%@ taglib uri="http://java.sun.com/jstl/sql"; prefix="sql" %> | | <%@ taglib uri="http://java

[JBoss-user] [HTTPD, Servlets & JSP] - Re: How to create a UserTransaction in a JSP running on a se

2004-04-21 Thread mrgarageman
InitialContext initial = new InitialContext(); UserTransaction transaction = (UserTransaction) initial.lookup("java:comp/UserTransaction"); YourSessionAhome homeA = (YourSessionAHome) javax.rmi.PortableRemoteObject.narrow(initial.lookup("java:comp/env/ejb/SampleA"), YourSessionAHome.class); You

[JBoss-user] [Nukes User] - Re: existing sample sites & templating

2004-04-21 Thread nickf
hxp, Thanks for your response. You made some good points - I guess the main issue is to secure what I want from Nukes by being active in achieving it, within the current code-base. I didn't want to invest time in Nukes if was going to keep TPL as its preferred templating system ...

[JBoss-user] [Nukes User] - Re: 500 Error No Context configured to process this request

2004-04-21 Thread slewsys
When I build and install Nukes as per , I see this problem under OS X 10.3. For me, the solution is to unjar the nukes.ear as follows: $ cd $JBOSS_HOME/server/default/deploy $ jar xf nukes.ear $ $JBOSS_HOME/bin/shutdown.sh -S ... $ $JBO

[JBoss-user] [Installation & Configuration] - Preservation of client state across redeployments

2004-04-21 Thread pantani
ciao is there a way for JBoss to preserve the client state of a running application (Web HttpSession and stateful session EJB fields) when it's application archive is redeployed? ciao View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831830#3831830 Repl

[JBoss-user] [Installation & Configuration] - Error Initializing Coyote HTTP/1.1 on port 8080

2004-04-21 Thread natgross
JBoss version 3.23 comes up fine and I can run basic test servlets, but I have the following error in the console/log (JBoss ide on Windows xp): INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on port 8080 19:40:08,531 INFO [Engine] CoyoteConnector Coyote can't register jmx for protocol 19:4

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

2004-04-21 Thread genman
For purposes of showing up on a search, here is the trace I get: Caused by: org.jboss.mq.SpyJMSException: Could not crate tx: 97107; - nested throwable: (java.sql.SQLException: Violation of unique index: SYS_PK_JMS_TRANSACTIONS in statement [INSERT INTO JMS_TRANSACTIONS (TXID) values(97107)])

[JBoss-user] [HTTPD, Servlets & JSP] - Re: what url caused '404' ?

2004-04-21 Thread mrgarageman
error 404 means file not found. it indicates bad link or you mistyped URL or something similar. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831827#3831827 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831827

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

2004-04-21 Thread genman
Adrian, there is a real bug in jdbc2/PersistenceManager which you avoided in your jdbc3 PM, with respect to incrementing long values. I'm checking a fix for 3.2 branch. isotope1145, if you use org.jboss.mq.pm.jdbc3.PersistenceManager (in 3.2.4RC) your problem should go away. View the origina

[JBoss-user] [Persistence & CMP/JBoss] - IllegalStateException Help!

2004-04-21 Thread bakerma
I'm getting the dreaded java.lang.IllegalStateException: A CMR collection may only be used within the transction in which it was created I've tried using user transactions, making the transaction required in the bean, nothing seems to work. I'm running 3.0.8. Anyone have an ideas? I'm really s

[JBoss-user] [HTTPD, Servlets & JSP] - jsp syntax question

2004-04-21 Thread LORDs_diakonos
I hava a page with the code below <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> | | <%@ taglib uri="http://java.sun.com/jstl/fmt"; prefix="fmt" %> | | <%@ taglib uri="http://java.sun.com/jstl/sql"; prefix="sql" %> | | <%@ taglib uri="http://java.sun.com/jstl/xml"; pr

[JBoss-user] [Persistence & CMP/JBoss] - Re: FROM not found

2004-04-21 Thread mafew
I seem to have the same problem... I've got through all of your suggestion but to no avail. I am using EJB-QLs in the ejb-jar.xml as opposed to JBOSS-QLs in the jbosscmp-jdbc.xml. Could any one else suggest a solution? View the original post : http://www.jboss.org/index.html?module=bb&op=view

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

2004-04-21 Thread erik777
I was thinking request, but typed response. Don't know how I found it in 1.4 but not in 1.3. :) http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal() View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831819

[JBoss-user] [HTTPD, Servlets & JSP] - Re: jboss323 tomcat5 directory listing false, I still see di

2004-04-21 Thread pilania
Can u tell me how u integrated tomcat5 with jboss3.2.3. I tried to copy tomcat5.0.sar from Jboss3.2.4RC1 and server startup gave some exception View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831818#3831818 Reply to the post : http://www.jboss.org/index.html?

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

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

[JBoss-user] [HTTPD, Servlets & JSP] - Integrating jboss3.2.3 with tomcat5

2004-04-21 Thread pilania
I copied jbossweb-tomcat50.sar from jboss3.2.4rc1 and tried to start the server and got this error. Any help setting it up will be appreciated. 7:11:40,227 ERROR [org.jboss.mx.server.registry.BasicMBeanRegistry] Unexpected Exception: java.lang.NoClassDefFoundError: org/jboss/web/AbstractWebDepl

[JBoss-user] [Nukes User] - Re: LDAP Login

2004-04-21 Thread cooper
for now we are working on releasing 1.1 and preparing 2.0. We may want to use interfaces for user allowing puggability of user. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831815#3831815 Reply to the post : http://www.jboss.org/index.html?module=bb&op=pos

[JBoss-user] Attempt to get lock ref with a null object

2004-04-21 Thread Vamsi Sarma
Hi I have created a simple cmp , with 3 fields empId, empFirstname,empLastName. Here empId is primary key with autoincrement. When i enter Emp first name, last name using the create method,my cmp is working fine and i am able to create new row with autoincrement. When i call setEmpFirstName() or

[JBoss-user] [JCA/JBoss] - Re: XAER_RMERR Error

2004-04-21 Thread [EMAIL PROTECTED]
conf/jboss-service.xml Set the XID to be pad=true View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831748#3831748 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831748 --

[JBoss-user] [Security & JAAS/JBoss] - Re: Getting login name in a jsp

2004-04-21 Thread erik777
IMHO, using JoshuaBranch AS is a better way. :) But, that's just my humble opinion. One note about your code, request.getUserPrincipal() can return null. You might want to use something like this: | <%! | private String getName(HttpServletRequest request) { | Principal user = reques

[JBoss-user] [Installation & Configuration] - Problem when starting JBOSS on Unix

2004-04-21 Thread cari34
hi guys, I have a problem when trying to start JBOSS on Unix. I have the following error : 14:30:30,992 ERROR [Server] Failed to start java.lang.RuntimeException: Unable to create the MBean server instance. Class org.jboss.mx.server.MBeanServerImpl has raised an exception in constructor: java.l

[JBoss-user] [Security & JAAS/JBoss] - Re: Getting login name in a jsp

2004-04-21 Thread LORDs_diakonos
OK I did get it working here is the code I used. I would like to know if there is a better way I can do this. I am trying to get the user name which I will be using to pull personalized data from a database which is the reason I need the username. I am trying to do the site mainly in jsp but I

[JBoss-user] [EJB/JBoss] - After redeployment jndi lookup gets ClassCastException

2004-04-21 Thread ithehorrible
I've got a mbean service that is a part of a sar package inside ear archive. The service simply calls a stateless session bean in 10 seconds interval. To start jboss 3.2.2 server with deployed package works fine. Problem comes after I recompile and redeploy updated ear file -- and keep gettin

[JBoss-user] [Beginners Corner] - Re: JBoss crashes when deploying hibernate project

2004-04-21 Thread darranl
SDK Version? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831742#3831742 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831742 --- This SF.Net email is sponsored b

[JBoss-user] UNSUBSRIBE

2004-04-21 Thread Boman Jonny
UNSUBSRIBE --- 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_

[JBoss-user] [Beginners Corner] - Re: Jaas Login module problem

2004-04-21 Thread leondavis
Sorry to seem like a pain, but has anyone had a chance to consider the problem that I have raised in the message above this one? I still have not solved my problem and would really apreciate some help. Many thanks, Leon View the original post : http://www.jboss.org/index.html?module=bb&op=vi

[JBoss-user] [HTTPD, Servlets & JSP] - Re: mod_jk2 version

2004-04-21 Thread meinholz
I'm using almost identicle systems, gentoo, apache 2.0.49 (built by hand with whatever mod_ssl comes bundled), mod_jk2 2.0.4. I am using jboss 3.2.3 though. I think the problem I'm having is a problem with mod_jk2 and not jboss. I am unable to get remoteUser from the HttpServletRequest. This is

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

2004-04-21 Thread leondavis
Sorry to seem like a pain, but has anyone had a chance to consider the problem that I have raised two messages above this one? I still have not solved my problem and would really apreciate some help. Many thanks, Leon View the original post : http://www.jboss.org/index.html?module=bb&op=viewto

[JBoss-user] [Beginners Corner] - Re: Jboss & Eclispe, debug will not start

2004-04-21 Thread [EMAIL PROTECTED]
Thanks, will do View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831738#3831738 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831738 --- This SF.Net email is sponsore

[JBoss-user] [Persistence & CMP/JBoss] - Using Oracle Sequence for CMP Entity Beans

2004-04-21 Thread soheil
Dear All, I have a table in oracle that its primary key is a sequence. I want to know how can I use it with my CMP ? And would you please write me how to write that fragment of jbosscmp-jdbc.xml to make jboss use this sequence? Thanx lot View the original post : http://www.jboss.org/index.ht

[JBoss-user] [EJB/JBoss] - Using Oracle Sequence for CMP Entity Beans

2004-04-21 Thread soheil
Dear All, I have a table in oracle that its primary key is a sequence. I want to know how can i use it for my CMP ? And would you please write me how to write that fragment of jbosscmp-jdbc.xml ? Thanx View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831735#383

[JBoss-user] [EJB/JBoss] - Re: *-service.xml files not being loaded when inside ear

2004-04-21 Thread gmccreath
Oh, I forgot to add, the ear is an expanded dir structure, not a single ear file. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831732#3831732 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831732 ---

[JBoss-user] [JBoss.NET & SOAP] - Stateless Session Beans vs Message Driven Beans

2004-04-21 Thread clajoie
Reading the for pay JBoss docs I see that, with a few XDoclet tags both Stateless Session Beans and Message Driven Beans can be exposed as a web service. So I just want to verify an assumption that I'm making. The session beans are meant to be used for RPC style web services and the message b

[JBoss-user] [EJB/JBoss] - *-service.xml files not being loaded when inside ear

2004-04-21 Thread gmccreath
Hi All, I have placed a number of -service.xml service files in the root directory of a ear file. I notice that the -service.xml files are not loaded when they are inside the ear. The services work fine when under the jboss deploy directory and not in the ear. The jboss documentation suggest

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMR throws 'can only be used in transaction in which it

2004-04-21 Thread ahardy66
OK, thanks again. Actually I think I'm jumping the gun a little in my disappointment that I couldn't set the transaction level as I wished. I shall have to stress test the app at some point anyway, so if I see performance problems down the line, then I know I can reprogram my methods to avoid

[JBoss-user] [Installation & Configuration] - Re: Problems deploying a EAR file

2004-04-21 Thread dannyyates
Firstly, don't put orb.jar in the lib directory, but it right at the top of the EAR. Then, change your manifest class path to just orb.jar A better approach (once you start having more JARs and complex dependencies between them) is simply to define modules in your application.xml View the origi

[JBoss-user] [JCA/JBoss] - Re: Specifying an Oracle database schema for CMP beans

2004-04-21 Thread jimbrady
For ORACLE 8 this is now: ALTER SESSION SET CURRENT_SCHEMA = whatever Note: NO QUOTES View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831720#3831720 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831720 ---

[JBoss-user] [HTTPD, Servlets & JSP] - Re: mod_jk2 version

2004-04-21 Thread Lviz
we use 4 Boxes with Apache/2.0.49 (Gentoo/Linux) mod_ssl/2.0.49 OpenSSL/0.9.7d mod_jk2/2.0.4 jboss-3.2.4RC2 from cvs behind 2 LVS loadbalancers. everything works as expected :) what kind of problems do you have ? cheers L View the original post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [Nukes User] - Re: existing sample sites & templating

2004-04-21 Thread hxp
Nick -- You want a roadmap, but the culture here doesn't quite work that way. If you want to see a particular thing happen, the best way to ensure that it does is contribute so that the project moves in that direction. So far, the core contributors are guys who feel that working code is much m

[JBoss-user] [EJB/JBoss] - Re: EJB in JBoss Application Server

2004-04-21 Thread sesques
The error is explicit, my friend. Perhaps: - You are using a tool which uses Null Deployement feature and you deploy again your application - You have two (or many applications) using the same EJB's (or with the same EJB's name on packaging) deployed at the same time. View the original post :

[JBoss-user] [Installation & Configuration] - Problems deploying a EAR file

2004-04-21 Thread scttu
I am trying to deploy an ear file with the following structure, but failed. The ejb will uses classes in /lib/ojb.jar but failed. From the stack trace as shown below, it seems like the classes in ejb.jar was not able to load classes in /lib/ojb.jar. I m using Jboss 3.2.3. Can someone please hel

[JBoss-user] [EJB/JBoss] - EJB in JBoss Application Server

2004-04-21 Thread Uprasad
Hi, i am a new-bie to JBoss Application server. Right now i am using JBoss 3.0.4 version. Here i am trying to deploy my simple ejb jar file. it gives me an error Deployment FAILED reason: Duplicate definition of an EJB with name 'Hi'. Pls any one of you help me in sorting out this problem. Rega

[JBoss-user] [Installation & Configuration] - setting up HA-JNDI on jboss 3.2.2

2004-04-21 Thread coco
Hi, I want to configure jboss 3.2.2(cluster) to use the HA-JNDI service but I find no information. Someone knows how to do it or if it exists a documentation about it. Thanks a lot. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831711#3831711 Reply to the

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMR throws 'can only be used in transaction in which it

2004-04-21 Thread sesques
Yes, it is defined to set accessors. In the 2.1 spec (I only have this one under my hand), this is this paragraph: anonymous wrote : | 10.3.6.2 Use of Set Accessor Methods to Update Relationships | I don't try the readonly feature on beans. Perhaps you can. But the container is not aware o

[JBoss-user] [Nukes User] - Re: Getting started -- updated documentation on wiki

2004-04-21 Thread hxp
Also, I've reorganized the main Nukes wiki page, to make it much easier for newcomers to find what they need. The general sequence of topics goes from getting-started type topics, to the advanced user topics, to the getting into development topics, to the more advanced development topics. This

[JBoss-user] [Nukes User] - Getting started -- updated documentation on wiki

2004-04-21 Thread hxp
Hi folks -- If you are new to Nukes, you'll find the latest documentation on how to get started at the following wiki page: http://jboss.org/wiki/Wiki.jsp?page=InstallUninstallUpgrade This is freshly-updated, step-by-step assistance on how to get up and running with Nukes on JBoss. For those

[JBoss-user] [Beginners Corner] - Re: no context error

2004-04-21 Thread sesques
Have a look to the Tutorial example. It's the first step View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831706#3831706 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831706 ---

[JBoss-user] [EJB/JBoss] - Re: access jboss appserver using public dial up connection/i

2004-04-21 Thread sesques
I don't understand why you post your problem here. Your problem is a network one and quite classic when talking about distributed applications. If your servers are separated by the public network (Internet), you certainly have security policy and equipments (firewall for example). The protocols

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMR throws 'can only be used in transaction in which it

2004-04-21 Thread ahardy66
Thank you for replying, sesques Actually this is in a Session bean and I'm getting the local home for the bean I want and then calling its getChildren method. I don't need a transaction in this case and transactions will slow the performance down, surely? Are you absolutely sure about it bei

[JBoss-user] [Persistence & CMP/JBoss] - Re: org.jboss.tm.JBossRollbackException

2004-04-21 Thread sesques
Post your code snippet. Do you call the EJB from another EJB, a servlet ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831703#3831703 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831703 --

[JBoss-user] [EJB/JBoss] - Re: using DLL in Jboss

2004-04-21 Thread hanswurst33
Basicly you got 3 choices to include a DLL: 1. You can but it in a container specific directory of the server. (Search the forum, I know it's there) And post the Link here, please. 2. Use a JMS call to get out of the server and use JNI there. 3. Use Web Services or Corba to connect to MS Stuff.

[JBoss-user] [EJB/JBoss] - access jboss appserver using public dial up connection/inter

2004-04-21 Thread latif
Its three tier system!! Both the client and server side using J2EE based software . Client using dial up connection (direct dialing to access server and then go to jboss) to connect Jboss App Server which is a linux8 server and using jboss3.0.4 as App Server and Then connect to oracle datab

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS Oracle store with per server destinations

2004-04-21 Thread genman
Another hint: You can put ${somevar} and it gets evaluated/substituted in the *-service.xml file, where the variable 'somevar' is a system property. You can set the system property on startup by using -Dsomevar=somevalue. So, as part of the startup script, you can set the ENV variable: $ ex

[JBoss-user] [Installation & Configuration] - access jboss appserver using public dialup connection/ inter

2004-04-21 Thread latif
access jboss appserver using diff ISP/public dialup connection/ internet Its three tier system!! Both the client and server side using J2EE based software And ... Client using dial up connection (direct dialing to access server and then go to jboss) to connect Jboss App Server which is a

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMR throws 'can only be used in transaction in which it

2004-04-21 Thread sesques
This is the EJB Spec. Collections returned by a getter on a CMR field must be used within the transaction in which it was created. The transaction type concerns the EJB's propagation and normally, the transaction type set to "required" is the best solution. Your error occurs certainly because yo

[JBoss-user] [Installation & Configuration] - Re: Maximum number os bean instances

2004-04-21 Thread shoshay
Hi, I read many posts that explain how to set max number of bean type (entity / mdb /session)but I can not understand how to control a specific bean number of instances (bean xxx of type mdb for example). I guess this connfiguration need to be in ejb-jar.xml or jboss.xml under specific war but

[JBoss-user] [J2EE Compliance] - access jboss appserver using diff isp

2004-04-21 Thread latif
is it possible to access jboss appserver using diff isp?9 Other than point to point connection from client pc to jboss server using j2ee based sfotware and oracle databse. latif View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831696#3831696 Reply to the post :