[JBoss-user] EJB in ear referencing EJB outside of ear

2001-11-15 Thread Richard Doust
Hi. I'm confused by the J2EE Spec. I know it's possible for an EJB packaged in a jar and deployed inside of an ear to reference an EJB that does not exist inside the ear. I have gone from packaging all EJBs inside the ear to deploying one externally, (on my way to deplolying most of them externall

Re: [JBoss-user] Security

2001-11-15 Thread Guy Rouillier
jboss.jcml has clear text passwords all over the place so I don't see that as a major problem. A password in the config file is better than no password at all. What do you mean by "sun JMX adaptor has authorization capability, but it is not accessible via the MBean"? Is the source available? -

Re: [JBoss-user] problem calling remote corba servers from an EJB...does jboss hack something with sun ORB ?

2001-11-15 Thread Francisco Reverbel
Hi, JBoss does nothing with Sun's ORB. It seems that orb.string_to_object() cannot find the IIOP stub it needs to generate a CORBA object reference. It attempts to extract a codebase from your IOR, but there is no codebase component in the IOR: --IOR components- TypeId :

RE: [JBoss-user] problem calling remote corba servers from an EJB... does jboss ha ck something with sun ORB ?

2001-11-15 Thread Bill Burke
JBoss does not effect CORBA at all. Maybe you're missing some classes/jars? Maybe Sun's implementation tries to narrow an object right away on a string_to_object and it can't find your stubs? I've got no clue dude. Bill > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PR

[JBoss-user] problem calling remote corba servers from an EJB... does jboss hack something with sun ORB ?

2001-11-15 Thread Coetmeur, Alain
I'm using an EJB that try to contact a corba service I can easily contact the service from classic application outside Jboss however the same code fails inside the EJB when resolving the orb.string_to_object(lilaIOR); [Default] LilaFactoryClientImpl.init():java.lang.NullPointerException [Defa

Re: [JBoss-user] Security

2001-11-15 Thread David Jencks
I thought Andy wrote an ejb that exposed the jmx capability, so you could use ejb security to control access to the server. I haven't seen a servlet to show you the results, though. david jencks On 2001.11.15 10:57:49 -0500 Guy Rouillier wrote: > On a related note, I like the JMX management ca

Re: [JBoss-user] Security

2001-11-15 Thread Julian Gosnell
It should just be a Servlet wrapping the JMX Agent[s], reusing all the HTTP code present in the Servlet container. Then you could simply stick some declarative security into it's web.xml - however, AFAIK, it isn't ! I haven't given it much thought - but there is probably a good reason why it isn

Re: [JBoss-user] Security

2001-11-15 Thread Fred Loney
The sun JMX adaptor has authorization capability, but it is not accessible via the MBean. The easiest way to add security is to wrap the HtmlAdaptorServer in an MBean that initializes authorization. I've done something similar in a different context, and am willing to submit such a contribution if

RE: [JBoss-user] MS SQL JDBC Driver problem

2001-11-15 Thread David Cao
I made select work with jboss now, this means the finder will work, and the loader still not work, I got error say " Unable to create PreparedStatement" Thanks. the conf: org.jboss.pool.jdbc.xa.wrapper.XADataSourceImpl DevODBC jdbc:microsoft:sqlserver://intranet:1433 Databa

Re: [JBoss-user] Security

2001-11-15 Thread Guy Rouillier
On a related note, I like the JMX management capability, so I don't want to disable it completely, but I'd like to limit who can get to it. (1) Apparently, the page as delivered has no security - there is no userid/password specified in jboss.jcml, and there is no log on page. Is it possible to

Re: [JBoss-user] Concurrent calls

2001-11-15 Thread Peter Levart
On Thursday 15 November 2001 14:33, Papo Napolitano wrote: > I'm using Jboss 2.4.2 with Tomcat and sometimes I get this error when I > call a method in a Bean. > > How can I do to solve this problem ?? > > [EmbeddedCatalinaServiceSX] StandardWrapperValve[jsp]: Servlet.service() > for servlet jsp t

Re: [JBoss-user] How can I use the DefaultDS from within a client?

2001-11-15 Thread Joachim Schaaf
Hi Dirk, > Hi, > > how can I use the DefaultDS within a client. I would like to implement the > Fast-Lane-Reader-Pattern and for that I need connection to my Database. Try: Context jndiCtx = new InitialContext(); DataSource ds = (DataSource) jndiCtx.lookup("java:/DefaultDS");

[JBoss-user] Exception unloading sessions to persistent storage

2001-11-15 Thread Papo Napolitano
I'm using a Webapp that uses EJB Session Beans (Stateful). When I make a rebuild of it a got the following error: [Container factory] Deployed application: file:/usr/JBoss-2.4.2_Tomcat-4.0/jboss/tmp/deploy/Default/usermanager.jar [J2EE Deployer Default] J2EE application: file:/usr/JBoss-2.4.2_T

Re: [JBoss-user] How can I use the DefaultDS from within a client?

2001-11-15 Thread danch
Assuming your client is a standalone app and not a servlet/JSP web-application, sorry, that's not supported in JBoss. The Right Way to do that sort of thing would be to write a J2EE Client that ran in a Client Container - however that is not supported in JBoss at this time. Other servers will

Re: [JBoss-user] How can I use the DefaultDS from within a client?

2001-11-15 Thread David Jencks
DataSources are only available within jboss vm. On 2001.11.15 08:28:21 -0500 storck wrote: > Hi, > > how can I use the DefaultDS within a client. I would like to implement > the > Fast-Lane-Reader-Pattern and for that I need connection to my Database. > > Many Thanks! > > > __

Re: [JBoss-user] Concurrent calls

2001-11-15 Thread danch
Probably what's happening is you have multiple JSPs that the browser might request for at the same time (they're in a frameset or something?) and they both use an EJB that's kept in the session. The easiest thing to do would be to put a synchronized block around your accesses of that EJB: Bea

