Re: [JBoss-user] JBoss-3.0.0beta problems

2002-02-21 Thread Scott M Stark
You have a problem with your download then as I have tested downloading and running the binary from SF and it does contain a valid conf directory. Using conf from a previous release is an invitation for pain. [starksm@banshee tmp]$ wget http://prdownloads.sourceforge.net/jboss/jboss-3.0.0beta.tgz

Re: [JBoss-user] Environment Entry Question

2002-02-21 Thread Scott M Stark
env-entry, and all java:comp/env bindings for that matter, are local to the component that defined the entry. Two ejbs can use the same env-entry element names with different values, as can two wars. Scott Stark Chief Technology Officer JBoss Group, LLC xx

Re: [JBoss-user] Problem Getting Something Stored in env-entry

2002-02-22 Thread Scott M Stark
I would guess your ejb-jar.xml is not correct. Turn on validation of the dtd by setting the ValidateDTDs to true and include the correct DOCTYPE in the ejb-jar.xml descriptor. true true false true false Scott Stark Chief Technology Officer JBoss

[JBoss-user] SAMS version of the JBoss book can now be preordered

2002-02-23 Thread Scott M Stark
I was buying the JMX book at Amazon and I saw that the JBoss book can now be preordered there as well. See http://www.amazon.com/exec/obidos/ASIN/0672323478/ref=pd_huc_qp_3_3/104-7627 345-5207958 They list the publish date as March 22. Scott Stark Chief Technology Officer

Re: [JBoss-user] MBean using a secure bean fails.

2002-02-28 Thread Scott M Stark
Your setup is incorrect as the java.security.auth.login.config value cannot be passed through the JNDI properties. For an mbean running in the JBoss server you can follow the approach demonstrated by the ClientLoginServlet from the web container integration tests. See the source online: http://cv

Re: [JBoss-user] Q:Bean Security and JMX

2002-03-01 Thread Scott M Stark
It won't be allowed when using a security manager unless your code has been assigned permissions to perform this access. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "John Landers" <[EMAIL PROTECTED]> T

Re: [JBoss-user] Q:Bean Security and JMX Another idea

