[JBoss-user] [Management, JMX/JBoss] - Re: IIOP Connection to JBOSS MBeans

2005-09-10 Thread [EMAIL PROTECTED]
Write an ejb that talks to the MBeanServer and deploy it using RMI/IIOP. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893996#3893996 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3893996

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss 4.0.1 on Solaris 10 with JDK 1.5

2005-09-10 Thread [EMAIL PROTECTED]
Solaris has a broken/obsolete tar that cannot handle archives with long file names. Go delete it and install a gnutar compatible tar or use the zip archive along with the jdk jar tool. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893994#3893994 Reply to t

[JBoss-user] [Javassist user questions] - Re: Loading class from relaional storage

2005-09-10 Thread chiba
Unfortunately, Javassist is not a toolkit for editing serialized data. It might be a good idea that Javassist supports that editing but currently Javassist does not. Sorry. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893992#3893992 Reply to the post : htt

[JBoss-user] [JBoss Portal] - Re: Newbie: admin page access

2005-09-10 Thread normanfung
hey Thanks... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893991#3893991 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3893991 --- SF.Net email is Sponsored by th

[JBoss-user] [Security & JAAS/JBoss] - Re: Type of Principals: Roles, CallerPrincipal?

2005-09-10 Thread evrim
Hi, CallerPrincipals are seemed to same as ejb3 spec says in chapter 16. Lets assume we've got three security domains, | for web app 1: java:/jaas/war1, | for web app 2: java:/jaas/war2, | for slsb's : java:/jaas/ear | each of them has login-modules loading roles X, Y and also, jaas/

[JBoss-user] [JBoss Portal] - Re: Newbie: admin page access

2005-09-10 Thread rincewind23
I had a look through the source code when I first installed - I think it was one of the DB creation files in which I found: user=admin pass=admin Hopefully that'll work for you too. Cheers, KEv. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893917#3893917

[JBoss-user] [Javassist user questions] - Re: Loading class from relaional storage

2005-09-10 Thread ivang
Yes, i was hoping to get the byte[], change the SerialUID value, add the new fields and methods, serialize back update the row in the database. Perhaps javaassist is not the way to go here ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893914#3893914 Reply

[JBoss-user] [EJB/JBoss] - Re: Downloading classes from JBoss server

2005-09-10 Thread amna
when i try to run an ejb application the following error occurs!!! Can u help me out of it The following stack trace is displayed java.lang.NoClassDefFoundError: javax/ejb/EJBHome at java.lang.ClassLoader.findBootstrapClass(Native Method) at java.lang.ClassLoader.findBootstrapClas

[JBoss-user] [JBoss Portal] - Newbie: admin page access

2005-09-10 Thread normanfung
Hi, just downloaded JBoss Portal, started JBoss application server no problem here. Then I navigated to: http://localhost:8080/Portal No sweat. Now, I clicked on "Admin" on "Page Menu" portlet (trying to access Admin CMS), only to be presented with error message "Sorry, you do not have access

[JBoss-user] [Installation, Configuration & Deployment] - Re: Default JBoss Security problem

2005-09-10 Thread mburke1963
The file name is jboss-4.0.0RC1.zip. There must be a config file somewhere to set security, port number and so on. I can't find it in the JBoss docs. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893908#3893908 Reply to the post : http://www.jboss.com/ind

[JBoss-user] [Security & JAAS/JBoss] - Re: Type of Principals: Roles, CallerPrincipal?

2005-09-10 Thread aycanirican
Well I have another related question. It's possible to inject SessionContext and call getCallerPrincipal(). This way a EJB3 SLSB can find who is calling the method. | @Resource | javax.ejb.SessionContext ctx; | So, If we defined an application-policy for each of our web modules (and al

[JBoss-user] [Security & JAAS/JBoss] - Re: DBMS_OBFUSCATION_TOOLKIT.MD5(....)

2005-09-10 Thread ricardoarguello
You could use the Wayback Machine (http://www.archive.org) to search for older versions of these files: fast_bw.txt fast_md5.txt If you have time, please create a SF.net project to keep mantain a version of this website, thanks: PL/SQL Cellar Ricardo View the original post : http://www.jbos

[JBoss-user] [Javassist user questions] - Re: Loading class from relaional storage

2005-09-10 Thread chiba
I don't think you can read an old serialized data in any way if you add a new field to that class. What do you mean by "inject the changes into the obsolete class"? Do you want to convert a serialized data in the database to be compatible with a new version of the class? View the original post :

[JBoss-user] [Installation, Configuration & Deployment] - JBoss 4.0.1 on Solaris 10 with JDK 1.5

2005-09-10 Thread polsa
Hi all, I know this topic has been already discussed in the forums but I did not find any helpful answers on this. I try to run JBoss 4.0.2 with JDK 1.5 on Solaris 10. When executing run.sh I get the following exceptions: 2005-09-10 15:21:03,773 ERROR [org.apache.catalina.core.ContainerBase.[jb

[JBoss-user] [Beginners Corner] - Re: Jboss warning(No appenders could be found for logger) du

2005-09-10 Thread jaikiran
You will have to place log4j.xml or log4j.properties in your classpath View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893902#3893902 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3893902 --

[JBoss-user] [Security & JAAS/JBoss] - Type of Principals: Roles, CallerPrincipal?

2005-09-10 Thread evrim
Hi, I'm using DatabaseLoginModule and seen RoleGroups. I have put 'Roles' in order jboss to load correctly. What is the aim of 'other' values of this rolegroups column? I've seen 'CallerPrincipal' somewhere on the web. I know there is something like context.getCallerPrincipals() inside my ej

[JBoss-user] [Security & JAAS/JBoss] - programatic security: How to get current (String)SecurityDom

2005-09-10 Thread evrim
Hi, I'm trying to implement accounting service with single sign on. My question is, i need to put some programatic security. (i'm currently not using any security proxies) Setup is simple, a web app having security domain java:/jaas/X and an session bean having security domain java:/jaas/Y. I

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: ObjectNotFoundException - But I know it might not be the

2005-09-10 Thread sisepago
if you do not know about the primary key, the best practice is to use the methode Session.get(Class clazz, Serializable id), because when a persistent object with this id does not exit, then the method returns null View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[JBoss-user] [Installation, Configuration & Deployment] - insert null into non-nullable column

2005-09-10 Thread jeusdi
Jboss dumps this message--> anonymous wrote : java.sql.SQLException: Try to insert null into a non-nullable column: column: RO | LEID table: ROLE in statement [INSERT INTO ROLE (roleID, descripcio) VALUES (?, | ?)] Mmm, I have an UserBean, an UserInfoBean, a RoleBean and a GroupBean Entity

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - ObjectNotFoundException - But I know it might not be there

2005-09-10 Thread mcaughey
I've got a problem that I expect is not unusual. I may simply be approaching this the worng way. I'm doing a look up in a table where the primary key may not exists. I'm using session.load( class, Integer ) to find my object. | Person person = (Person)session.load( Person.class, new Inte

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: You cannot set autocommit during a managed transaction!

2005-09-10 Thread mcaughey
If your running in an EJB the container is managing your transaction. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893874#3893874 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3893874 ---