RE: RE: JNDI naming exception when running app on orion from JBuilder

2002-03-20 Thread DORAN, GRANT
I have done both of the things mentioned and it still doesn't work. The JNDI properties only need to be set explicitly for jbuilder debugging. I am informed by Borland that this is probably because jbuilder is using it's own JNDI settings. When I run the application in orion normally, it works

Re: Trying to get opensymphony transform tags to work with Orion 1.5.4

2002-03-20 Thread Joseph Ottinger
I use them. What's the problem? Installation should be straightforward. - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.comIT Consultant On Wed, 20 Mar 2002, Jarrod Roberson wrote: anyone

R: Forwarding *.jsp from Apache to Orion

2002-03-20 Thread daniele rizzi
yes, I've got! this snippet of httpd.conf sets up a proxy from apache to a web application in orion, so that if you requests http://yoursite/Abr/index.jsp, actually http://localhost:/Abr/index.jsp is called and the content is written back to the calling browser as

Authentication

2002-03-20 Thread Randahl Fink Isaksen
Hi Have anyone of you noticed that the RoleManager contains no log-out method this raises the question How do you log out an application (Swing) client? Randahl

ejbStore not getting called! Please provide any comments you have...

2002-03-20 Thread Alex Paransky
Dear OrionServer group, I know this is a far shot, but I am hoping that someone had a similar experience. The ejbStore method is not being called for an CMP2.0 entity bean. Not all beans, just this one! The record is updated, and seems to be correct somewhere in memory, but it's never written

Silent checking of all web client certificates ?

2002-03-20 Thread Kjell Backlund
Is it possible for an application to silently check all client certificates installed in the browser and then decide to use either one of them or a username/password approach to authenticate the user ? Setting ssl-config needs-client-auth=true... will force the user to choose, but I would like

Help getting started with JMS

2002-03-20 Thread Joe Antkowiak
I'm having some problems getting JMS up and running. I've activated the jms entry in the server.xml. I've checked the jms log file, and it seems to be getting started. I'm using the default port of 9127. Unfortunately, when I run my application client, I get the following exception:

RE: Soap with Axis ?

2002-03-20 Thread Satter, Rabi
GLUE is a product similar to Axis. Although from what I have seen I would say that Axis has a long way to go before it can match GLUE. GLUE product line has two versions, a Standard Edition (Free) which only talks to local classes and a Pro Edition (~$1500/per server) that can talk to Stateless

RE: ejbStore not getting called! Please provide any comments youhave...

2002-03-20 Thread Alex Paransky
I did not mention that I am running Orion 1.5.3 (I cannot switch to 1.5.4) because I have too many entity objects with relations already implemented in 1.5.3). This used to work before, but is not working now. I am not sure what could have changed to cause such a problem. I have already tried

Need some help to implement Clustering

2002-03-20 Thread Prabahkar Subramaniam
Hi, I am unable to implement session failover in orion1.5.2 , getting 'Error while receiving sessions from the cluster'. SETUP: I have 2 win2k servers running jdk 1.3.0_02 and jikes 1.15 with Orion1.5.2. The servers have ids 82 and 83. PROBLEM: Both 82 and 83 are up, I go to page1.jsp

Re: RMI client accessing JMS Topic

2002-03-20 Thread Kesav Kumar
Your'e right RMI client will not have access to java:comp/env. I used jms/theTopic in the lookup to get the topic and the same way to get the connection. I used RMIInitialContextFactory in my jndi.properties. -kesav kumar - Original Message - From: Vidur Dhanda [EMAIL PROTECTED] To:

RE: Concurrent calls to Session bean methods

2002-03-20 Thread john_haasbeek
I haven't seen the history on this issue, but it interests me. I had a quick look at the ShoppingClientControllerEJB class that is given as an example by Sun in the Session Facade design pattern, but couldn't see where they are synchronizing calls. Can you provide some more clues? Thanks,

RE: ejbStore not getting called! Please provide any comments you have...

2002-03-20 Thread injobs
Please do not copy me on any further emails at [EMAIL PROTECTED] or [EMAIL PROTECTED] Alex Paransky

RE: Soap with Axis ?

2002-03-20 Thread Eddie Post
Thanks, With the Standard Edition you could write a local class that basically does a pass through to the EJB (facade pattern). I understand you, but I still don't know how to pass a call ? (do you have an example piece of code ? I never used reflection before and I suppose I should do it with

RE: Concurrent calls to Session bean methods

2002-03-20 Thread Vani H.S.
Thanks for the suggestion, Elephantwalker. Will look into the facade class used in pet store application. Regards, Vani From: The elephantwalker [EMAIL PROTECTED] Reply-To: Orion-Interest [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject: RE: Concurrent calls to Session bean methods

RE: ejbStore not getting called! Please provide any comments youhave...

2002-03-20 Thread Alex Paransky
I seem to have solved my problem. It had to do with boolean isModified() function call. I accidentally added this function to my base class and defaulted the return value to false. Thanks to all that responded. -AP_ http://www.alexparansky.com Java/J2EE Architect/Consultant

RE: Concurrent calls to Session bean methods

2002-03-20 Thread The elephantwalker
John, Here is the offending class, compliments of the Sun Blueprint team: public class ShoppingClientControllerWebImpl implements WebClientController { private ShoppingClientControllerLocal sccEjb; private HttpSession session; public ShoppingClientControllerWebImpl() { } //