[JBoss-user] [Installation & Configuration] - Re: Proposal to redesign and simplify server instance setup

2004-10-03 Thread [EMAIL PROTECTED]
Make it an ant script so that two completely different scripts with different capabilities do not need to be maintained. Submit a prototype to the sourceforge patches section to get this going. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850242#3850242 Re

[JBoss-user] [Security & JAAS/JBoss] - Re: how to set user session to null after restart the server

2004-10-03 Thread [EMAIL PROTECTED]
Remove the work directory containing the persisted sessions. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850241#3850241 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3850241

[JBoss-user] [Security & JAAS/JBoss] - Re: salted password hashing

2004-10-03 Thread [EMAIL PROTECTED]
No, the password hash just uses the java.security.MessageDigest for the indicated algorithm and there is no salt added. Is there a specific mechanism for adding a salt your looking for? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850240#3850240 Reply to t

[JBoss-user] [Installation & Configuration] - Proposal to redesign and simplify server instance setup

2004-10-03 Thread didickman
This proposal is motivated by the desire to make JBoss more suitable in a shared-style enterprise installation. For example, in this situation a system admin would unpack jboss under the /opt directory which is a read-only partition. This is a problem because jboss needs to have write access to

[JBoss-user] [Security & JAAS/JBoss] - Re: Password Encryption with DatabaseLoginModule

2004-10-03 Thread [EMAIL PROTECTED]
The login module gets its connection from the jca datasource configuration so the password encryption needs to be done there. See the following wiki page: http://www.jboss.org/wiki/Wiki.jsp?page=EncryptingDataSourcePasswords View the original post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [Messaging, JMS & JBossMQ] - jms ,mdb & jboss

