Re: Unknown Source

2002-04-16 Thread Kesav Kumar
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Orion never had classes open they always obfuscate the class files. You would never see the stack trace meaningful. Oc4j has proper classes so you can get proper stack trace. - - Original Message - From: "Adam Cassar" <[EMAIL PROTECTED]> To

Re: How to display a directory using Orion as a webserver?

2002-04-10 Thread Kesav Kumar
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You need to add directory-browsing="allow" attribute to orion-web-app node in orion-web.xml. You can find this orion-web.xml in applicationdeployments\\ directory. kesav kumar - - Original Message - From: "wzfg" &l

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 Dhand

Re: RMI client accessing JMS Topic

2002-03-19 Thread Kesav Kumar
from where the server is running? I tested running the jmsclient on the same machine where the orion is running. I hope there nothing difference in running locally and running on different machine. Post your code along with jndi.properties it may help in further debugging. - -kesav kumar

Re: Showing Error Messages

2002-03-12 Thread Kesav Kumar Kolla
If you are using IE probably this is the same. You need to modify the settings of IE to see full Error message. Goto Tools->Internet Options->Advanced uncheck show Friendly Error Messages Hope this helps you >From: "Cristian Donciulescu" <[EMAIL PROTECTED]> >Reply-To: Orion-Interest <[EMAIL

Re: Downloading files with MS IE

2002-03-06 Thread Kesav Kumar
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It is possibly because you don't allow caching. IE behaves strangly if your JSP/servlet doesn't cache the page. If possible eliminate NO-Cache header. Try adding content-disposition header with disposition-type="attachment". H

Re: single sign-on for multiple application servers

2002-02-26 Thread Kesav Kumar
m and yy.company.com. Write your own custom session manager which handles the cookies and based on cookie information set the proper SSO credentials. If you have enough budget you can try Entrust's TrueePass solution. -kesav kumar - Original Message - From: "Diethard Kaufmann" &l

Re: Accessing EJB in app 'A' from EJB in app 'B'

2002-02-21 Thread Kesav Kumar
Accessing EJB from another application is exactly the way you access from client. Since each application is independent to each other you have to get the reference of the EJB exactly the same way as you get from client application. You have to provide jndi.properties or you can provide properti

Re: problem with ResultSet Object

2002-02-14 Thread Kesav Kumar
ResultSet is not a seralizable object.  ResultSet is opened cursor to the database.  If you want to pass ResultSet to client i.e jsp/servlet either conver the ResultSet data into you own custom objects or collection classes.  The other alternate is to use CachedRowSet.  CachedRowset is seria

Re: url.openConnection() doesn't allow to pass objects or attributes

2002-02-10 Thread Kesav Kumar
Re: url.openConnection() doesn't allow to pass objects or attributes I used doPost only but still it doesn't. >From: "Kesav Kumar" <[EMAIL PROTECTED]> >Reply-To: Orion-Interest <[EMAIL PROTECTED]> >To: Orion-Interest <[EMAIL PROTECTED]> >Subject: R

Re: url.openConnection() doesn't allow to pass objects or attributes

2002-02-03 Thread Kesav Kumar
I just noticed one more thing with your servlet. It seems that you are using doGet method in your servlet. If you do a post request through URL you need to write doPost method in your servlet. -kesav kumar [EMAIL PROTECTED] - Original Message - From: "prasanth sb" <[EM

Re: MQSeries as JMS provider?

2002-01-30 Thread Kesav Kumar
Look into the archives. Some time back Kaseman, Mark T has submitted his code for MQ-Series JMS integration. I am attaching his code and mail again I wanted to write an MVS Batch COBOL program t

Re: url.openConnection() doesn't allow to pass objects or attributes

2002-01-26 Thread Kesav Kumar
/javatips/jw-javatip34.html -kesav kumar - Original Message - From: "prasanth sb" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Saturday, January 26, 2002 1:27 AM Subject: url.openConnection() doesn't allow to pass objec

Re: Passing Interface as an EJB parameter?

2002-01-08 Thread Kesav Kumar
Legally You can declare return types any Interface though the interface may not be extending from Serializable. The marshalling and UnMarshalling happens on the object at runtime the object which you are returning must be serializable. Kesav Kumar - Original Message - From: "Keit

Re: Orion dies to java.lang.VerifyError

2002-01-08 Thread Kesav Kumar
If you have two different versions of orion servers communicating each other you will get this kind of error. Kesav Kumar - Original Message - From: "Jaakko Saari" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, January 08, 200

Re: Registering of EJB's

2001-12-27 Thread Kesav Kumar
java:comp/env is base context lookup for application clients. If you are writing application client like servlets/jsp or simple java application client there you have to wirte ejb-ref in web.xml or ejb-client-jar.xml. Once you have ejb-ref declared for application client in the code you can looku

Re: HttpSession creation

2001-11-21 Thread Kesav Kumar
write the session="false" on all JSP pages before your login process.   <%@ page session="false"%>   Kesav Kumar     - Original Message - From: Greg Matthews To: Orion-Interest Sent: Wednesday, November 21, 2001 4:34 PM Subject: HttpSession creation hi,   i&#

Re: Using a Message Driven Bean to put in another Queue does not work with 1.5.2 / OC4J

2001-11-14 Thread Kesav Kumar
bean.   Kesav Kumar     - Original Message - From: [EMAIL PROTECTED] To: Orion-Interest Sent: Tuesday, November 13, 2001 3:20 PM Subject: Using a Message Driven Bean to put in another Queue does not work with 1.5.2 / OC4J We have a MDB that processes messages, we need it to put the

Re: Urgent :: How to access JMS service from Servlet/JSP

2001-11-12 Thread Kesav Kumar
You don't need application-client.xml if you want to access JMS from servlets. You have to write your queueconnection and queues in web.xml. Add resoure-ref entries in web.xml jms/theQueueConnectionFactory javax.jms.QueueConnectionFactory Container jms/processQueue javax.jms.Queue Conta

Re: jdbc performance Orion vs. WL

2001-10-24 Thread Kesav Kumar
Try with Oracle OCI drivers. - Original Message - From: "Savotchkin Egor" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, October 23, 2001 11:05 PM Subject: jdbc performance Orion vs. WL > Hi all, > decided to find out who is the fastest when working with DB

RE: 1.5.3 is out, but what is so new?

2001-10-17 Thread Kesav Kumar
Title: RE: 1.5.3 is out, but what is so new? I just had an error after updating my server to 1.5.3.  It seems no more MDB support.  I got NoClassDefFound Exception for javax/ejb/MessageDrivenBean Its surprising. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette

RE: Listening on a JMS Queue on another machine throws exception

2001-09-26 Thread Kesav Kumar
okinto archives some time back I gave all the steps for running JMS server/client. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message- From: Stephen Davidson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 26, 20

Re: Clusters, JMS, and standalone applications

2001-09-25 Thread Kesav Kumar
You should be able to keep one machine as JMS server and run different subscribers/publishers on different machines. This only gotcha is you can't run the subscribers as MessageListeners, I tried to run subscriber as a listener on different machine but some how the listener mode doesn't work. Fo

Re: Listening on a JMS Queue on another machine throws exception

2001-09-25 Thread Kesav Kumar
SchemaEJB.java:20 ) > at > com.hrnexus.custsetup.ejb.CreateSchemaEJB$1.run(CreateSchemaEJB.java:238) > at java.lang.Thread.run(Thread.java:484) > > > > Kesav Kumar wrote: > > > > In your jms.xml on the machine where the jms server is running should &

Re: Classpath Structure Problem ?

2001-09-23 Thread Kesav Kumar
How do you load your class dynamically? Are you loading your class from the application's class loader or the system classloader? Try to load the class from the application's class loader by the following method Thread.currentThread().getContextClassLoader().loadClass(""); the above method tri

RE: Help me

2001-09-20 Thread Kesav Kumar
For error 1) You have to copy tools.jar to c:\orion directory For error 2) You have to provide jndi.properties for accessing client.  You have to provide username/password for JNDI lookup.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound

RE: Persistent JMS Queue

2001-09-13 Thread Kesav Kumar
Title: RE: Persistent JMS Queue I think its been fixed in 1.5.2.  What version of orion are you using? Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Re: Calling EJB From a Servlet..

2001-09-11 Thread Kesav Kumar
If you are trying to get the ejb which deployed in another application You lookup should be directly the JNDI name of the ejb. context.lookup("ejb/HelloHome"); instead of java:comp/env/xxx. If your EJB in the same application then only you can lookup from the env. - Original Message -

RE: Cross Linking ejb's from different Applications?

2001-09-10 Thread Kesav Kumar
itial context. Steps: Hashtable env = new Hashtable(); env.put(Context.PROVIDER_URL, "ormi://localhost/"); Context ctx = new InitialContext(env); Now make a lookup for your EJB.  No need to give any ejb-ref elements in the web.xml. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6

Re: Changing the RMI Port

2001-09-10 Thread Kesav Kumar
In orion config directory there will be a file named rmi.xml.  In rmi.xml you can give different port number. - Original Message - From: Rajiv R To: Orion-Interest Sent: Sunday, September 09, 2001 10:22 PM Subject: Changing the RMI Port Hi...   I a

RE: Calling a EJB application with in the Default servlet Context

2001-09-07 Thread Kesav Kumar
Two ponints to cosider.   1) Are you deploying EJB and servlets under same application?  My guess is you are trying to use default servlet context then did you deploy the EJB in application.xml?   2) Is your JNDI name of the EJB is matching with the ejb-ref name in the web-xml?   Kesav

