How can we run JMS server on a different machine

2000-12-28 Thread Gitanjali_Singh
Placed At : BLR Gitanjali Singh@SATYAM 12/14/2000 04:05 PM Can we have JMS server running on a separate machine and Orion server running on another machine?When I run the orion server on one system and from another machine ,I run another machine

Offtopic:Ant Build scripts

2000-12-28 Thread Aniket V U
Hi folks, can somebody please send me a sample ANT build file for making ears for orion. Thanks Aniket

Re: Offtopic:Ant Build scripts

2000-12-28 Thread Ernst de Haan
Aniket, I suggest you try the Orion Primer: * http://www.jollem.com/orion-primer/ Ernst Aniket V U wrote: Hi folks, can somebody please send me a sample ANT build file for making ears for orion. Thanks Aniket

RE: Offtopic:Ant Build scripts

2000-12-28 Thread Scott Graf
smime.p7m

Re: Offtopic:Ant Build scripts

2000-12-28 Thread James Manning
[Aniket V U] can somebody please send me a sample ANT build file for making ears for orion. The EJB 2.0 example on orionsupport includes some -- James Manning [EMAIL PROTECTED] GPG Key fingerprint = B913 2FBD 14A9 CE18 B2B7 9C8E A0BF B026 EEBB F6E4

RE: Can not locate ..... when running orion under Jbuilder?

2000-12-28 Thread Russ White
The point was that the question was specifically about the wrapper class. You are right about JBuilder decompiling classes when it can, but you forget an important fact. The Orion classes are JAXed (Obfuscated) so that feature is defeated no matter which debugger you use unless you have the

Re: ejbLoad : Error retrieving a picture from DB

2000-12-28 Thread James Manning
[Elhadi barkat] int imgSize = (int)blobObj.length(); // Create byte[] data array to store picture data temporarily // before writing it to a file image = new byte[imgSize]; // Retrieve the picture as a binary stream from the

Re: Can not locate ..... when running orion under Jbuilder?

2000-12-28 Thread Darren Pamatat
Ok, I know from previous uses of Jbuilder on other projects, that Jbuilder allows stepping thru code without having source available. So where does orion put Hello_StatelessSessionBeanWrapper0.class, so I can add it to my classpath, and Jbuilder should pick it up? -Darren --- Boris Gertsberg

Re: Offtopic:Ant Build scripts

2000-12-28 Thread Jay Armstrong
Aniket, You might try downloading the entire Java PetStore (JPS) "blueprint" demo from Sun, which can be rebuilt using ANT. Rather than flood all of orion-interest, I'll try to send the build.xml from JPS1.1 to you directly. Jay Armstrong [EMAIL PROTECTED] At 04:55 PM 12/28/00 +0530, you

EJB generator

2000-12-28 Thread Kemp Randy-W18971
I have been playing with the EJB generator at http://www.nordija.com (EJB builder) and it looks pretty good. Has anyone else used it?

Re: EJB generator

2000-12-28 Thread Joseph B. Ottinger
It's okay, but makes building via ANT or whatever a bit more of a pain, because of yet more classpath issues. On Thu, 28 Dec 2000, Kemp Randy-W18971 wrote: I have been playing with the EJB generator at http://www.nordija.com (EJB builder) and it looks pretty good. Has anyone else used it?

DataSourceUserManager: Deleting users

2000-12-28 Thread Juan Fuentes
Hi folks! I use orion 1.3.8 and DataSourceUserManager to authenticate users. It works OK, but after deleting a user, the server recognizes that user. Is this a bug? I've set the property "staleness" to 1, so info has to be refetched every time a user has to be authenticated. Any suggestion??

Re: Can not locate ..... when running orion under Jbuilder?

2000-12-28 Thread Boris Gertsberg
To Russ: Wrappers generated by Orion are not JAXed. At least they were not JAXed in old verisons. By the way you can use JAD just in case Orion deleted those wrappers too fast. It is a Java decompiler written on C++, so it is very fast. To Darren: Orion compiles wrappers, jar them and put to

RE: Can not locate ..... when running orion under Jbuilder?

2000-12-28 Thread Russ White
You are right, they are not. Thanks! I did not realize the cache file was a jar. :) Thanks for setting me straight on that one. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Boris Gertsberg Sent: Thursday, December 28, 2000 11:21 AM To:

Where to put bean property files

2000-12-28 Thread John Pletka
I have a bean that I'm trying to use in a jsp page that requires a .properties file to initialize itself. It looks for the properties file in the current directory (new FileInputStream("fileName.properties")). I've tried putting the file in the lib directory, the WEB-INF directory, the META-INF

RE: Offtopic:Ant Build scripts

2000-12-28 Thread Jeff Schnitzer
I've attached a buildfile (not the orion-primer buildfile). I wanted the source to mirror the jar file structure (I think this is less confusing) and I didn't like the proliferation of dependencies in the orion-primer example. This is the result. Jeff Schnitzer [EMAIL PROTECTED] -Original

RE: Where to put bean property files

2000-12-28 Thread Tony Wilson
The 'current working directory' for orion is wherever java is executed to run orion. This can be hidden by the admin utility, but you can check the configuration files and attempt to locate the directory that way. Try putting the .properties file in the directory parent to your server.xml

EJB Error Message in Orion Log File

2000-12-28 Thread Mark Bernardinis
When deploying an ejb application and tables need to be created, no matter which tutorial I follow I seem to get this error included within the logs first time. BEGIN ERROR MESSAGE --- Auto-deploying helios-ejb (ejb-jar.xml had been touched since the previous deployment)... SQL

Directories in applications

2000-12-28 Thread Mark Bernardinis
I have created a sample directory underneath an application I created called samples so that I could test cocoon's abilities. I am able to browse to that directory but once all files and directories are listed, their corresponding sizes are all 0KB including the index.xml files. If I attempt to

Re: Where to put bean property files

2000-12-28 Thread Christian Sell
I'd recommend putting it anywhere below the web application directory (the one under which WEB-INF is located) and using servletContext.getResourceAsStream(), e.g. getResourceAsStream("/myfile.properties") if you put it into the wepapp root - Original Message - From: "John Pletka" [EMAIL

Re: Directories in applications

2000-12-28 Thread Mark Bernardinis
Forgive me for being stupid, I forgot to add execute permissions to directories. Mark Bernardinis wrote: I have created a sample directory underneath an application I created called samples so that I could test cocoon's abilities. I am able to browse to that directory but once all files and

Orion and JBuilder E 4 Open Tools

2000-12-28 Thread Robert S. Sfeir
Hello all, Looked through the list threads and there seems to be no clear indication whether anyone has been able to add Orion as one of the Application Servers available within JBuilder. I read the parts for debugging EJBs with Orion within JBuilder, and that seems to be working well,

Re: Where to put bean property files

2000-12-28 Thread Jay Armstrong
Christian, That's what I've been doing and it works fine, but I would love to hear other suggestions. Jay Armstrong [EMAIL PROTECTED] At 10:19 PM 12/28/00 +0100, you wrote: I'd recommend putting it anywhere below the web application directory (the one under which WEB-INF is located) and using

Re: Orion and JBuilder E 4 Open Tools

2000-12-28 Thread Guilherme Ceschiatti
Hi. Look at http://www.orionsupport.com There is a tutorial explaining how to use JB4 with Orion. []s Guilherme Ceschiatti On Friday 29 December 2000 00:16, you wrote: Hello all, Looked through the list threads and there seems to be no clear indication whether anyone has been able to add