2004-10-03 Thread asmita_kulkarni
I am having a source code of jms application sender & receiver. The code is having some statements as follows- Hashtable env = new Hashtable(); env.put(Context.INITIAL_CONTEXT_FACTORY,"com.swiftmq.jndi.InitialContextFactoryImpl"); env.put(Context.PROVIDER_URL,"smqp://localhost:4001/timeout=1

[JBoss-user] [Security & JAAS/JBoss] - Re: Password Encryption with DatabaseLoginModule

2004-10-03 Thread grinch
Shortly after posting this I saw the DatabaseServerLoginModule class and noticed there was a convertRawPassword method. So it seems to me that I would just need to extend this class and put in my code for decrypting the database password in that method...is this correct? If so, how do I go abo

[JBoss-user] (no subject)

2004-10-03 Thread Feroz Muhamed
Hi,   I deployed one web application in jboss3.2.5.But on running the application fro browser I am getting the error like this please guide me for solving this error.     org.apache.jasper.JasperException: Unable to compile class for JSP Generated servlet error:error: error reading

[JBoss-user] [Security & JAAS/JBoss] - Password Encryption with DatabaseLoginModule

2004-10-03 Thread grinch
Dear Friends, I would like to encrypt all users passwords in the database, meaning having the encrpyted password in the DB. However, I do not know how I can encrpyt the password recieved from the login page, j_password, so that when the DatabaseLoginModule compares the value from the form, wi

[JBoss-user] [EJB/JBoss] - Re: Working with remote->local interfaces

2004-10-03 Thread darranl
Have you had a look at JNDI View? 'NameNotFoundException' generally means that you are trying to use a name that is not bound to JNDI. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850229#3850229 Reply to the post : http://www.jboss.org/index.html?module=b

[JBoss-user] [EJB/JBoss] - Re: Concurrency and Entity EJBs

2004-10-03 Thread eprst
Hi James, by 'clients' I meant other beans. We have quite a number of SLSB's that collect data across several entity beans and sometimes hold some complex business logic. So C1 and C2 are just session beans and creating own locks won't work for at least 2 reasons: 1. when C1 calls B.setUserLoc

[JBoss-user] [HTTPD, Servlets & JSP] - cannot deploy servlet

2004-10-03 Thread kcarey
Hello, I'm new to JBoss and I'm having a tough time deploying even a simple servlet. I've no problems accessing my jsp files. There's a web.xml and server.xml in : jboss-4.0.0RC1\server\default\deploy\jbossweb-tomcat50.sar . Do i need to change these ? thanks, Ken View the original post :

[JBoss-user] [Nukes User] - Re: Search block

2004-10-03 Thread theute
I updated/improved/fixed the search module. Now you can do an "advanced search" on selected modules. - Published and archived news are indexed - All forum messages are indexed - All HTML pages are indexed As cooper stated, it is easy for anyone making a module to make it searchable. When the se

[JBoss-user] [JBoss Getting Started Documentation] - dukebank throws RunTime Exception after deployment

2004-10-03 Thread robinbajaj
ENVIRONMENT DETAILS: I have configured myEclipse with jboss 4.0 Final on windows XP professional(SP2) using Java[TM] 2 Platform jdk version(build 1.4.2_05-b04) Hi i am doing everything rite till deployment deployement gives the folowing successfull deployement message. | 12:17:11,819 INFO [E

[JBoss-user] [Persistence & CMP/JBoss] - simple CMR deployment issue..

2004-10-03 Thread godboles
Hi all, I have a simple one-to-one ralationshipe between two beans: CustomerDetailsBean and CustomerSecurityInfoBean. When I deploy these two beans, I get the following exception. What am I doing wrong here? I cannot figure it out. I would appreciate any help. Thanks. HG Here is the exception

[JBoss-user] [HTTPD, Servlets & JSP] - Virtual Private Hosting with JVM Partitioning

2004-10-03 Thread astrien
As a disclaimer, I've been through the required 4+ hours of Google and JBoss forum searching (when are the going to fix the search function here??) What I have is an internet server with Apache on it and virtual hosting set up. This is to say there's a directory structure like the following:

[JBoss-user] [Installation & Configuration] - Expression Language Prob - NSMErr w/ isELIgnored=false

2004-10-03 Thread sengsational
My install (with Tomcat version 5.0.26) works pretty good, in general. I can put the isELIgnored=false page directive in without a problem, but when I put any EL in my jsp (like ${param.blah}), I get a NoSuchMethodError on javax.servlet.jsp.PageContext.getVariableResolver() at org.apache.jaspe

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Class Within War Not Updating in Deploy

2004-10-03 Thread lonb
Turns out that the DataValidator class was not filtered properly when compiling some other jar file which was previously put into the class path for the app server. Anyway, problem resolved. - Lon View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850211#3850

[JBoss-user] [Beginners Corner] - Re: Class Within War Not Updating in Deploy

2004-10-03 Thread lonb
Turns out that the DataValidator class was not filtered properly when compiling some other jar file which was previously put into the class path for the app server. Anyway, problem resolved. - Lon View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850212#3850

[JBoss-user] [EJB/JBoss] - Synchronization class??

2004-10-03 Thread balteo
Hello, I am going through the specification for ejb 2.0 and I came across (see pages 209-214 the OID diagrams) what they call the synchonization object which is a container-provided class. Do you have more info about this class? Thanks in advance, Julien Martin. View the original post : http

[JBoss-user] [EJB/JBoss] - Re: Concurrency and Entity EJBs

2004-10-03 Thread jamesstrachan
Hi, This is a design issue, really, and the important question is :- | "Is it okay for client C2 to delete entity bean B in which client C1 is interested ?" | If the answer is yes, then the client code must cope with trying to access an object that may have vanished. That will probably i

[JBoss-user] [JBoss Getting Started Documentation] - Re: Help starting JBOSS 3.2.3

2004-10-03 Thread aabramovich
Now here's a thing: When I start it from DOS it works! but when I use Jboss-IDE (Eclipse) which I have configured according to the PDFs on Jboss.org it didn't! Adding to the runtime parameters of the server an external folder pointing to %JAVA_HOME%\bin did the trick! So I helped myself... but

[JBoss-user] [JBoss Getting Started Documentation] - Re: Help starting JBOSS 3.2.3

2004-10-03 Thread aabramovich
Well, I am getting the same error (for exampe from the jmx-console). I have set the JAVA_HOME, CLASSPATH vars in the System and to no avail: JBoss Bootstrap Environment JBOSS_HOME: C:\jboss-3.2.5\bin\\.. JAVA: C:\JDKs\j2sdk1.4.2_03\bin\java JAVA_OPTS: -Dprogram.name=run.bat CLASSPATH: C:\JDKs\j2s

[JBoss-user] [EJB/JBoss] - Re: How many instances of the home are there for a given ejb

2004-10-03 Thread Sacha Labourey
what do you mean by "instance of a home": a home is not associated to any given instance. At least on the server, a single home proxy is generated and bound to JNDI. cheers, sacha View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850202#3850202 Reply to the

[JBoss-user] [EJB/JBoss] - How many instances of the home are there for a given ejb typ

2004-10-03 Thread balteo
Hello, How many instances of the home are there for a given ejb type? I understand the reply to the question depends on the app server. Can anyone give me the answer for Jboss please? Thanks in advance, Julien Martin. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopi

[JBoss-user] [HTTPD, Servlets & JSP] - Can Servlet listen to user-specified port?

2004-10-03 Thread poojac20
Hi Yes/No Question. Is it possible to configure my servlet in such a way that it listens to a prticular port, Say 7001. I want my clients to access this servlet NOT thru HTTP request to jboss port 8080 but by posting bytes directly on 7001. The client only knows ip address & port number of th

[JBoss-user] [EJB/JBoss] - Working with remote->local interfaces

2004-10-03 Thread bmnich
Hi, I try to connect with the staandalone client to my SessionBean using remote interfaces. Works fine. Then, from this SessionBean I try to obtain the EntityBean/SessionBean using local interfaces, and get an javax.naming.NameNotFoundException: MyLocalSessionLocal not bound All interface call

[JBoss-user] [Persistence & CMP/JBoss] - CMP with Compound Primary Key (Bug?)

2004-10-03 Thread rajs1
I have a CMP ContactOrgList with a compound primary key as follows: anonymous wrote : | public class ContactOrgPK implements java.io.Serializable | { | public String category_code = null; | public Long contact_org_id = null; | | public ContactOrgPK() | { | }

[JBoss-user] [JCA/JBoss] - Re: problem of getting more than 1 connection from DB

2004-10-03 Thread shacka
Actually, my initial description is wrong.. I have seen more than one connections utilized when CMP generated queries are executed (such as finder method calls).. However, the direct jdbc calls within my session beans do use one particular connection even if the same call was made by many other c

[JBoss-user] [Installation & Configuration] - jboss 4.0 + postgresql 7.4.5

2004-10-03 Thread albertfang
When I start jboss 4.0, I got a long list of errors. Basically, I am trying to use postgresql for JMS and persistence. Here is a digest fo the errors message! MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM: ObjectName: jboss.mq:service=PersistenceManager state: FAILED I Depend On: jboss.jca:na