Fw: Virus alert

2001-08-29 Thread srinivas
CH.Srinivas Babu Java Application Developer Mobile : 0060163698056 - Original Message - From: "Farid" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 2:51 PM Subject: Virus alert > Pls take note > > Subject: WORST EVER VIRUS (CNN announced) > > > WOR

Re: Problem in message driven beans.

2001-08-29 Thread Parul Verma
Thanks Sir for your kind guidance . Regards, Parul Verma Software Engg. Mahindra British Telecom. Pune-411004. Tel :- 91-20-4018100 (Ext :- 4015). E-Mail :- [EMAIL PROTECTED] - Original Message - From: David Libke <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Sent: Wednesday

Re: Orion and JNI

2001-08-29 Thread Biswajit Nayak
Hi ,     I think your library path is not properly set when you redeploy your application . I was facing the same problem .   Lets say you are accessing your native code in  /private1/oracle/mycode    directory . Lets say the variable name is xyz . So before starting the orion server , Explicitl

RE: Orion and JNI

2001-08-29 Thread Andre Vanha
I think its a limitation of java, it appears you can't load a native library from more than one class loader at a time. To work around it, I have a class that wraps the native library, and load the native library inside a static block as you say. I then make this class available to a higher leve

Re: Does anyone know how to get working Netbeans 3.2 with orion 1.5.2 to debug JSP's?

2001-08-29 Thread Chris Callaghan
Hi Dmitriy You need to start Orion with: java -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -jar orion.jar then in NetBeans, go to Debug menu > Attach, change the Debugger Type to Default debugger (JPDA), Connector to SocketAttach, Host to the hostname of the m

Orion and JNI

2001-08-29 Thread Etienne Bernard
Hi, I am trying to use a native class in a servlet. The library containing the implementation of the native methods is loaded at the servlet initialization (static { ... } block), and everything works fine. However, when my application gets redeployed, the next time I try to access my servlet I

Orion and MS Access for Demonstration

2001-08-29 Thread Bernard Briggs
I've seen two problems that exist with using Orion/EJBs with MS Access.   We're trying to use Access for a small pilot as it is easy to move around.     1)  MS Access or JDBC-ODBC bridge doesn't support the primitive type long   2) MS Access or JDBC-ODBC bridge has a low limit on the size o

RE: Class Reloading

2001-08-29 Thread Juan Lorandi (Chile)
switch to BASIC auth for development only. it's easy to do, just change FORM to BASIC (don't even have to remove the form-login and form-login-error tags). The browser caches any auth that fulfills the Web server's challenge. Therefore, it auto-logins you every-time the web server challenges for a

RE: Upload files

2001-08-29 Thread SAURUGGER,PETER (A-PaloAlto,ex2)
Works fine for me. Only difference is that as in the example I read directly from the PostFileInputStream - to rehash it here: int character; PostFileInputStream in = (PostFileInputStream)element; while ( (character = in.read()) > -1 ) {

RE: Problem in message driven beans.

2001-08-29 Thread David Libke
Parul, For sending a message to a MessageDrivenBean you should only need this entry in the application-client.xml jms/theQueueConnectionFactory javax.jms.QueueConnectionFactory Container jms/theQueueINamed javax.jms.Queue and

Re: Does anyone know how to get working Netbeans 3.2 with orion 1.5.2 todebug JSP's?

2001-08-29 Thread Robert L Gause
I run pretty much the same setup as you. What I've found, is that it is easier to compile the JSP under NetBeans and let it gripe about errors. Servlets and other classes are easy to debug remotely, but JSP's get compiled to servlets and then run. I have had a much tougher time debugging them int

password protecting folders

2001-08-29 Thread Lars Hegemann
dear all, which files do i need to modify and what modifications need to be made exactly to password-protect certain folders in the default-web-app folder? I am no coder, so a simple, straight-forward answer would be appreciated! thanks in advance for all and any replies! Lars ___

ejb calling a remote ejb

2001-08-29 Thread Farzad Yazdi
From my Orion application server I'm trying to use one ejb to call another ejb contained in a second orion container on another machine. In all the documentations I have read that you should only sepcify the remote ejb in your ejb-jar.xml file in the tag . The documentation says that you sh

RE: binding error

2001-08-29 Thread Shlomo Rothschild
You should set the in the home/config/application.xml -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Pazhyvilka, Yury Sent: Wednesday, August 29, 2001 10:39 AM To: Orion-Interest Subject: binding error Dear all, when I try to bind an object to the

Re: TranSaction RequiresNew PROBLEM (follow up)

2001-08-29 Thread Eddie
Noc noc ... Please some help/adivce on the question I posted last week ? Eddie :( - Original Message - From: "Eddie Post" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, August 28, 2001 9:13 AM Subject: TranSaction RequiresNew PROBLEM (follow up) > Hellu, >

binding error

2001-08-29 Thread Pazhyvilka, Yury
Dear all, when I try to bind an object to the InitialContext inside EJB code >> initCtx.rebind( name, ctx.getEJBObject().getHandle()); << I always receive an error: >>Error binding to server: java.lang.SecurityException: User does not have a bind- >>permission for BEAN_NAME does someone have

Resource Adapter (Connector API) -> JNDI?

2001-08-29 Thread Markus Holmberg
How (if possible), can a Resource Adapter (through the Connector API) be mapped into JNDI, in Orion? I might have overlooked something, in that case, bear with me. Markus -- Markus Holmberg | Give me Unix or give me a typewriter. [EMAIL PROTECTED] | http://www.freebsd

Upload files

2001-08-29 Thread Rudi . Fagermo
I try to upload file from a jsp-page with the code below. The code retrieve the file path with in.getFileName() but in.avaiable() is always returning 0. I can not understand why? Can any of you help me with this problem or have any of you done this? Thanks in advance, Rudi. Enumeration en