Re: [JBoss-user] Autodeployer classpath changes in Version 2.1

2001-03-19 Thread Scott M Stark
The feature is still there and works. The issue is most likely that the log4j.jar that comes with jboss is an older version that uses the original org.log4j.* packages rather than the newer org.apache.log4j.* packages. Rename the existing log4j.jar and add your version. ext 547jar -tf log4j.jar

Re: [JBoss-user] X509 Client certificate authentication module?

2001-03-21 Thread Scott M Stark
I have an LDAP based LoginModule just about ready for check in. It will be committed tonight. The credentials are whatever you pass in and could be an X509 cert. - Original Message - From: "Michel Anke" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 21, 2001 2:42 PM

Re: [JBoss-user] JAAS Based Security in JBoss

2001-03-22 Thread Scott M Stark
If the auth.conf file in your jboss_dist/client directory is as you indicate then that is the problem. That is the auth.conf file for the server and should be in the jboss_dist/conf/default directory. You jboss_dist/client/auth.conf file should be the default one shipped with the distribution

Re: [JBoss-user] NoClassDefFoundError: org/jboss/security/SecurityAssociation

2001-03-22 Thread Scott M Stark
Your missing the jbosssx-client.jar from your classpath. Its in the jboss dist client directory. - Original Message - From: Andrew Tan To: [EMAIL PROTECTED] Sent: Friday, March 23, 2001 10:37 AM Subject: [JBoss-user] NoClassDefFoundError: org/jboss/security/SecurityAssociation Hi, I

Re: [JBoss-user] access modifiers lost in EJB programming ?

2001-03-23 Thread Scott M Stark
There is no way to define anything but public method in any interface. This is not limited to remote interfaces or EJB. Interfaces are an OO pattern specifically about the publicly available views/facets of an object. If you want to hide some method of an EJB implementation then don't put the

Re: [JBoss-user] Build CVS

2001-03-24 Thread Scott M Stark
The xml parsers were upgraded in the latest build so your probably having a conflict with an older xml parser version that is in your classpath or jre extenstion directory. - Original Message - From: "Ralf Purnhagen" [EMAIL PROTECTED] To: "jBoss" [EMAIL PROTECTED] Sent: Saturday, March

RE: [JBoss-user] access modifiers lost in EJB programming ?

2001-03-24 Thread Scott M Stark
I don't think of an interface as a "pattern specifically about the publicly available views/facets of an object". You can define interfaces that are visible only from the package, and in fact, this is a feature that I use often in my designs. In my opinion, interfaces are a means for

Re: [JBoss-user] JAAS samples

2001-03-27 Thread Scott M Stark
The only example is here http://www.jboss.org/documentation/HTML/index.html in the HowTo section. See "JAAS Based Security in JBoss" - Original Message - From: "Piyush Sheth" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 27, 2001 9:55 AM Subject: Re: [JBoss-user] JAAS

Re: [JBoss-user] Xerces / JBoss class conflict (or: How I Nearly Lost My Mind)

2001-03-27 Thread Scott M Stark
Get the latest release from: http://www.jboss.org/bin/jboss-2.1.zip and see the JAXP howto that describes how to change the xml parsers: http://www.jboss.org/documentation/HTML/ch09s101.html - Original Message - From: Lisa Plato To: [EMAIL PROTECTED] Sent: Tuesday, March 27, 2001 4:31 PM

Re: [JBoss-user] JAAS based Security