2002-03-02 Thread Scott M Stark
in Module to do auth if none > associated so far. > CustomLoginModule to save of principal/credentials from shared_state. > } > > Thanks,jcl. > > - Original Message - > From: "Scott M Stark" <[EMAIL PROTECTED]> > To: "Jboss-User" <[

Re: [JBoss-user] How do I run JBoss when deployment descriptor dtd's are unavailable?

2002-03-05 Thread Scott M Stark
This is not a validation problem. This is the xml parser loading the external entities referenced by the xml document. Validation is a seperate and secondary step. The simplest solution is to drop the DOCTYPE usage as this is the behavior your asking for. Scott Stark Chie

Re: [JBoss-user] Base Documentation update on free anymore?

2002-03-05 Thread Scott M Stark
The final free update to the 2.4.x online book was in Jan. The content of the online version has been complete since Jan 1 2002. All subequent updates have been minor format changes or corrections. The next update to the online book will cover the changes in the 2.4.5 release. xxx

Re: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Scott M Stark
This is completely false. The java:comp/env context is local to J2EE components and can be used to isolate code from deployment specific names. The global JNDI can be used as it is on the client in the server. Read about the enterprise naming context and ejb-ref in any standard EJB book for an exp

Re: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Scott M Stark
echnology Officer JBoss Group, LLC - Original Message - From: "Vishwas Raman" <[EMAIL PROTECTED]> To: "Scott M Stark" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, March 06, 2002 4:02 PM

Re: [JBoss-dev] RE: [JBoss-user] JBOSS 3.x FINAL

2002-03-14 Thread Scott M Stark
We have sold thousands of docs and very few have problems with flashline. Usually it is international credit card problems. Contact [EMAIL PROTECTED] if your having a problem with ordering through flashline with the details and we'll get flashline to solve the problem. Sc

Re: [JBoss-user] webapp post deployment issue

2002-03-23 Thread Scott M Stark
That you get a dir listing means that you don't have any files that match the default welcome-file types. I have created such a war and I am able to click on the html files that are displayed without seeing this error. I am able to insert the extra '/' character without seeing the error you are. F

Re: [JBoss-user] inconsitent pass by reference semantics

2002-04-04 Thread Scott M Stark
Turn off EJB container optimization as described here: http://www.jboss.org/online-manual/HTML/ch07s16.html configuration of the container invoker. There are several elements which can nest within container-invoker-conf, one of which is . This controls the behavior of bean method calls within t

Re: [JBoss-user] JBoss 2.4.4/Tomcat 4x - How do I do Virtual Paths?

2002-04-05 Thread Scott M Stark
You can deploy a war that is a directory by adding the directory name to the AutoDeployer configuration. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Mike Lecza" <[EMAIL PROTECTED]> To: "'Marius Kotsbak

Re: [JBoss-user] The future of Scoped ears

2002-08-16 Thread Scott M Stark
You misread the comment then as I added scoping and have no itention of removing it. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Marius Kotsbak" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Frida

Re: JBoss 3.2 and 4.0 (Re: [JBoss-user] building jboss from cvs)

2002-08-18 Thread Scott M Stark
Client side interceptors are in 3.0.0-3.0.2. What is not in 3.0.x that is in 3.2 is the ability to have multiple invokers associated with an EJB. In 3.0.x only one invoker can be configured. Scott Stark Chief Technology Officer JBoss Group, LLC --

Re: [JBoss-user] problem with JAAS

2002-08-20 Thread Scott M Stark
The schema requirement of the DatabaseServerLoginModule as well as the general pattern of the use of JAAS in JBoss is discussed in a JavaWorld article as well as the admin-devel book. Scott Stark Chief Technology Officer JBoss Group, LLC - Ori

Re: [JBoss-user] JBoss 3.0 - ClientLoginModule problem

2002-08-20 Thread Scott M Stark
There is a unit test that does exactly what you are describing. How does its setup differ from yours? See the org.jboss.test.web.servlets.ClientLoginServlet in the jboss-all/testsuite module. Scott Stark Chief Technology Officer JBoss Group, LLC -

Re: [JBoss-user] JAAS custom loginModule ?

2002-08-20 Thread Scott M Stark
Start by simply testing your login module outside of the ejb. Once that is working you need to be printing out the LoginException to see what is failing.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - Fr

Re: [JBoss-user] Run-As Problems?

2002-08-21 Thread Scott M Stark
How does this differ from the RunAsMDB test case in the security unit tests? Look at them in the testsuite module in the org/jboss/test/security stuff and how this differs from your config. Scott Stark Chief Technology Officer JBoss Group, LLC ---

Re: [JBoss-user] JAAS custom loginModule ?

2002-08-21 Thread Scott M Stark
   at com.myproject.authentication.AuthenticationBean.authenticate(AuthenticationBean.java:56)   Thank you,   Sebastien CHAUSSON - Original Message - From: Scott M Stark To: [EMAIL PROTECTED] Sent: Tuesday, August 20, 2002 9:09 PM Subject: Re: [JBoss

Re: [JBoss-user] Run-As Problems?

2002-08-21 Thread Scott M Stark
The ProxyFactoryFinderInterceptor should not be needed for the MDB and should have no affect on run-as behavior. With the RunAsSecurityInterceptor your domain does not have to accept unauthenticated users. Show the exception your getting. Scott Stark Chief Technology Off

Re: [JBoss-user] jmx-console & remote queue creation

2002-08-21 Thread Scott M Stark
Look at the mbeans under the jboss.mq domain. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Gary Grobe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 21, 2002 12:37 PM Subject: [JBo

Re: [JBoss-user] JDK 1.4

2002-08-21 Thread Scott M Stark
If you have a bug you want fixed post a testcase with a report to the sourceforge jboss project. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Eric Kaplan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: [JBoss-user] Linkage error 3.0.1 final...

2002-08-21 Thread Scott M Stark
You can't have dependent classes in indepdent deployment units with the same classes in both. If you remove the ejb interfaces from the sar you will be able to redeploy the ejb as well as the sar. Scott Stark Chief Technology Officer JBoss Group, LLC x

Re: [JBoss-user] MBean server in JNDI?

2002-08-22 Thread Scott M Stark
Not by default, and this is contrary to the decoupled nature of JMX. Having a direct reference does not allow a service to be updated without clients having to reload their reference. You are free to bind your mbean into JNDI if you want. Scott Stark Chief Technology Offi

Re: [JBoss-user] Triggering auto deployment

2002-08-25 Thread Scott M Stark
Yes. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Weiqi Gao" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 25, 2002 7:19 PM Subject: [JBoss-user] Triggering auto deployment > Hi, >

Re: [JBoss-user] JBoss-JAAS problem: My custom LoginModule not initialized with my custom CallbackHandler, but with javax.security.auth.login.LoginContext $SecureCallbackHandler

2002-08-26 Thread Scott M Stark
javax.security.auth.login.LoginContext$SecureCallbackHandler is just a wrapper that delegates to your CallbackHandler.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: Herve Tchepannou To: [

Re: [JBoss-user] JBoss-JAAS problem: My custom LoginModule not initialized with my custom CallbackHandler, but with javax.security.auth.login.LoginContext $SecureCallbackHandler

2002-08-26 Thread Scott M Stark
Yes. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Herve Tchepannou To: [EMAIL PROTECTED] Sent: Monday, August 26, 2002 7:40 AM Subject: RE: [JBoss-user] JBoss-JAAS problem: My custom LoginModule not ini

[JBoss-user] JBoss-3.0.2 released

2002-08-27 Thread Scott M Stark
The JBoss-3.0.2 release is available. This includes bug fixes as well as enhancements to security with SSL support for JMS, clustered EJBs, and extensions to the SRP authentication protocol. In addition there is now support for JNDI/HTTP and RMI/HTTP. The release may be obtained from SourceForge:

Re: [JBoss-user] bundled tc4/jetty not remembering previous authentication in single session

2002-08-27 Thread Scott M Stark
This is not a bug. It is legitimate behavior per the servlet specification and tomcat standalone will exhibit this if you turn off caching in the FormAuthenticator: The bundled tomcat turns caching off because it conflicts with the stateless propagation of credentials from servlets to ejbs. Un

Re: [JBoss-user] bundled tc4/jetty not remembering previous authentication in single session

2002-08-28 Thread Scott M Stark
t requests - was it a > different caching policy? > > Cheers > Joe > > Scott M Stark wrote: > > >This is not a bug. It is legitimate behavior per the servlet specification and > >tomcat standalone will exhibit this if you turn off caching in the >FormAuthenticat

Re: [JBoss-user] JBoss-3.0.2 released

2002-08-28 Thread Scott M Stark
Yes, use a https url for the http invoker servlet. Scott Stark Chief Technology Officer JBoss Group, LLC From: [EMAIL PROTECTED] Date: 2002-08-27 20:53:27 [Download message RAW] On Tue, Aug 27, 2002 at 12:44:59PM -0700, Scott M Stark

Re: [JBoss-user] JBoss-3.0.2 released

2002-08-29 Thread Scott M Stark
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 29, 2002 5:12 AM Subject: Re: [JBoss-user] JBoss-3.0.2 released > > On Wed, Aug 28, 2002 at 11:21:03PM -0700, Scott M Stark wrote: > > Yes, use a https url for the http invoker servlet. > Any example available

Re: [JBoss-user] Any JBoss MBeans without no-arg constructors?

2002-08-29 Thread Scott M Stark
The JaasSecurityDomain is one: tst.keystore rmi+ssl jboss:service=TransactionManager Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Jon Brisbin" <[EMAIL PROTECTED]

Re: [JBoss-user] Serious Naming Service Weekness with JBoss

2002-08-29 Thread Scott M Stark
Nobody is complaining most likely because it works in general. Give the specifics of the problem you are seeing in the form of a bug report with a testcase posted to sourceforge. Scott Stark Chief Technology Officer JBoss Group, LLC - Original

Re: [JBoss-user] Custom LDAP auth module?

2002-08-30 Thread Scott M Stark
It should be in your own package namespace as part of your mbean. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Jon Brisbin" <[EMAIL PROTECTED]> To: "JBoss-user" <[EMAIL PROTECTED]> Sent: Friday, August

Re: [JBoss-user] EAR scoping and MANIFEST.MF references

2002-08-31 Thread Scott M Stark
Its not an issue of visibility, its that two classes from the same package can be loaded by different class loaders and package private access fails. I have seen this and the easiest way to cause it is to split the package classes across two jars. An ear should use a common class loader across all

Re: [JBoss-user] EAR scoping and MANIFEST.MF references

2002-08-31 Thread Scott M Stark
tmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 31, 2002 5:30 AM Subject: Re: [JBoss-user] EAR scoping and MANIFEST.MF references > Scott M Stark wrote: > > Its not an issue of visibility, its that two classes from the same package > > can be

Re: [JBoss-user] EAR scoping and MANIFEST.MF references

2002-08-31 Thread Scott M Stark
1, 2002 6:31 AM Subject: Re: [JBoss-user] EAR scoping and MANIFEST.MF references > Scott M Stark wrote: > > Yes, the only way you can guarentee package private access is to > > include the classes from the package in the same jar. See bug #602828. > > > > They *were* in one

Re: [JBoss-user] bundled tomcat version of 3.0.2

2002-09-11 Thread Scott M Stark
I just put out a jboss-3.0.2_tomcat-4.0.4 bundle on sourceforge. The Jetty listener bind address can be configured via an Address attribute: 80 vhost.dot.com 5 255 3 1 5000 5000 Scott Stark Chief T

Re: [JBoss-user] How can I enable trace level logging on the tx manager?

2002-09-11 Thread Scott M Stark
That is the correct way to enable trace level messages. Look in the server.log file, not the console as the console does not allow messages below INFO. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Bru

Re: [JBoss-user] Chaining login modules

2002-09-11 Thread Scott M Stark
Title: Chaining login modules 3.0.0 was not parsing the login module control flag correctly. 3.0.1 and latter do.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: Gavin Hughes To: [EMAIL PROTECT

Re: [JBoss-user] 3.0.2 error

2002-09-12 Thread Scott M Stark
VMs less than 1.3.1 do not pickup property editors that are not on the system classpath. We have several custom property editors that are loaded after the bootstrap of the server. What VM is being used here? Scott Stark Chief Technology Officer JBoss Group, LLC xx

Re: [JBoss-user] How to use application specific properties

2002-09-12 Thread Scott M Stark
Use the SystemPropertiesService. See the server/default/deploy/properties-service.xml for details. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Jon Haugsand" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

Re: [JBoss-user] 3.2beta release notes?

2002-09-17 Thread Scott M Stark
None yet. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Bob Cotton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 17, 2002 11:28 AM Subject: [JBoss-user] 3.2beta release notes?

Re: [JBoss-user] Cocoon 2.0.3 / Deploying multiple Web-Apps

2002-09-18 Thread Scott M Stark
First use jboss-3.0.2_tomcat-4.0.4 and then show the full stack trace of the error. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Klaus Richarz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednes

Re: [JBoss-user] Virtual hosting question

2002-09-18 Thread Scott M Stark
It should work and it does work fine with Jetty. I'll have to look into the tomcat behavior. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Brian Topping" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: [JBoss-user] Security Roles not accessible in beans?

2002-09-18 Thread Scott M Stark
That is the current implemented behavior. The run-as role is only available to the declarative security layer, not the application component. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Benoit Xhense

Re: [JBoss-user] NoClassDefFoundError: org/apache/catalina/LifecycleListener

2002-09-20 Thread Scott M Stark
We do, and the jboss-3.0.0_tomcat-4.0.3 bundle works fine for me with the shipped setting of catalina.home:   03:44:33,972 INFO  [EmbeddedCatalinaServiceSX] Creating03:44:33,972 INFO  [EmbeddedCatalinaServiceSX] Created03:44:33,972 INFO  [EmbeddedCatalinaServiceSX] Starting03:44:33,972 INFO 

Re: [JBoss-user] Virtual hosting question

2002-09-20 Thread Scott M Stark
ed, before the call to EmbeddedCatalina.findHost() or inside it? Thanks, -b > -Original Message- > From: Scott M Stark [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 12:27 PM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] Virtual hosting question >

Re: [JBoss-user] CVS Tag for 3.2beta

2002-09-20 Thread Scott M Stark
A release binary always tells you the CVS tag that was used to build it: bin 117>run.sh ... 14:57:38,871 INFO [Server] Starting JBoss (MX MicroKernel)... 14:57:38,871 INFO [Server] Release ID: JBoss [WonderLand] 3.2.0beta (build: JBoss_3_2_0_beta 200209161335) The tag is the first part after

[JBoss-user] N.Y. Open house tonight at 7pm

2002-09-19 Thread Scott M Stark
Don't forget to attend the free JBoss open house at the New York Marriott East Side at 7pm tonight, Thursday Sep 19. See the following link for information on the Marriot location: http://www.marriott.com/epp/default.asp?MarshaCode=NYCEA Scott Stark Chief Technology Offi

Re: [JBoss-user] Security for Database usernames and passwords...

2002-09-23 Thread Scott M Stark
Having SecurityDomains handle decryption of keys using a hardware based token is something I'm working on adding in the not too distant future. What do you have for integrating with your hardware based token currently? Scott Stark Chief Technology Officer JBoss Group, LL

Re: [JBoss-user] Autoreply: JBoss-user digest, Vol 1 #3082 - 5 msgs

2002-09-23 Thread Scott M Stark
Title: RE: [JBoss-user] Autoreply: JBoss-user digest, Vol 1 #3082 - 5 msgs The address has been dropped.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: JD Brennan To: '[EMAIL PROTECTED]'

Re: [JBoss-user] JaasSecurityManager caching - hard-coded constant?

2002-09-24 Thread Scott M Stark
As documented in both admin+devel guide and quickstart guide, use the org.jboss.security.plugins.JaasSecurityManagerService DefaultCacheTimeout attribute: DefaultCacheTimeout, Set the default timed cache policy timeout in seconds. This is the period over which authentication credentials will be

Re: [JBoss-user] http://www.jboss.org is down?

2002-09-24 Thread Scott M Stark
Its accessible by me. Some routes seem to be down, what is your traceroute path? Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Vladyslav Kosulin" <[EMAIL PROTECTED]> To: "jboss-user" <[EMAIL PROTECTED]

[JBoss-user] JBoss-3.0.3 release is available

2002-09-30 Thread Scott M Stark
The JBoss-3.0.3 maintence release is available from SourceForge. Also released are JBoss-3.0.3/Tomcat-4.0.5 and JBoss-3.0.3/Tomcat-4.1.12 bundles. The files are available here: http://sourceforge.net/project/showfiles.php?group_id=22866 The change notes are available here: http://sourceforge.net

Re: [JBoss-user] How to log in from an MBean

2002-10-02 Thread Scott M Stark
That is what is needed, but it must be done in the context of the thread making the ejb call.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: Randahl Fink Isaksen To: [EMAIL PROTECTED]

Re: [JBoss-user] ServiceBindingManager

2002-10-02 Thread Scott M Stark
I know I wrote a change note on this or emailed out an example but I can't find either. Look at the following files for an example setup: varia/src/etc/binding-service.xml varia/src/resources/services/binding/sample-bindings.xml varia/src/resources/services/binding/services-binding.dtd varia/outp

Re: [JBoss-user] How to log in from an MBean

2002-10-02 Thread Scott M Stark
Post a testcase to sourceforge attached to a bug report.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: Randahl Fink Isaksen To: [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002 10

Re: [JBoss-user] How to log in from an MBean

2002-10-02 Thread Scott M Stark
You can use your own login module, but to propagate the credentials to the ejb container you must include the ClientLoginModule as well. Presumably the security domain associated with the ejb is also executing your login module so why do it twice?   Scott StarkChief Te

Re: [JBoss-user] How to log in from an MBean

2002-10-02 Thread Scott M Stark
I don't know what you are talking about. The swing client and mbean are treated exactly the same. The swing client that uses your jaas module must also be using the ClientLoginModule in order to talk to secured ejbs.   Scott StarkChief Technology OfficerJBoss Group, L

Re: [JBoss-user] SRP client login problem

2002-10-04 Thread Scott M Stark
By default SRP only allows one active username with a session. The "Ignoring SRP session due to existing session" message is saying the second attempt to initiate a SRP session for aaa will not replace the existing session. You need to enable multiple sessions per user via the multipleSessions=tru

Re: [JBoss-user] security in jboss + tomcat ?

2002-10-05 Thread Scott M Stark
Tomcat security files are not used. You must specify the security domain for the web application using a jboss-web.xml descriptor in the war WEB-INF:       java:/jaas/myweb   and then configure the login modules for the myweb security domain. See the security chapters in the getting started

Re: [JBoss-user] JBoss/Jetty: Realm Not Configured

2002-10-05 Thread Scott M Stark
> This has a space between the leading quote mark and docs, as do several other attributes in this config. Check this config against to see that is not causing the problem. Scott Stark Chief Technology Officer JBoss Group, LLC - Original M

Re: [JBoss-user] I am confused with JAAS

2002-10-05 Thread Scott M Stark
You have to flush the authentication cache for the jaascampus security domain if you change users permissions and you want the change to be immeadiately reflected. Look at the flushAuthenticationCache operation in the jmx-console. The url to the JaasSecurityManager is:   http://localhost:8080

Re: [JBoss-user] RemoteMBeanServer by using RMIConnector

2002-10-05 Thread Scott M Stark
No, its hard coded for no good reason. I have fixed this in cvs such that you can configure the jndi name, listening port and bind address of the connector. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From:

Re: [JBoss-user] How to avoid entity beans read lock ?

2002-10-07 Thread Scott M Stark
Bill says: MethodOnlyEJBLock is erroneous by the spec. Spec says throw an exception on reentrancy if reentrant flag is not set to true. This lock has been replaced with an interceptor that does this behavior. Use org.jboss.ejb.plugins.lock.NoLock instead. Scott Stark

Re: [JBoss-user] JBoss/Jetty: Realm Not Configured

2002-10-08 Thread Scott M Stark
Not unless there is an exception that provides more info. Also the ProxyLoginModule is not needed in 3.0, try it without it. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "David Ward" <[EMAIL PROTECTED]

Re: [JBoss-user] MBeans, EJBConnector, and Security

2002-10-08 Thread Scott M Stark
Title: Message The EJBConnector is not secured by default so what have you done to setup this up? The adaptor EJB is in the jmx-ejb-adaptor.jar.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: Ja

Re: [JBoss-user] RunAsLoginModule in 3.0.3 not working!

2002-10-08 Thread Scott M Stark
override of login(), or whatever authentication method is called within the scope of login(). Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Marius Kotsbak" <[EMAIL PROTECTED]> To: "S

Re: [JBoss-user] JBoss 3.0.3 & tomcat 4.1.12 broken right out of the box.

2002-10-08 Thread Scott M Stark
Using what OS, JDK, and is there an xml parser extension installed in the JDK? This has to be an issue with how relative entity references are resolved as this works fine for me with the following JDK/OS combos: Sun 1.3.1_04-b02 on WinXP Apple 1.3.1_03-69 on OSX 10.2.1 Sun 1.3.1-b24 on RedHat 7.3.

Re: [JBoss-user] JBoss 3.0.3 & tomcat 4.1.12 broken right out of the box.

2002-10-08 Thread Scott M Stark
Wrong, try reading the actual setting. As I stated I'm only using non-JDK 1.4 VMs. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Thomas T. Veldhouse" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: T

Re: [JBoss-user] (no subject)

2002-10-09 Thread Scott M Stark
Yes, all you have enabled is the lookup of JNDI over HTTP. You still need to configure your EJBs to use RMI/HTTP. See the testsuite/src/resources/hello descriptors for an example.   Scott StarkChief Technology OfficerJBoss Group, LLC - O

Re: [JBoss-user] (no subject)

2002-10-10 Thread Scott M Stark
The testsuite is part of the source download and yes, that is the config you need. You'll have to generate a thread dump of the VM when it hangs on the ejb call to see where the problem lies.   Scott StarkChief Technology OfficerJBoss Group, LLCxxx

Re: [JBoss-user] Failed to load metadata

2002-10-10 Thread Scott M Stark
There is a problem with loading either the META-INF/ejb-jar.xml or META-INF/jboss.xml metadata descriptors. I don't see the nested NullPointerException stack trace so I can't say where the issue may be. Scott Stark Chief Technology Officer JBoss Group, LLC xxx

Re: [JBoss-user] JBoss/Jetty: Realm Not Configured

2002-10-10 Thread Scott M Stark
This looks to be a bug in Jetty and FORM based logins. It requires a realm-name element in the web.xml descriptor even though this is not a required element in the login-config, and is only meaningful for BASIC auth. Scott Stark Chief Technology Officer JBoss Group, LLC x

Re: [JBoss-user] Can't build JBoss-3.2 from cvs...

2002-10-10 Thread Scott M Stark
Show the full cvs co command as I just tried: cvs co -r Branch_3_2 jboss-all and the code builds fine on OSX with a 1.3.1 JDK. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Markus Garscha" <[EMAIL

Re: [JBoss-user] Deployment Exception on Branch_3_2 From Today

2002-10-20 Thread Scott M Stark
Resynch and try again. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Hunter Hillegas" <[EMAIL PROTECTED]> To: "JBoss User" <[EMAIL PROTECTED]> Sent: Sunday, October 20, 2002 4:41 PM Subject: [JBoss-user

Re: [JBoss-user] SSL with JBoss/Tomcat: JaasSecurityManager is not registered

2002-10-21 Thread Scott M Stark
Title: SSL with JBoss/Tomcat: JaasSecurityManager is not registered Change the name of the JaasSecurityManagerService in the conf/jboss-service.xml file from:         name="jboss.security:name=JaasSecurityManager">   to:         name="jboss.security:service=JaasSecurityManager">   xx

Re: [JBoss-user] SSL with JBoss/Tomcat: JaasSecurityManager is not registered

2002-10-22 Thread Scott M Stark
- From: Scott M Stark To: [EMAIL PROTECTED] Sent: Monday, October 21, 2002 10:57 PM Subject: Re: [JBoss-user] SSL with JBoss/Tomcat: JaasSecurityManager is not registered Change the name of the JaasSecurityManagerService in the conf/jboss-service.xml file from:  

Re: [JBoss-user] SSL with JBoss/Tomcat: JaasSecurityManager is not registered

2002-10-22 Thread Scott M Stark
- From: Scott M Stark To: [EMAIL PROTECTED] Sent: Monday, October 21, 2002 10:57 PM Subject: Re: [JBoss-user] SSL with JBoss/Tomcat: JaasSecurityManager is not registered Change the name of the JaasSecurityManagerService in the conf/jboss-service.xml file from:  

Re: [JBoss-user] Confused about JBoss Version Control and versions

2002-10-27 Thread Scott M Stark
Its priorities and/or lazy developers. If a fix has not made it into a branch you need it in create a context diff of the patch for the branch and submit it to patches section of the jboss project on sourceforge. Scott Stark Chief Technology Officer JBoss Group, LLC xx

Re: [JBoss-user] setting SecurityManager causes security exception in hybrid JBoss /RMI application

2002-11-02 Thread Scott M Stark
You need these permissions assigned to any code that interacts with the JBoss security layer when running with a security manager: java.lang.RuntimePermission("org.jboss.security.SecurityAssociation.getPrincipalInfo") java.lang.RuntimePermission("org.jboss.security.SecurityAssociation.setPrincipal

[JBoss-user] JBoss-3.0.4 released

2002-11-02 Thread Scott M Stark
JBoss-3.0.4 has been released to SourceForge and in addition to the default Jetty web container includes bundled versions of Tomcat-4.0.6 and Tomcat-4.1.12. The releases may be downloaded from: http://sourceforge.net/project/showfiles.php?group_id=22866 The release notes are available here: http:

Re: [JBoss-user] Web Application Structure (WAR) within EAR

2002-11-03 Thread Scott M Stark
No, neither client jars or ejb interfaces need be included in the war. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Michael Angelo Libio" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, Nov

Re: [JBoss-user] DatabaseServerLoginModule

2002-11-03 Thread Scott M Stark
There is no jboss-web.xml descriptor describing the security domain under which authentication should occur. See the getting started guide where a WEB-INF/jboss-web.xml file is described as being required to enable security: java:/jaas/other On Sunday, November 3, 2002, at 07:30 AM, Todd Goul

Re: [JBoss-user] FileNotFoundException Accessing Session bean from Servlet

2002-11-03 Thread Scott M Stark
This happens when the stateful session has been removed due to inactivity. The default timeout is 30 minutes. jboss-3.0.0 is now getting to be a rather out of date version so lookup into updating to 3.0.4. Scott Stark Chief Technology Officer JBoss Group, LLC x

Re: [JBoss-user] ClassCastException on redeploy of .ear

2002-11-03 Thread Scott M Stark
Bug in 3.0.0. Upgrade to 3.0.4.   Scott StarkChief Technology OfficerJBoss Group, LLC - Original Message - From: John Snyder To: [EMAIL PROTECTED] Sent: Sunday, November 03, 2002 9:31 AM Subject: [JBoss-user] Clas

Re: [JBoss-user] Running CMP2 tests: HSqlDB allows duplicate columns

2002-11-03 Thread Scott M Stark
The testsuite output for the 3.0.4 release is included in docs/tests. Of the 2 errors reported, one is for a known issue yet to be resolved and the other is an incorrect test assertion. Scott Stark Chief Technology Officer JBoss Group, LLC - O

Re: [JBoss-user] Re: ClassCastException on redeploy of .ear

2002-11-04 Thread Scott M Stark
It could be a problem with how the ear is packaged, placing classes in contexts that are not refreshed after the redeploy, including a jndi.properties file in the deployment, etc. Without an example ear that demonstrates the problem I can't say what your problem is. Create an example and attach it

Re: [JBoss-user] Error when building jboss

2002-11-04 Thread Scott M Stark
There is some problem with how JavaCC is integrating with the java vm/compiler under 1.4.1 that needs to be looked into. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROT

Re: [JBoss-user] JBoss site down

2002-11-04 Thread Scott M Stark
Its up now. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Ricardo Escalon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 04, 2002 8:08 AM Subject: [JBoss-user] JBoss site down > H

Re: [JBoss-user] DatabaseServerLoginModule

2002-11-04 Thread Scott M Stark
f to work? And why does what > Todd is doing not work? > > Ciao, > Jonathan O'Connor > Ph: +353 1 872 3305 > Mob: +353 86 824 9736 > Fax: +353 1 873 3612 > > > > > Scott M Stark <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] > 03.11.20

Re: [JBoss-user] JBoss-3.0.4 released

2002-11-05 Thread Scott M Stark
e someday to make revs talk to each other at least > within one release? It sure makes gradual rollout tough! > > Rick > > > > -Original Message- > > From: Scott M Stark [mailto:scottmstark@;attbi.com] > > Sent: Sunday, November 03, 2002 2:36 AM > > To:

Re: [JBoss-user] DatabaseServerLoginModule

2002-11-05 Thread Scott M Stark
Turn on DEBUG level messages by editing the conf/lo4j.xml file and removing the from the FILE appender and then look of the following msgs: Binding security/securityMgr to NullSecurityManager Linking security/securityMgr to JNDI name: x Most likely the war/WEB-INF/jboss-web.xml file is not being

Re: [JBoss-user] changes in login-config.xml no effect

2002-11-05 Thread Scott M Stark
The login-config.xml file is currently only read on startup so if the server has not been restarted the changes won't be seen. If this is not the case then the security domain name is not mapping to the expected entry and is most likely defauting to other. Scott Stark Chie

Re: [JBoss-user] update of .jar files in lib directory

2002-11-05 Thread Scott M Stark
jars in lib ar not monitored for changes and in general cannot be updated as they are shared across many components that would have to be restarted to propely recycle the classes. Restart is required to pickup changes. Jars that are changing should be associated with a component in the deploy direc

<    1   2   3   4   5   6   7   8   9   10   >