Re: [JBoss-user] MS SQL JDBC Driver problem

2001-11-15 Thread Edson Carlos Ericksson Richter
I have done some tests, and stated that the problem is port number... I don't know how much compatible is really MS driver, but appear that are working for simple tasks... Best regards, Edson Richter - Original Message - From: "Dmitri Colebatch" <[EMAIL PROTECTED]> To: "David Cao" <[E

Re: SV: [JBoss-user] Security

2001-11-15 Thread jquest jquest
Hi Lennart, thank you. It is the solution for me. Many thanks. >From: "Lennart Petersson" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Subject: SV: [JBoss-user] Security >Date: Thu, 15 Nov 2001 14:25:40 +0100 > >Look in conf/jboss.jcml: > name="Adaptor:name=html"> > 10 > > 8082

[JBoss-user] Concurrent calls

2001-11-15 Thread Papo Napolitano
I'm using Jboss 2.4.2 with Tomcat and sometimes I get this error when I call a method in a Bean. How can I do to solve this problem ?? [EmbeddedCatalinaServiceSX] StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception java.rmi.RemoteException: Application Error: no concurre

SV: [JBoss-user] Security

2001-11-15 Thread Lennart Petersson
Look in conf/jboss.jcml: 10 8082 Shouldn't it be possible to just comment it out, or? /Lennart - Original Message - From: jquest jquest <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, November 15, 2001 1:26 PM Subject: Re: [JBoss-user]

[JBoss-user] How can I use the DefaultDS from within a client?

2001-11-15 Thread storck
Hi, how can I use the DefaultDS within a client. I would like to implement the Fast-Lane-Reader-Pattern and for that I need connection to my Database. Many Thanks! ___ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/list

RE: [JBoss-user] Security

2001-11-15 Thread Marko Štrukelj
Title: RE: [JBoss-user] Security Try uncoment this       10         8082   in your jboss.jcml I'm not sure that way your system will be safe.   enables you to connect and manage jboss via rmi. So you shouild also uncomment this one.     Marko. > -Original Message

[JBoss-user] RE: LdapLoginModule in jboss

2001-11-15 Thread Carlos Ferrão
Hi Maher, After that post I think I made two more on the list. I was already using the org.jboss.security.auth.spi.LdapLoginModule then. I was able to perform authentication against Win2000 AD but every method I call fails authorization. Since then I never tried again because othe

Re: [JBoss-user] Security

2001-11-15 Thread jquest jquest
Hi, Thanks for this answer. It is possible. I need to know how to disable the 8082 port in jboss config. Is it possible ? >From: Peter Fagerlund <[EMAIL PROTECTED]> >To: jquest jquest <[EMAIL PROTECTED]>, >"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> >Subject: Re: [JBoss-user] Security >Date: Thu,

Re: [JBoss-user] Security

2001-11-15 Thread Peter Fagerlund
on 1-11-15 13.08, jquest jquest at [EMAIL PROTECTED] wrote: > Hi all, > I use jboss as application server. > I can call http://my.server.ip:8082 and see the setup of jboss. > How can I disaple this option. The recomendation is : when running a application server, do so behind a firewall ... /pe

[JBoss-user] Security

2001-11-15 Thread jquest jquest
Hi all, I use jboss as application server. I can call http://my.server.ip:8082 and see the setup of jboss. How can I disaple this option. Many thanks in advance. _ Get your FREE download of MSN Explorer at http://explorer.msn.com/in

[JBoss-user] Jar Packaging EJB client applications ... jnp-client.jar problem...

2001-11-15 Thread Coetmeur, Alain
I want to make jar packaged applications that call EJB... I use JDK1.3.1_01a, but jdk1.4 beta behave the same. however the JNDI layer complains: javax.naming.NoInitialContextException: Cannot instantiate class: org.jnp.interfaces.NamingContextFactory [Root exception is java.lang.ClassNotFoun