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

2004-02-21 Thread Martin0
Thanks very much Martin View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822438#3822438 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822438 --- SF.Net is sponsored b

[JBoss-user] [Security & JAAS/JBoss] - Re: 2 methods of setting up SSL. Which one is correct?

2004-02-21 Thread starksm
The two approaches are for different versions of jboss. The first is for 3.2.x, the second for 3.0.x. If you don't specifiy a configuration-name, you will use the default for the bean type, which for a stateless session is 'Standard Stateless SessionBean'. View the original post : http://www.jb

[JBoss-user] [Security & JAAS/JBoss] - Re: Does restoreRequest method of FormAuthenticator ever get

2004-02-21 Thread starksm
The tomcat-4.1.29 code shows that the FormAuthenticator.authenticate method calls the restoreRequest. The usecase you describe works fine for me with FORM based on using the jmx-console.war. I can login, wait for the session to expired and then click on a link such as http://localhost:8080/jmx

[JBoss-user] [EJB/JBoss] - Re: JBoss Shutdown

2004-02-21 Thread rupshall
Same here: 00:49:27,410 INFO [Server] Starting JBoss (MX MicroKernel)... 00:49:27,415 INFO [Server] Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445) . . . 00:49:28,115 INFO [ServerInfo] Java version: 1.4.2_03,Sun Microsystems Inc. 00:49:28,116 INFO [Server

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

2004-02-21 Thread starksm
Turn on trace level debugging in the conf/log4j.xml file for the security layer to see what is going on: < category name="org.jboss.securityl" > < priority value="TRACE" class="org.jboss.logging.XLevel"/ > < /category > View the original post : http://www.jboss.org/index.html?module=

[JBoss-user] [Security & JAAS/JBoss] - Re: Passing subject/roles from one realm to another?

2004-02-21 Thread starksm
Sensible approach 1, don't use xdoclet if you can't get it to generate seperate security permissions based on the interface type. It should as this is allowed i n the ejb-jar.xml method-permission. A caller from TRUSTED_APP into CORE will have their security context propagated, so if the princi

[JBoss-user] [Security & JAAS/JBoss] - Re: Help! How to configure SSO in JBoss 3.2.3

2004-02-21 Thread starksm
>From the jboss-3.2.3 release notes: The tomcat4.1.x single sign-on behavior has been updated to allow for propagation of the web app security context to the ejb container and other secured resources. Configuration: In the jbossweb-tomcat41.sar/META-INF/jboss-service.xml file,

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

2004-02-21 Thread starksm
The 3.2.1 update of the article found here should apply: http://sourceforge.net/docman/display_doc.php?docid=18240&group_id=22866 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822429#3822429 Reply to the post : http://www.jboss.org/index.html?module=bb&op=po

[JBoss-user] [Persistence & CMP/JBoss] - cmr feild return null

2004-02-21 Thread flashwindcn
I am using jboss3.2.3 with sql 2000. I have one SessionBean and two EntityBean. They work fine, but have a small question! I have a jsp to execute finder method, as following: Collection c2 = eCardAdminLocal.getAllECard2("type1", "name9"); if (c!=null) { Iterator iterator2 = c2.iterator

[JBoss-user] [News & Announcements] - New improved look of JBoss JMX-console

2004-02-21 Thread sbrbot
http://www.open.hr/~sbrbot/JBoss View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822425#3822425 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822425 --- SF.Net is sp

[JBoss-user] [Datasource Configuration] - Re: I'be got the connection, but why can't find table?

2004-02-21 Thread matafy
Sorry, modified lines in standardjbosscmp-jdbc.xml are: java:/mySqlDS ejbstudy true View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822424#3822424 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [Installation & Configuration] - Re: Integrate Apache Jboss-Tomcat, with SSL, users,IP Access

2004-02-21 Thread dkdkdk
Thank u very much. AC oliver. U help me twice. Thanks! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822423#3822423 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822423 -

[JBoss-user] [Datasource Configuration] - Re: I'be got the connection, but why can't find table?

2004-02-21 Thread matafy
Maybe i didn't describe it detailly enough. To config the datasource, i have modified two files. One is "standardjbosscmp-jdbc.xml" which is the default one that i havn't change after installing jboss, i modified the following lines: java:/mySqlDS ejbstudy The other file is "mysql-

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

2004-02-21 Thread Martin0
Just realised the significance of the ClientLoginModule. However if someone has a version of this paper applied to 3.2.3 I'd still appreciated it. Thanks Martin View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822421#3822421 Reply to the post : http://www.jb

[JBoss-user] [Security & JAAS/JBoss] - JavaWorld JBoss JAAS paper

2004-02-21 Thread Martin0
I'm trying to use the paper at http://www.javaworld.com/javaworld/jw-08-2001/jw-0831-jaas_p.html to get a working JAAS web application working, however the example is based on JBoss 2.4, and I'm using 3.2.3 I guess that format of the server_auth.conf file of still works as this legacy format i

[JBoss-user] [Security & JAAS/JBoss] - per-app configuration

2004-02-21 Thread mandrews-flarion
hi folks, what i'd like to do is avoid touching global server configuration files, and put all local/custom configuration into my application's *.ear file. what i've done so far successfully is write my own LoginModule class and gotten it to work in my application using jboss-3.2.3, by (1) drop

[JBoss-user] [Nukes User] - build problems on nukes daily snapshot

2004-02-21 Thread aalmero
i downloaded daily snapshot source to build from it but got a lot of errors. i tried to investigate the problem and found out the some filenames where truncated. please verify and keep me posted. thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822418

[JBoss-user] specify different oracle tablespace from default

2004-02-21 Thread eric . kaplan
Is there any way to specify in the oracle datasource that you want to use a different tablespace than the default tablespace for the login specified? In Sybase, this can be part of the url. Something similar? Regards --- IMP Webmail brought to yo

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

2004-02-21 Thread tcherel
I guess I spoke a little too quickly. Sending messages seems to be fine. Trying to delete messages through the JMX console is throwing an exception (see below). It seems to throw this exception only when the cache starts to be used (if messages are only stored in the persistent storage since they

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

2004-02-21 Thread tcherel
I think I finally managed to make it work with JBoss 3.0.5. You can find enclosed the configuration that I used. The issue I had was related to the MessageCache attribute of the PersistentManager. It cannot be null so I set it up to its own name (not sure if this is the right thing to do, but it

[JBoss-user] [Connectors and JCA/JBoss] - Re: Problem with JBossManagedConnectionPool

2004-02-21 Thread [EMAIL PROTECTED]
Either 1) You didn't confgure it properly 2) Or you hit the problem where hsqldb doesn't start immediately. It spawns a thread to start the db (which could take a while if it is recovering its log) then finally binds to the socket. Regards, Adrian View the original post : http://www.jboss.org/i

[JBoss-user] [Connectors and JCA/JBoss] - Re: jdbc driver to DB2

2004-02-21 Thread [EMAIL PROTECTED]
docs/examples/jca Regards, Adrian View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822414#3822414 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822414 --- SF.Net is

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Changing cache settings do not seem to have an influence

2004-02-21 Thread [EMAIL PROTECTED]
The message cache controls the jms messages in memory. It cannot help you if memory is being used elsewhere. Regards, Adrian View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822413#3822413 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS hangs after IOException in the server

2004-02-21 Thread [EMAIL PROTECTED]
The server should disconnect the client when it cannot send a message to the client. I would need to see the logs to find out what is going on. Regards, Adrian View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822412#3822412 Reply to the post : http://www.jboss

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: My JMS Program Not Working

2004-02-21 Thread [EMAIL PROTECTED]
Your jndi properties are wrong. java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.factory.url.pkgs=org.jnp.interfaces java.naming.provider.url=localhost:1099 Regards, Adrian View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822411#3

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Whole Jboss freezes during 5 minutes (HP-UX11)

2004-02-21 Thread [EMAIL PROTECTED]
There are two possiblities. 1) Your VM has locked up for 5 minutes, either because of garbage collection, paging or some other problem. 2) There is some problem with file descriptors since your cannot create a new file or open a new socket (which are also files under Unix). I wouldn't recommend th

[JBoss-user] [Security & JAAS/JBoss] - Re: ClientLoginModule & adding Principals to Subject

2004-02-21 Thread starksm
It does now. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822408#3822408 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822408 --- SF.Net is sponsored by: Speed St

[JBoss-user] [EJB/JBoss] - Synchronization between BMP and CMP

2004-02-21 Thread phil92100
Hello, I have CMPs to manage Create, Update and Remove entities, and i use BMPs to Selects and Finds. And i have a problem : When i create an entity with a CMP and when i make a findBy with my BMP, i find it and his values are OK. But when i update it with my CMP, i've got the old value when i m

Re: [JBoss-user] Hung client

2004-02-21 Thread eric . kaplan
Heiko Thanks for responding. Why would such things affect the attempt to create but not the lookup? Is it some kind of binding issue? Regards Eric Quoting "Rupp, Heiko" <[EMAIL PROTECTED]>: > Very oftern in the past when such things happened, it were things like > - dns problems > - tcpd tryin

[JBoss-user] [Nukes User] - Re: Next Nukes Release ?

2004-02-21 Thread djp
Sorry to go back to the original question, but in the press release, it mentions availability as follows: "Availability A final RC (Release Candidate) is already available as a free download. Nukes on JBoss version 1.0 will be available on February 18 at www.jboss.org." How soon do you think re

Re: [JBoss-user] Hung client

2004-02-21 Thread Rupp, Heiko
Title: RE: [JBoss-user] Hung client Very oftern in the past when such things happened, it were things like - dns problems - tcpd trying to do itend queries that fail/time out - firewalls that don't to a reset for protected ports, but just drop packets Von: [EMAIL PROTECTED] im Auftrag v

[JBoss-user] [EJB/JBoss] - connection exception when JNDI over http

2004-02-21 Thread jieshengz
I just want to do a simple JNDI connect from a client to server. My client is inside an interal Lan. Its is IP is like 10.0.0.35. My server has a public IP address and is a redhat 8.0 linux box. I can connect to server correctly since I could retrieve the http://xx.xx.xx.xx:8080/jmx-console pag

[JBoss-user] [Installation & Configuration] - Re: Integrate Apache Jboss-Tomcat, with SSL, users,IP Access

2004-02-21 Thread acoliver
http://jboss.org/wiki/Wiki.jsp?page=UsingMod_jkWithJBoss http://jboss.org/wiki/Wiki.jsp?page=UsingMod_proxyWithJBoss View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822403#3822403 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=r

RE: [JBoss-user] Hung client

2004-02-21 Thread Eric J Kaplan
Any thoughts on this one? We look pretty silly as huge jboss advocates when something like this happens. While we haven't ruled out something else, I'd like to know if anyone has seen anything similar, because there are no messages on either the server or the client. BTW, below replace sessionbean.

[JBoss-user] [Messaging, JMS & JBossMQ] - Whole Jboss freezes during 5 minutes (HP-UX11)

2004-02-21 Thread labichea
HP-UX 11/HP JVM 1.4.2_01 In production environment, sometimes whole Jboss 3.2.2 freeze during 5 minutes. Telnet localhost 1099 was in connection timeout and no log (absolutly nothing !!!) in server.log during this interval. After kill -3 "java_pid" a thread inside a transaction code is stra

[JBoss-user] [Security & JAAS/JBoss] - Re: Two different login pages

2004-02-21 Thread pilhuhn
You can get the URL as servlets can get them. Have a look at the servlet javadoc. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822401#3822401 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822401 ---

[JBoss-user] [Datasource Configuration] - Re: I'be got the connection, but why can't find table?

2004-02-21 Thread matafy
who can help me??? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822400#3822400 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822400 --- SF.Net is sponsored by: Sp

[JBoss-user] [Datasource Configuration] - Re: Standalone client

2004-02-21 Thread pilhuhn
Datasources are vm local. If you want to access it remotely, then do e.g. via a session bean. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822399#3822399 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3822399 --

[JBoss-user] [EJB/JBoss] - Re: Dtd problem ...

2004-02-21 Thread pilhuhn
Normally the dtd is supposed to be in jboss/docs/dtd, from where the server loads them. Did you accidently delete it there? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822398#3822398 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Security & JAAS/JBoss] - ClientLoginModule & adding Principals to Subject

2004-02-21 Thread gary_kephart
Why doesn't ClientLoginModule.login call subject.getPrincipals().add(principal)? I need this to happen for my Swing app security to work correctly. I made my own subclass which does do what I want, but it seems like ClientLoginModule should do this. Gary View the original post : http://www.jb

[JBoss-user] [News & Announcements] - JBoss Training Update

2004-02-21 Thread [EMAIL PROTECTED]
Please note there has been some updates to the previously published training schedule. Changes are as follows: May 24-27th Advanced JBoss Training has been changed from San Francisco to Las Vegas. New Training: JBoss Administrator in Chicago April 26-27 We will be updating the training schedule

Re: [JBoss-user] JBoss Took a Nap!

2004-02-21 Thread Rupp, Heiko
(I did not completely follow the thread).   Did you give JBoss more memory with -Xmx than you have physical ram?   Could it be that some clock setting daemon just forwarded the clock by 3 minutes?   Just wild guesses ..     Heiko Von: [EMAIL PROTECTED] im Auftrag von Peter LuttrellGese

[JBoss-user] [Clustering/JBoss] - Re: javax.naming.CommunicationException when calling a clust

2004-02-21 Thread cari34
I think your servers should be on the same subnet. Make sure your network switch does not block the multicast IP ranges. Otherwise, you should use a non multicast be changing the JavaGroup stack in your jboss-cluster.xml. I didn't not test this option, but it should work. Cari View the original

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Blocked in StdServerSession.start: PooledExecutor has no

2004-02-21 Thread genman
Could you please attempt to reproduce with the latest Jboss 3.2 branch and let us know what you find? I do catch all throwables at this time, because I am insanely curious why the session threads have been disappearing for my application. It is usually not a good idea to catch Errors and the