2001-03-29 Thread Scott M Stark
Look at the jbosssx cvs module - Original Message - From: "Lenz Holger (PN-ST/SF)" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 28, 2001 11:26 PM Subject: [JBoss-user] JAAS based Security Hello, following the description in

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Scott M Stark
le be used? On Thu, 29 Mar 2001, Scott M Stark wrote: This is the expected behavior because when tomcat run embeded the mod_jk apache module is not used so there is no mod_jk.conf-auto created. ___ JBoss-user mailing list [EMAIL PROTE

Re: [JBoss-user] Error w/jboss-tomcat-2.1-beta.zip (March-26-2001)

2001-03-29 Thread Scott M Stark
This is happening when you are running run.bat from within the C:\tmp\jboss-tomcat-2.1-beta\jboss-2.1\bin directory? It works fine for me on W2K with the Sun VM. Either your not in the bin directory so the relative path element ../lib/crimson.jar is not correct or your VM doesn't like the

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Scott M Stark
pherson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 29, 2001 12:49 PM Subject: Re: [JBoss-user] Tomcat + Apache using mod_jk The question was on using Apache to front end Tomcat+JBoss On Thu, 29 Mar 2001, Scott M Stark wrote: If your not using Apache

Re: [JBoss-user] Dumb newbie confusion over web.xml

2001-03-29 Thread Scott M Stark
jakarta-3.2.1 is a 2.2 servlet engine. The web.dtd file that ships with it is the 2.2 DTD as it is missing 2.3 elements like: filter, filter-mapping, listener, and resource-env-ref. Both 2.2 and 2.3 use a web.xml descriptor to describe the web application so you need to use it. - Original

Re: [JBoss-user] Illegal Access Exception

2001-03-30 Thread Scott M Stark
This is just saying that access to one of your bean methods is not allowed for the guest user. The MethodInvocation is an attempt to show which method is being denied but it has not been printed correctly. This is probably now failing because previously if a method did not have any security

Re: [JBoss-user] Custom MBeans

2001-04-02 Thread Scott M Stark
I'm doing a complete howto on writing custom MBeans that describes the details of the configuration and depdendency aspects. This will cover the Service, ServiceMBean ServiceMBeanSupport classes. - Original Message - From: "Liu, Kenneth Albert (Kenneth)** CTR **" [EMAIL PROTECTED] To:

Re: [JBoss-user] Jboss 2-1 Startup problem

2001-04-02 Thread Scott M Stark
Yes, use the run.bat and run.sh scripts. Where are you seeing "java -jar run.jar" in the docs? - Original Message - From: "Michael Oswall" [EMAIL PROTECTED] To: "Jboss User / Support" [EMAIL PROTECTED] Sent: Monday, April 02, 2001 4:26 PM Subject: [JBoss-user] Jboss 2-1 Startup problem

Re: [JBoss-user] Jboss 2-1 Startup problem

2001-04-02 Thread Scott M Stark
Not anymore. It now shows to use run.sh I had hit this same obstacle. The reference to "java -jar run.jar" can be found at http://www.jboss.org/documentation/HTML/ch01s05.html. Zach Thompson ___ JBoss-user mailing list [EMAIL PROTECTED]

Re: [JBoss-user] JBoss Xalan Xerces problems

2001-04-03 Thread Scott M Stark
JAXP is only supported in JBoss2.1 and later. - Original Message - From: "Brian Elliott" [EMAIL PROTECTED] To: "jboss" [EMAIL PROTECTED] Sent: Monday, April 02, 2001 10:12 PM Subject: [JBoss-user] JBoss Xalan Xerces problems I can't get JBoss (2.0 final) to work with Xalan Xerces

Re: [JBoss-user] JAAS Subjects in EJBs

2001-04-03 Thread Scott M Stark
When using the example JAAS setup and hello statefull bean (from the JBoss site docs), I tried the following in the hello business method of the bean. Subject s = Subject.getSubject(AccessController.getContext()); This returns null. Shouldn't it return a Subject with my

Re: [JBoss-user] JBoss and JDK 1.2.2

2001-04-03 Thread Scott M Stark
- Original Message - From: "Colin Sampaleanu" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 03, 2001 9:03 PM Subject: [JBoss-user] JBoss and JDK 1.2.2 Is JBoss completely usable under JDK 1.2.2, including security? I am a little bit confused (and looking at the

Re: [JBoss-user] what is the solution to deploy weblogic security module to JBoss?

2001-04-04 Thread Scott M Stark
There is nothing you can do but write a new integration layer. There is no standard for how security integrates into an app server so everyone has proprietary classes. Take a look at the JAAS howto and the JBossSX chapter in the new manual. - Original Message - From: suyan zhu To:

Re: [JBoss-user] Secure Sockets

2001-04-04 Thread Scott M Stark
There is no bundled SSL socket factory but you can do this using custom socket factories. See the custom socket factory howto in the new manual. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 04, 2001 11:00 AM Subject: [JBoss-user] Secure

Re: [JBoss-user] JASS: Illegal access BUG?

2001-04-04 Thread Scott M Stark
They receive an SecurityException("illegal access...") failure. - Original Message - From: "marc fleury" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 04, 2001 12:42 PM Subject: RE: [JBoss-user] JASS: Illegal access BUG? |The contributed version is inconsistent with

Re: [JBoss-user] Are there DTDs available for the various EJB/JBOSS config files?

2001-04-04 Thread Scott M Stark
Any DTDs/schemas that exist should be in the jboss cvs module under the src/resources/org/jboss/metadata directory. - Original Message - From: "David M. Karr" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 04, 2001 12:18 PM Subject: [JBoss-user] Are there DTDs available

Re: [JBoss-user] SHA MessageDigest exceptions on startup

2001-04-05 Thread Scott M Stark
I would say your JDK installation is wacked. If you can't execute this simple program your JDK installation is either crippled or has the security providers disabled as JDK1.3 ships with SHA message digest providers. import java.security.MessageDigest; class tst { public static void

Re: [JBoss-user] JaasSecurityManager logout

2001-04-05 Thread Scott M Stark
The best way would be to provide your own implementation of the CachePolicy (org.jboss.util.CachePolicy) that is used by the JaasSecurityManager so that you could invalidate the cache when a user's roles have been updated. The default CachePolicy implementation is a TimedCachePolicy so after a

Re: [JBoss-user] JAAS intraserver login/principal

2001-04-05 Thread Scott M Stark
Threads inside of JBoss accessing EJBs are no different than any other client. You have to login to allow the security policy associated with the EJB security domain to authenticate the access. - Original Message - From: "Tim Taylor" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: [JBoss-user] Why can not I use my mySQL data source?

2001-04-05 Thread Scott M Stark
Because jboss.conf is parsed by the javax.management.loading.MLet and this class does not accept an xml document. It has its own file format that looks like xml but is not. in addition: Perhaps it is a silly problem. I want to know why the file "jboss.conf" and other likewise

Re: [JBoss-user] Missing DependencyManager

2001-04-06 Thread Scott M Stark
See the "How to Integrate Custom Services via MBeans" in http://www.jboss.org/documentation/HTML/index.html - Original Message - From: "Tobias Seelinger" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 06, 2001 4:37 AM Subject: [JBoss-user] Missing DependencyManager Hi,

Re: [JBoss-user] Propagating JAAS subject

2001-04-07 Thread Scott M Stark
Is there a J2EE specified way of propagating a logged in Subject from thread to thread in a client? ... I would like to do the same thing in JBoss, but in a portable way. I.e., it would be best if this would work in WebLogic and other app servers too. There is no standard mechanism

[JBoss-user] Updated release bundles to 2.2

2001-04-08 Thread Scott M Stark
I updated the released bundles to use the JBoss2.2 code. These should be visible from the web site after 12 PM EST. JBoss-2.2(4.30M) [APR-08-2001] JBoss-2.2 + Tomcat-3.2.1 (8.72M) [APR-08-2001] JBoss-2.2 + Jetty-3.1.RC2 (7.62M) [APR-08-2001] ___

Re: [JBoss-user] Table not fund while the table has been created in Hypersonic

2001-04-08 Thread Scott M Stark
Hypersonic and InstantDB are two separate databases and drivers. Your setup is looking for a table in InstantDB so that is where you need to create the table. - Original Message - From: "Pifen Ellwood" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 07, 2001 1:43 PM

Re: [JBoss-user] using keyword 'this' in EJB?

2001-04-09 Thread Scott M Stark
However, in the case when the flow of execution is within the EJB implementation (entity), ie in a callback or remote method, is it then ok to pass the bean to other local objects using the 'this' keyword? Whilst the flow of execution is within the bean implementation then all other remote

Re: [JBoss-user] JNDI name for EJB from another EJB

2001-04-09 Thread Scott M Stark
Your not declaring an ejb-ref in your ejb-jar.xml descriptor as required: !-- EJB References (java:comp/env/ejb) -- ejb-ref ejb-ref-nameejb/Actors/ejb-ref-name ejb-ref-typeSession/ejb-ref-type ejb-linkActors/ejb-link

Re: [JBoss-user] jboss 2.2 hangs..

2001-04-09 Thread Scott M Stark
This is your VM crashing. What VM/OS are you using? - Original Message - From: "Yasir" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 09, 2001 6:24 AM Subject: [JBoss-user] jboss 2.2 hangs.. I downloaded the jboss2.2 version after 2.1's run.sh had problems. my path

Re: [JBoss-user] re: jboss 2.2 hangs

2001-04-09 Thread Scott M Stark
Any crash of the VM is a bug in the VM. These are usually bugs in hotspot. If its reproducible report the problem to JavaSoft. - Original Message - From: Yasir To: [EMAIL PROTECTED] Sent: Monday, April 09, 2001 10:47 AM Subject: [JBoss-user] re: jboss 2.2 hangs Im on RedHat linux 7

Re: [JBoss-user] Need Help Connection Pools (can't see zip files)

2001-04-09 Thread Scott M Stark
This jboss.xml is not consistent with the one you previously showed so which jboss.xml are you using? The one in this msg looks ok to me. In the previous msg you did not have a resource-managers../resource-managers section to map from the java:comp/env/jdbc/JBossDB value to java:/MSQLDB I am

Re: [JBoss-user] FW: JBoss 2.1

2001-04-10 Thread Scott M Stark
The latest client jars are in the jboss-2.2/client directory of the jboss-tomcat2.2 distribution. - Original Message - From: "faisal" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 2:32 AM Subject: Re: [JBoss-user] FW: JBoss 2.1 I appreciate your help! It

Re: SV: [JBoss-user] Gathering information on migrating from 2.0 to 2.2

2001-04-10 Thread Scott M Stark
You should be using client/jbosssx-client.jar instead of jboss-jaas.jar. If your finding that this is does not work then there is a problem with the packaging of the jbosssx-client.jar - Original Message - From: "Ken Jenks" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April

Re: [JBoss-user] debug ejb bean

2001-04-10 Thread Scott M Stark
Its actually jswat, see http://www.bluemarsh.com/java/jswat/ - Original Message - From: "David Jencks" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 7:04 PM Subject: Re: SV: [JBoss-user] debug ejb bean Hi, where is jswap to be found? Thanks David Jencks

Re: [JBoss-user] JBossSX Example by Scott Stark

2001-04-11 Thread Scott M Stark
This is a bug with the JaasServerLoginModule in the 2.2 release. I'm working on a patch. - Original Message - From: "Meenen, Joerg" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 8:01 AM Subject: [JBoss-user] JBossSX Example by Scott Stark Hello all. I

Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-11 Thread Scott M Stark
One issue though is that you cannot configure a resource without a java: prefix as a Deployer in JBoss right now. I have filed this as a bug 414854 on sourceforge. - Original Message - From: "Toby Allsopp" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 12:38 PM

Re: [JBoss-user] JBoss 2.2 Changelog

2001-04-12 Thread Scott M Stark
There isn't one as 2.2 was rather an arbitrary line drawn in the sand to stop the never ending 2.1 beta state. We'll have a change log for subsequent releases. - Original Message - From: "Todd Huss" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 12, 2001 11:19 AM Subject:

Re: [JBoss-user] JBossSX exception

2001-04-12 Thread Scott M Stark
exception The "login config file" is what? The config file expected to be found by the client? ($JBOSS_HOME/client/auth.conf) or the one for the server ($JBOSS_HOME/conf/tomcat/auth.conf) I'm using jboss 2.2 with embedded tomcat. Darrin On 4/12/01, 1:13:49 PM, Scott M Stark [EMAIL PROTECTED]

Re: [JBoss-user] JBossSX exception

2001-04-12 Thread Scott M Stark
4/12/01, 2:10:21 PM, Scott M Stark [EMAIL PROTECTED] wrote regarding Re: [JBoss-user] JBossSX exception: The stack trace is from the server so it would be the $JBOSS_HOME/conf/tomcat/auth.conf login config file. - Original Message - From: "Darrin Thompson" [EMAIL PR

Re: [JBoss-user] ClassCastException using RolesLoginModule

2001-04-12 Thread Scott M Stark
This is due to an inconsistency in module shared state introduced in 2.2 that will be fixed next week. If you want something before then mail me and I'll send you a new jboss-jass.jar that you can use to replace the current lib/jboss-jaas.jar - Original Message - From: "Andy Comley"

Re: [JBoss-user] Jboss 2.2 MessageDrivenBean problem

2001-04-12 Thread Scott M Stark
The mdb jar from the jbosstest cvs module deploys without any problems in the 2.2.0 release as I just verified. Do you have something in your classpath that may be interfering? ... [Default] JBoss 2.2.0 FINAL Started in 0m:8s [Auto deploy] Auto deploy of file:/G:/tmp/jboss-2.2/deploy/mdb.jar

Re: [JBoss-user] Using JMS resources (or other resources)

2001-04-12 Thread Scott M Stark
A ConnectionFactory is a resource factory and the spec talks about JMS being located by convention under the java:comp/env/jms context. To access a QueueConnectionFactory independent of which app server you deploy in you would define an ejb-jar resource-ref as: ejb-jar.xml: ejb-jar

Re: [JBoss-user] Using JMS resources (or other resources)

2001-04-12 Thread Scott M Stark
Theoretically yes, but resource-env-ref is an EJB2.0 spec addition that has not been implemented yet. In the interim you would simply have to use the global JNDI namespace: new InitialContext().lookup("queue/StockQueue"); which is actually not as bad as it seems as Queues are administered

Re: [JBoss-user] Using JMS resources (or other resources)

2001-04-17 Thread Scott M Stark
On 17 Apr: Peter Antman wrote: Wow, seems to be almost exactly what I need. It does also look like this could solve our little problem with the JMS objects not being in the java: namespace. snip Then we could write an mbean entry like this: mbean

Re: [JBoss-user] Tomcat jBoss security

2001-04-17 Thread Scott M Stark
That is correct. The JbossRealm is simply taking the Tomcat user credentials and propagating them to JBoss. There has to be a Tomcat security realm that acquires the user credentials. - Original Message - From: "Darrin Thompson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

Re: [JBoss-user] Jboss and Log4j

2001-04-17 Thread Scott M Stark
The Log4jService works fine for me with this jboss.conf entry: MLET CODE = "org.jboss.logging.Log4jService" ARCHIVE="jboss.jar,log4j.jar" CODEBASE="../../lib/ext/" /MLET Send the exception stack trace you are seeing if this is not working. - Original Message - From: "Franois Charoy"

Re: [JBoss-user] Tomcat jBoss security

2001-04-17 Thread Scott M Stark
The JavaPetStore example uses JDBCRealm and JbossRealm successfully. The order of JDBCRealm and JbossRealm in the server.xml is significant and JbossRealm must follow JDBCRealm. - Original Message - From: "Dug" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 9:34

Re: [JBoss-user] Using JMS resources (or other resources)

2001-04-17 Thread Scott M Stark
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 11:16 AM Subject: Re: [JBoss-user] Using JMS resources (or other resources) Well, I naively tried that: localhost:1199/topic But that did not work. Looking at the code for jnp it

Re: [JBoss-user] SAXParse Excpetion

2001-04-17 Thread Scott M Stark
Then how are you specifying the JAXP properties to use xerces rather than crimson? - Original Message - From: "Andrew Edgar" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 11:44 AM Subject: Re: [JBoss-user] SAXParse Excpetion I tried that. It came back with

Re: [JBoss-user] diff in behavior between server-side and client-side

2001-04-18 Thread Scott M Stark
I'm not sure this is valid behavior, but I can't find anything that applies explicitly to the method return values. This EJB 1.1 spec section on argument values clearly states that passing method arguments by reference is not allowed so I don't know why returning a reference should be valid:

Re: [JBoss-user] Tomcat jBoss security

2001-04-18 Thread Scott M Stark
Re: [JBoss-user] Tomcat jBoss security FWIW, this is not the way it is set up in the preconfigured JBoss 2.2/Tomcat 3.2.1 distro. Probably worth sticking in bugzilla. Darrin "Scott M Stark" [EMAIL PROTECTED] writes: The JavaPetStore example uses JDBCRealm and JbossRealm suc

Re: [JBoss-user] Help with Exception: java.lang.NoClassDefFoundError: org/jboss/security/SecurityAssociation

2001-04-18 Thread Scott M Stark
Client need to add jbosssx-client.jar in addition to jboss-client to their classpath in 2.2 - Original Message - From: "Kevin James Baxter" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 3:34 PM Subject: [JBoss-user] Help with Exception:

Re: [JBoss-user] JBoss 2.2: Servlet Authentication against JBoss realms. How ?

2001-04-19 Thread Scott M Stark
You have to have a Tomcat realm ahead of the JbossRealm as the JbossRealm just mpas the credentials obtained by the Tomcat Realm onto the JBoss notion of the thread user. - Original Message - From: Ijonas Kisselbach To: jbUser Sent: Thursday, April 19, 2001 10:01 AM Subject:

Re: [JBoss-user] JBoss 2.2: Servlet Authentication against JBoss realms. How ?

2001-04-19 Thread Scott M Stark
ate within Tomcat, using the usual means This then sets ups credentials which will be passed onto JBoss for further handling. But always authenticate in Tomcat first... ?? This makes sense if this is the case. Can you confirm ? Cheers, Ijonas. - Original Message - From: &quo

Re: [JBoss-user] 2.2.1 release available at sourceforge

2001-04-19 Thread Scott M Stark
Negative. - Original Message - From: "Alexander Kogan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 19, 2001 2:48 PM Subject: Re: [JBoss-user] 2.2.1 release available at sourceforge Hi, That is really great that *binary* release is bundled with sources now.

Re: [JBoss-user] web restricted?

2001-04-20 Thread Scott M Stark
I would doubt there is any filtering. When I trace to www.jboss.org I am not going through the 63.251.181.30 gateway you mention so it could just be a problem with that host/router. newsite 1045tracert -d www.jboss.org Tracing route to jboss.org [66.37.140.9] over a maximum of 30 hops: 1

Re: [JBoss-user] JBoss 2.2: Servlet Authentication against JBoss realms. How ?

2001-04-20 Thread Scott M Stark
There is nothing wrong doing this. - Original Message - From: Scott Hasse To: [EMAIL PROTECTED] Sent: Friday, April 20, 2001 1:07 PM Subject: Re: [JBoss-user] JBoss 2.2: Servlet Authentication against JBoss realms. How ? All, Having run into this same issue myself, I am wondering

[JBoss-user] 2.2.1 release available at sourceforge

2001-04-19 Thread Scott M Stark
A new 2.2.1 release is available from the jboss.org page at sourceforge along with a JBoss2.2.1/Tomcat3.2.1 bundle. See http://sourceforge.net/projects/jboss/ An new JBoss2.2.1/Jetty bundle will be released later today. See the Change Notes with Group=v2.2.1 for the changes relative to the

Re: [JBoss-user] Tomcat-JBoss ClassNotFoundException (again)

2001-04-22 Thread Scott M Stark
Yes 2.2.1 was tested with tomcat and there is a JBoss2.2.1+Tomcat3.2.1 bundle so try it. - Original Message - From: "Bill Pfeiffer" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 22, 2001 7:19 PM Subject: Re: [JBoss-user] Tomcat-JBoss ClassNotFoundException (again)

Re: [JBoss-user] Accesing JBoss through a firewall

2001-04-24 Thread Scott M Stark
Probably because no one has requested it. Do so on the sourceforge site. - Original Message - From: Jose Ramon Diaz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 24, 2001 9:03 AM Subject: Re: [JBoss-user] Accesing JBoss through a firewall Hello, I already have

Re: [JBoss-user] Configuring Jboss to use Log4j ?

2001-04-24 Thread Scott M Stark
? cheers Steve -Original Message- From: Scott M Stark [mailto:[EMAIL PROTECTED]] Sent: 24 April 2001 17:41 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Configuring Jboss to use Log4j ? No! Don't use jboss.logging if you have configured log4j as the log msg rendering mechanism

Re: [JBoss-user] Configuring Jboss to use Log4j ?

2001-04-24 Thread Scott M Stark
Why are you suggesting people use the org.jboss.logging.Log class? This should not be used if you have configured log4j. - Original Message - From: David Jencks [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 24, 2001 2:33 PM Subject: RE: [JBoss-user] Configuring Jboss to

Re: [JBoss-user] encoding type problem in tomcat-test.ear (CP1252)

2001-04-25 Thread Scott M Stark
Yes it will be changed. - Original Message - From: Steve Snider [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001 8:32 AM Subject: [JBoss-user] encoding type problem in tomcat-test.ear (CP1252) Would it be possible to change the encoding in the jboss.xml file

Re: [JBoss-user] Why cloudscape DB for petstore?

2001-04-25 Thread Scott M Stark
Because it ships with the j2ee reference implementation and is the database the jps has scripts for. - Original Message - From: Todd Chaffee [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001 11:06 AM Subject: [JBoss-user] Why cloudscape DB for petstore? I'm just

Re: [JBoss-user] Guest user

2001-04-25 Thread Scott M Stark
The only supported way currently is to do a JAAS login with a login module configuration that establishes your notion of a guest user. The guest username and password are something that has to make sense when validated against the security domain you have assigned the EJBs to. An unsupported way

Re: [JBoss-user] Guest user

2001-04-26 Thread Scott M Stark
If I understand you right, I should override the getUsernameAndPassword() method of UsernamePasswordLoginModule and return new String[] { guest, guest } if the callbackHandler is null instead of throwing an exception. No, the UsernamePasswordLoginModule is typically used by the security

Re: [JBoss-user] binding on specific addresses

2001-04-26 Thread Scott M Stark
binding on specific addresses Yes, these are bound on all addresses. There is currently no configuration support to bind to a specific address. - Original Message - From: Prevosto, Laurent To: '[EMAIL PROTECTED]' Sent: Thursday, April 26, 2001 2:15 AM Subject: [JBoss-user] binding on

Re: [JBoss-user] MBean access via JNDI - How to?

2001-04-26 Thread Scott M Stark
- Original Message - From: Coates, David [EMAIL PROTECTED] To: JBoss User List [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 12:23 PM Subject: [JBoss-user] MBean access via JNDI - How to? I have a custom MBean that adds a service to my JBoss container. Now I want to be able to

Re: [JBoss-user] jboss compilation from CVS

2001-04-26 Thread Scott M Stark
You have to do an update -d to pickup new directories - Original Message - From: Daniel Germain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 2:34 PM Subject: [JBoss-user] jboss compilation from CVS Hi, Sorry to bother you, I probably should be using a

Re: [JBoss-user] Followup - Joins - CMP Entity Beans - BUG????

2001-04-26 Thread Scott M Stark
Post your patch to http://sourceforge.net/tracker/?group_id=22866 under the Patches section. - Original Message - From: Vinay Menon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 4:24 PM Subject: [JBoss-user] Followup - Joins - CMP Entity Beans - BUG

Re: [JBoss-user] RE: Starting Trouble

2001-04-26 Thread Scott M Stark
As the docs state, JBOSS_HOME has to be replaced with the path to your JBoss installation. - Original Message - From: Vishal Chawla [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 3:06 PM Subject: [JBoss-user] RE: Starting Trouble Toby, Thanks for your earlier

Re: [JBoss-user] JAAS authorization

2001-04-27 Thread Scott M Stark
You can setup principal based security policy security, but what do you mean by support? - Original Message - From: Galina Gavrilo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 27, 2001 9:10 AM Subject: [JBoss-user] JAAS authorization Does jBoss support JAAS

Re: [JBoss-user] How to access the security roles in ejb-jar.xml

2001-04-27 Thread Scott M Stark
No you can't. - Original Message - From: Apichat Banyatsupasil [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 27, 2001 10:41 AM Subject: [JBoss-user] How to access the security roles in ejb-jar.xml Hi, I want to know whether I can access the security roles defined in

Re: [JBoss-user] JAAS Tutorial

2001-04-27 Thread Scott M Stark
See JAAS Based Security in JBoss: http://www.jboss.org/documentation/HTML/ch11s78.html JBossSX Security Extension Framework: http://www.jboss.org/documentation/HTML/ch09.html - Original Message - From: John P. Coffey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 28, 2001

Re: [JBoss-user] jboss compilation from cvs

2001-04-27 Thread Scott M Stark
This has been fixed. - Original Message - From: Daniel Germain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 27, 2001 10:09 AM Subject: [JBoss-user] jboss compilation from cvs Hi, I succeed to build the default target (Thanks Scott, I did not know that I had to add

Re: [JBoss-user] Guest user

2001-04-28 Thread Scott M Stark
Can you post the code fragment in the service request handler that did the JAAS login? I have done this and it works. On 28 Apr 2001 22:11:18 +0200 Raffael Herzog [EMAIL PROTECTED] wrote: ? Yes because you are establishing the user identity every time in each request thread. Just

Re: [JBoss-user] Running the interest sample as a Servlet does not work

2001-04-30 Thread Scott M Stark
The #1 cause of this problem is not configuring tomcat correctly. Try using the binary bundle that include a correctly configured embeded tomcat: http://prdownloads.sourceforge.net/jboss/JBoss-2.2.1_Tomcat-3.2.1.zip - Original Message - From: Carlos Granados [EMAIL PROTECTED] To: [EMAIL

Re: [JBoss-user] java.io.FilePermission on jboss tmp dir?

2001-04-30 Thread Scott M Stark
A permission entry like: permission java.io.FilePermission \H:\JBoss-2.2.1\tmp\deploy\Default\DbTester.jar\-, read; will not work because the policy file parser needs to see a \\ for each \ in a path string. It is better to use the ${jboss.home} and ${/} properties in the path specification

Re: [JBoss-user] Docs for JBoss Test suite

2001-05-01 Thread Scott M Stark
There isn't any documentation for the tests currently. The tests manage their own dependencies by deploying the j2ee units they test against using the JMX connector interface. Only the security-tests target has a non-trivial setup step that must be performed once against a JBoss server dist

Re: [JBoss-user] It never finds beans in another *.jar's

2001-05-01 Thread Scott M Stark
That is not the correct understanding of the jndi-name element from the jboss.xml descriptor. The docs show an example of an ejb-jar.xml of: ejb-jar enterprise-beans session ejb-nameBean A/ejb-name homeAHome/home remoteA/remote ejb-classABean/ejb-class

Re: [JBoss-user] Integrating Tomcat and jBoss security logon

2001-05-01 Thread Scott M Stark
Use the bundled JBoss/tomcat binary release to ensure you get a correctly configured tomcat setup. http://prdownloads.sourceforge.net/jboss/JBoss-2.2.1_Tomcat-3.2.1.zip - Original Message - From: Bennett, Peter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 1:53 AM

Re: [JBoss-user] Integrating Tomcat and jBoss security logon

2001-05-02 Thread Scott M Stark
Of Scott M Stark Sent: 01 May 2001 22:30 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Integrating Tomcat and jBoss security logon Use the bundled JBoss/tomcat binary release to ensure you get a correctly configured tomcat setup. http://prdownloads.sourceforge.net/jboss

Re: [JBoss-user] Integrating Tomcat and jBoss security logon

2001-05-02 Thread Scott M Stark
Tomcat and jBoss security logon Is this true only for embedded Tomcat, or can the same be made to happen with Tomcat running independently in a separate JVM? - Original Message - From: Scott M Stark [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 02, 2001 11:44 AM

Re: [JBoss-user] Anyone know how to federate across multiple jnp ...

2001-05-02 Thread Scott M Stark
This works in the latest cvs branch. - Original Message - From: Sam [EMAIL PROTECTED] To: JBOSS [EMAIL PROTECTED] Sent: Wednesday, May 02, 2001 3:04 PM Subject: [JBoss-user] Anyone know how to federate across multiple jnp ... Has anyone tried creating a URL reference to bind in jnp

Re: [JBoss-user] set Port number

2001-05-03 Thread Scott M Stark
See http://www.jboss.org/documentation/HTML/ch10s03.html for port configuration. - Original Message - From: Larchet Vincent [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 8:03 AM Subject: [JBoss-user] set Port number Hi all, I want to use jboss from behind a

Re: use jnp as general purpose naming service? Re: [JBoss-user] persistent bind to jnp possible?

2001-05-03 Thread Scott M Stark
The jnp implementation does not support persistent storage of bindings. You will have to federate with some other JNDI provider that does this. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 7:52 AM Subject: use jnp as general purpose

Re: [JBoss-user] Anyone know how to federate across multiple jnp ...

2001-05-03 Thread Scott M Stark
Yes, jnp properly resovles references of type URL. - Original Message - From: Sam Yan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 1:24 PM Subject: RE: [JBoss-user] Anyone know how to federate across multiple jnp ... I looked for the example and must have

Re: [JBoss-user] MBean Newbie Difficulties -- JNDIMap

2001-05-04 Thread Scott M Stark
The stack trace is from the point where the JMX MLet loads beans from the jboss.conf file, not the point where the Configuration loads the jboss.jcml file so the problem is likely that you tried to place your entry in jboss.conf? - Original Message - From: Matt Davies [EMAIL PROTECTED]

Re: [JBoss-user] Anyone know how to federate across multiple jnp ...

2001-05-07 Thread Scott M Stark
jnp is the name of the jndi provider used by JBoss and is the protocol url just as t3 is the weblogic's. The jnp.properties file is used as the default values. If you don't set the port values via the NamingService mbean attributes then the jnp.properties file is used. This jboss.jcml entry:

Re: [JBoss-user] how to actually log from beans, JSPs, etc. (using the included log4j)

2001-05-08 Thread Scott M Stark
You have to configure the Log4jService to have the legacy jboss logging pass through log4j. After that you use log4j as you would anywhere else. Beans should simply use log4j directly. - Original Message - From: Otis Gospodnetic [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May

Re: [JBoss-user] Access Control Problem

2001-05-08 Thread Scott M Stark
The server.policy is only for the JBoss server, not clients. - Original Message - From: Michael Hustler [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 08, 2001 1:22 PM Subject: RE: [JBoss-user] Access Control Problem That helped - thanks! Using the debug=all I found that

Re: [JBoss-user] question

2001-05-08 Thread Scott M Stark
Either no protocol or jnp. The following are equivalent: host:port jnp://host:port - Original Message - From: Eric Lindauer To: [EMAIL PROTECTED] Sent: Tuesday, May 08, 2001 3:16 PM Subject: [JBoss-user] question Hi from a new Jboss user. I have a probably simple question. In the

Re: [JBoss-user] Anyone know how to federate across multiple jnp ...

2001-05-08 Thread Scott M Stark
It works fine for me from the client: /tmp 586 java tstNS Connecting to JNDI, env={java.naming.provider.url=jnp://localhost:1299, java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces} Connected to JNDI

  1   2   3   4   5   6   7   8   9   10   >