RE: Listening on a JMS Queue on another machine throws exception

2001-09-04 Thread Kesav Kumar
machine. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message- From: Stephen Davidson [mailto:[EMAIL PROTECTED]] Sent: Monday, September 03, 2001 1:25 PM To: Orion-Interest Subject: Listening on a JMS Queue on another

RE: Having problem when installing more than 2 applications and both has ejbs as part of it.

2001-08-30 Thread Kesav Kumar
Title: RE: Having problem when installing more than 2 applications and both has ejbs as part of it. I have 3 different applications running on single orion server.  I never had any problem with them.  It seems that you have some thing wrong with your application setup. Kesav Kumar Kolla

RE: JavaMail/Orion

2001-08-30 Thread Kesav Kumar
                Container             In your program get the mail session by using lookup Context ctx = new InitialContext(); javax.mail.Session session = (javax.mail.Session)context.lookup("mail/MailSession"); Kesav Kumar Kolla Voquette Inc 650 356 3

RE: Ant to compile and deploy one file

2001-08-23 Thread Kesav Kumar
stamps works perfectly well.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message-From: Kevin Duffey [mailto:[EMAIL PROTECTED]]Sent: Friday, August 24, 2001 1:43 AMTo: Orion-InterestSubject: RE: Ant to compile

RE: Registering PL/SQL table OUT parameter in jdbc andretrieving ( challenging question)

2001-08-23 Thread Kesav Kumar
}             if(con != null) try{con.close();}catch(Exception _ex){}         }     } } Hope this helps you. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information > -Original Message- > From: Komal Kandi

RE: Orion and JMS: javax.naming.NameNotFoundException]

2001-08-22 Thread Kesav Kumar
ookup("java:comp/env/jms/QueueConnectionFactory"); > > > // Exception is thrown in the line above > > > ... > > > The facts: > > > .- JMS Server seems to have been started, as I can see the > > jms.log file > > &

RE: Registering PL/SQL table OUT parameter in jdbc and retrieving ( challenging question)

2001-08-21 Thread Kesav Kumar
inside the package.  You can get more info in the oracel documentation. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information > -Original Message- > From: Komal Kandi (Contractor) [mailto:[EMAIL PROTECTED]] > Sent: Tuesday,

Re: Finding an entity in a Collection returned by findAll()

2001-08-16 Thread Kesav Kumar
You need EJB-QL. With EJB-QL you can specify the SQL like queires which gives all the objects that match the query. Example: in your home have a method like this. public java util.Collection findMatchPassword(String passwd) throws FinderException, RemoteException In your deployment descriptor w

RE: ORA-01000: maximum open cursors exceeded Exception

2001-08-14 Thread Kesav Kumar
=truedebug.jdbc.check=truejdbc.connection.debug=true   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message- From: Alex Paransky [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 6:51 PM To: Orion-Interest Subject: ORA

RE: JMS Client throwing error

2001-08-14 Thread Kesav Kumar
Title: RE: JMS Client throwing error Just remove the queue-connection-factory from jms.xml and try. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message- From: Vijay Pawar [mailto:[EMAIL PROTECTED]] Sent

RE: SSL/ORION/urlencoding

2001-08-14 Thread Kesav Kumar
rvlets spec the URL encoding should append the jsessionid before the querystring.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message-From: remy.menetrieux [mailto:[EMAIL PROTECTED]]Sent: Tuesday, August 14,

RE: Orion-Interest subscription notification

2001-08-13 Thread Kesav Kumar
ery string. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) VoquetteDelivering Sound Information -Original Message- From: remy.menetrieux [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 8:36 AM To: Orion-Interest Subject: Re: Orion-Interest subscription no

RE: SessionContext.getEJBObject()

2001-08-13 Thread Kesav Kumar
Title: RE: SessionContext.getEJBObject() The client code must use the javax.rmi.PortableRemoteObject.narrow(...)method to convert the result of the getEJBObject() method invoked on a handle to the remote interface type. EJB-pfd2(Section6.6) Kesav Kumar Kolla Voquette Inc 650 356 3740(W

RE: [OT] Getting the machine name from JSP

2001-08-09 Thread Kesav Kumar
Title: RE: [OT] Getting the machine name from JSP Remember your JSP's are running on the same m/c as the server running.  JSP is nothing but a peice of java code so if you want to get the local machine name in java use java.net.InetAddress class. Kesav Kumar Kolla Voquette Inc 650 356 3

RE: Error binding to server...... Exception

2001-08-07 Thread Kesav Kumar
element.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message-From: Vikas Malhotra [mailto:[EMAIL PROTECTED]]Sent: Monday, August 06, 2001 10:40 PMTo: Orion-InterestCc: Kesav KumarSubject: Re: Error binding

Re: What happened to this mailing list???

2001-08-06 Thread Kesav Kumar
y know if it works in other servlet engines. Needless to say, I did add the redirect capability to my MVC framework just incase.   -Original Message-From: Kesav Kumar [mailto:[EMAIL PROTECTED]]Sent: Monday, August 06, 2001 4:58 PMTo: Orion-InterestSubject: RE:

RE: What happened to this mailing list???

2001-08-06 Thread Kesav Kumar
ndependent and their resource loading and class loading are different.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message-From: Duffey, Kevin [mailto:[EMAIL PROTECTED]]Sent: Monday, August 06, 2001 12:41 P

RE: Error binding to server...... Exception

2001-08-06 Thread Kesav Kumar
ctory.  This way orion deployes freshly the application and all new references will be made.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message-From: Vikas Malhotra [mailto:[EMAIL PROTECTED]]Sent: Monday, Augu

RE: Anyone experience any problems with JDBC Oracle drivers and JDK 1 .3.1 with connection pooling?

2001-07-26 Thread Kesav Kumar
problems.  Get the latest classes12.zip from oracle at the following URL http://technet.oracle.com/software/tech/java/sqlj_jdbc/software_index.htm.  Get the Oracle8i8.1.7 JDBC drivers for use with JDK1.2.x for NT.  Unpack the zip and then copy the classes12.zip to orion\lib directory.   Ke

RE: DataSources..how to get servlets to work with them?

2001-07-26 Thread Kesav Kumar
rces.xml. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: Duffey, Kevin [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 10:13 AM To: Orion-Interest Subject: DataSources..how to get servlets to work w

RE: How do u unsubscribe ?

2001-07-24 Thread Kesav Kumar
Title: RE: How do u unsubscribe ? Just remove the words "How do u" and "?"  you will be out of the list. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: Gurinder Randhawa [mai

RE: How can I get all attributes of a context?

2001-07-19 Thread Kesav Kumar
       enu.close();         enu = null;         name = null;     } catch(Exception ex)     {         ex.printStackTrace();     } } Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From

RE: SOAP interface for ejb beans

2001-07-18 Thread Kesav Kumar
Title: RE: SOAP interface for ejb beans Apache Soap2_2 is already having this. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: Jon Ward [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 2:52

RE: Clustering..

2001-07-17 Thread Kesav Kumar
e JSP has to provide or the session replication mechanism should facilitate this.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message-From: Greg Matthews [mailto:[EMAIL PROTECTED]]Sent: Tuesday, July 17, 2001

RE: Some questions concerning deploy multiple web apps in one server; how to share resources, etc.

2001-07-17 Thread Kesav Kumar
Title: RE: Some questions concerning deploy multiple web apps in one server; how to share resources, etc. You can use virtual-directory option in orion-web.xml. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message

RE: "Error instantiating web-application" - after adding a Servlet Fi lter.

2001-07-17 Thread Kesav Kumar
Title: RE: "Error instantiating web-application" - after adding a Servlet Fi lter. Try using the normal Servlet2.3 Filters. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: Larry Linville J

RE: External JMS broker with Orion

2001-07-17 Thread Kesav Kumar
text properties for resource-ref elements.  With this you can access any JNDI resource in your EJBs.  In future versions orion may add MDB to support external JMS servers. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Me

RE: Clustering..

2001-07-16 Thread Kesav Kumar
s boaring just ignore this mail. This is the same problem which I faced and lead me to write my own session management. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Application Name

2001-07-15 Thread Kesav Kumar
which according to the java.sun.com is in "Proposed Final Draft 2" > state). > > Is there an implementation of this that works with Orion? Is there some > other way to query this information? > > Wayne > > -Original Message- > From: [EMAIL PROTEC

RE: Application Name

2001-07-13 Thread Kesav Kumar
application by the display-name element. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: Wayne Franklin [mailto:[EMAIL PROTECTED]] Sent: Friday, July 13, 2001 12:31 PM To: Orion-Interest Subject: Application Name

RE: Cluster configuration

2001-07-06 Thread Kesav Kumar
In your application's web.xml add and in orion-web.xml add   Thats it you are ready for the webtier clustering.   Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) -Original Message-From: Alessandro Fustini [mailto:[EMAIL PROTECTED]]Sent: Friday, July 06,

Bug number 493

2001-06-20 Thread Kesav Kumar
Title: Bug number 493 I reported a bug Number 493 regarding the JMS NullPointer Exceptions.  Plz vote for this bug. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information

RE: JMS Examples not working

2001-06-20 Thread Kesav Kumar
Title: RE: JMS Examples not working plz look into the archives.  I have explained step by step procedure for JMS to work. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original

Re: order of tags in xml configuration files

2001-06-13 Thread Kesav Kumar
Adding to the following you can get all dtds which are used by orion are packaged in orion.jar. If you open the orion.jar using any zip utility you can see all the dtd files(sort by Type). Extract them and have a reference of these dtds for your comparision. I use XmlSpy for editing my XML file

RE: Force Logon after X minutes

2001-06-13 Thread Kesav Kumar
;Counter");         response.setHeader("WWW-Authenticate", "Basic realm=\"My Realm\"");         response.sendError(response.SC_UNAUTHORIZED);         return;     } %>     I received: <%=auth%>     Counter: <%=sess

RE: Resin and OC4J (The server formerly known as Orion)

2001-06-13 Thread Kesav Kumar
Title: RE: Resin and OC4J (The server formerly known as Orion) Should be same unless OC4J messup with something. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Message

RE: How do i cache a JSP on the proxy?

2001-06-08 Thread Kesav Kumar
caching is done in memory and optionally file. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Message- From: Stan Ng [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 12:15

RE: Orion Server and MS Access!

2001-06-08 Thread Kesav Kumar
Should be.  If you have jdbc-odbc bridge and your odbc is setup properly for the access then orion doesn't have any problem in talking with that.  You have to remember that MSAccess doesn't support many JDBC2.0 features.  Go through the JDBC-ODBC bridge docs from javasoft.   K

RE: How do i cache a JSP on the proxy?

2001-06-08 Thread Kesav Kumar
() {     File file = new File(getServletContext().getRealPath("jspfilename.jsp"));     return file.lastModified(); } Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Origin

RE: JDOM and orion 1.5.2

2001-06-07 Thread Kesav Kumar
Title: RE: JDOM and orion 1.5.2 I think you might be using old version of JDOM.  Update your JDOM with latest beta6 or what ever.  Now JDOM is also a JAXP complince.  JDOM uses JAXP for searching parsers. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http

RE: I require step by step install instructions for Pet Store1.1.2 on Orion please?

2001-06-06 Thread Kesav Kumar
Title: RE: I require step by step install instructions for Pet Store1.1.2 on Orion please? Add import="java.io.*" to your errorpage.jsp in the main <%@page%>tag. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voque

Re: Xerces.jar

2001-06-05 Thread Kesav Kumar
If you want your xerces.jar to be picked from your classpath keep xerces.jar in \lib\ext directory. - Original Message - From: "Eduardo Estefano" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 8:46 AM Subject: Xerces.jar > After upgrading to or

Re: Oracle 9ias Container for J2ee (oc4j)

2001-06-03 Thread Kesav Kumar
Its really a good news. Now we can get quality of orion with added support and documentation from Oracle. I am really excited about this move. Now orion(sorry OC4J) will definetly lead all other J2EE vendors especially BEA. With this Orcale has also got existance in J2EE market place. I just p

Re: Creating a client application

2001-06-02 Thread Kesav Kumar
If you want to access the ejb which deployed in orion from a client application do the following. create a file named jndi.properties with the following properties in it. java.naming.factory.initial=com.evermind.server.ApplicationClientInitialCont extFactory java.naming.provider.url=ormi://local

Re: Database Pooling with Orion

2001-06-02 Thread Kesav Kumar
In orion/config directory there is a file datasouces.xml look into this file this gives you an idea of how to setup database pool. If you need more information regarding each element in datasource.xml look into the following link http://www.orionserver.com/docs/data-sources.xml.html - Orig

JMS Help please

2001-05-31 Thread Kesav Kumar
guide what is going wrong. Thanks. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information

Re: Searching for a web host

2001-05-26 Thread Kesav Kumar
You can try this http://www.ejip.net/index.jsp - Original Message - From: "Vidur Dhanda" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Saturday, May 26, 2001 7:00 PM Subject: Searching for a web host > Hi, > > Can anyone recommend a web hosting service in the US

Re: help jsession problem -urgent

2001-05-25 Thread Kesav Kumar
=x > > ?? > > > > It looks like you have a semicolon where an ampersand should be: > > http://localhost/vms/servlet/Logout?fileName=blah&JSESSIONID=x > > > > The correct method of separating multiple URL parameters is with an > > ampersand, &g

Re: HELP! 1.4.5 and JMS

2001-05-25 Thread Kesav Kumar
Thanks for the tip. I tried that with both 1.4.5 and 1.4.8. After > > removing the connection factory line, in 1.4.5, the client hangs on > > TopicConnection.createSubscriber(). If I give the createTopicConnection a > > username and password, then the server throws a NPE and the clie

Re: HELP! 1.4.5 and JMS

2001-05-24 Thread Kesav Kumar
ttaching some code in the hope that someone can help me out of this mess.  I've tried it against 1.4.5 and 1.4.8.  And I am really desperate! Thanks, Vidur Kesav Kumar wrote:   Just remove the connectionfactory line from your jms.xml. Kesav

help jsession problem -urgent

2001-05-24 Thread Kesav Kumar
strips out the jessionid from the name value paris of the request.  It seems it is happening in the new version only. I am using 1.5.1 version.  I haven't seen this problem in the previous versions.  Is there some thing I am missing or is it a bug? Thanks. Kesav Kumar Software Engineer Voquett

Urgent: Message Driven Beans

2001-05-17 Thread Kesav Kumar
ere I can specify which Queue name. thanks Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information

RE: [1.4.8] WebContainer bug

2001-05-17 Thread Kesav Kumar
Title: RE: [1.4.8] WebContainer bug Add a library path in your application.xml Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Message- From: Steffen Stundzig [mailto

RE: HELP! 1.4.5 and JMS

2001-05-17 Thread Kesav Kumar
Title: RE: HELP! 1.4.5 and JMS I just tried by sending 135K text message with JMS it works fine for me. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Message- From

RE: HELP! 1.4.5 and JMS

2001-05-17 Thread Kesav Kumar
Send me your code I will give a try.   Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Message-From: Vidur Dhanda [mailto:[Kesav Kumar]  ]Sent: Wednesday, May 16, 2001

Re: HELP! 1.4.5 and JMS

2001-05-16 Thread Kesav Kumar
ction(username, password).     I hope this will work.   - Original Message - From: Vidur Dhanda To: Kesav Kumar Cc: 'Orion-Interest' Sent: Wednesday, May 16, 2001 7:16 PM Subject: Re: HELP! 1.4.5 and JMS Hi Kesav, Thanks for the tip. I tried that with both

RE: HELP! 1.4.5 and JMS

2001-05-16 Thread Kesav Kumar
Title: RE: HELP! 1.4.5 and JMS Just remove the connectionfactory line from your jms.xml. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Message- From: Vidur Dhanda

RE: Demo JMSChat doesn´t work with Orion 1.4.8

2001-05-15 Thread Kesav Kumar
Title: RE: Demo JMSChat doesn´t work with Orion 1.4.8 Try to debug till what line it goes.  Print out the factory, connection and Topic at each step after you get from the lookup.  See till what line it goes.  Do you have jndi.properties in your classpath? Kesav Kumar Software Engineer

Re: Demo JMSChat doesn´t work with Orion 1.4.8

2001-05-14 Thread Kesav Kumar
In 1.4.8 onwards you have to supply username/password while creating connection from connectionfactory. Modify the line TopicConnection connection = factory.createTopicConnection(); with TopicConnection connection = factory.createTopicConnection("admin", "admin"); - Original Message ---

Re: Session Invalidate Exception

2001-05-13 Thread Kesav Kumar
; If orion needs the memory, it will recover the objects which aren't being > used, because they are part of a pool of objects. > > Don't worry so much about the memory stuff, because those guys in Sweden are > taking care of this for us. > > Regards, > > the eleph

Re: Session Invalidate Exception

2001-05-12 Thread Kesav Kumar
gt; following is true: > > > . The client does not yet know about the session > > > . The client chooses not to join a session. This implies that > > > the servlet > > > container has no mechanism by which to associate a request > > > with a previous > > >

Re: init params

2001-05-12 Thread Kesav Kumar
You have given init parameter to the servlet thats the reason your first two statements given correct result. The thrird one looks for the context parameter which you haven't set. Refer the difference between the ServletInitParameter and the Context-Parameter. For contextparameter you have give

RE: Session Invalidate Exception

2001-05-11 Thread Kesav Kumar
Title: Session Invalidate Exception If there is no valid session getSession(false) should return null is in't it?   Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information -Original Me

Are the JMSConnections are pooled?

2001-05-11 Thread Kesav Kumar
connection pool for JMS? Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information

Session Invalidate Exception

2001-05-11 Thread Kesav Kumar
d 10374)]._kj._qbc(Unknown Source)     at com.evermind[Orion/1.4.8 (build 10374)]._kj._oa(Unknown Source)     at com.evermind[Orion/1.4.8 (build 10374)]._jw.run(Unknown Source) Any ideas why is it happening? Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAI

Which parser orion1.4.8 use?

2001-05-10 Thread Kesav Kumar
Title: Which parser orion1.4.8 use? I found crimson.jar parser.jar xerces.jar xalan.jar out of them which parsers orion1.4.8 use for SAX and TRAX(XSL transformation)? Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette

Orion doesn't understand HEAD request

2001-05-10 Thread Kesav Kumar
.   Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com Voquette...Delivering Sound Information

RE: can we deploy Ejb.jar into orion without using EAR

2001-05-09 Thread Kesav Kumar
Title: RE: can we deploy Ejb.jar into orion without using EAR Create all your classes(home, remote, EJB) write a deployment descriptor ejb-jar.xml keep the ejb-jar.xml in Meta-inf directory of your application.  This works fine. Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740

RE: Message driven beans

2001-05-08 Thread Kesav Kumar
ainer             Modify the Queue with corresponding Topic. If you want to access this same Queue/Topic from your servlets/jsps you need to add the above lines in the web-xml of your application. I hope this works for you also. Kesav Kumar Software Engineer Voquette, Inc. 650 356

  1   2   >