Cloudscape... ClassNotFound Exception

2000-11-01 Thread ishpal
m.o8(JAX) at com.evermind.util.e.run(JAX) Where could I be wrong , or is there some other technical problem. Thanks, Ishpal.

Re: Announcement: simple Application Generator

2000-09-28 Thread ishpal
Hi, I'd be interested in a copy :-) Thanks, Ishpal - Original Message - From: Klaus Thiele <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Sent: Thursday, September 28, 2000 4:57 PM Subject: Announcement: simple Application Generator > Hello, >

Re: not about Orion, some JDBC questions...

2000-09-19 Thread Ishpal
Hi, The implementation of these interfaces is given by jdbc driver vendor. If you see the source code given by the vendor, u'll find classes instead of interfaces... Hope this helps (if i'm not wrong ) Bye, Ishpal ³¯§Ê¹Å wrote: > > Hello: > > 1. I view the s

Re: xml validation

2000-09-18 Thread Ishpal
Hi Derek, The best way to get data out of XML is to use a SAX Parser. I use the Xerces's SAX Parser from xml.apache.org. It does validate the xml against a given dtd and works great. Bye, Ishpal. > Derek Akers wrote: > > > I am building an application that received

Re: HELP: Cannot understand DeadLock

2000-09-15 Thread ishpal
ge this. Anyway it is an > intermittent problem. Ie doesn't always happen. Seems to ocurr under heavy > (concurrent) load. > > Simon. > ----- Original Message - > From: "Ishpal" <[EMAIL PROTECTED]> > To: "Orion-Interest" <[EMAIL PROTECTED]&g

Re: AW: BMP Problem

2000-09-15 Thread Ishpal
DuplicateKeyException I think I'd have to set context.setRollbackOnly() after I catch this exception. Thanks, Ishpal... Jens Stutte wrote: > > Hi. > > It should not be neccessary to commit the changes yourself if you are using > the right datasource (the ejb-location). One clu

Re: HELP: Cannot understand DeadLock

2000-09-15 Thread Ishpal
Hi, May be u r not committing the changes to the database... i.e. ur code might be missing connection.commit() before u close the connection to the database -- may be this helps.. bye, Ishpal > Simon Harris wrote: > > Here is a trace from the log file. I don't understand ho

Re: BMP Problem

2000-09-14 Thread Ishpal
Hi , May be u've seen my mail regarding the BMP Problem... Well, my problem has been solved. I was not committing the changes to the database before closing the connection... In the finally block I included con.commit() and now it works fine... Thanks, Ishpal.

BMP problem

2000-09-14 Thread Ishpal
Deployment descriptor is:-- First BMP EJB to add user to table PROFILEBEAN AddUserBMPBean AddUserBMPBean hello.BMPEntityBeans.AddUserBMPHome hello.BMPEntityBeans.AddUserBMP hello.BMPEntityBeans.AddUserBMPBean Bean hello.BMPEntityBeans.AddUserBMPPK False -- The orion-ejb-jar.xml entry for this Bean is:-- I desperately need some help... Thanks , Ishpal.

Re: XSL example

2000-09-08 Thread Ishpal
Thanks Kev, You are right. Stupid kinda mistakes... But it worked with Resin, so didnt think about them. Thanks again, Bye, Ishpal. Kev Palfreyman wrote: > > The problem is in your XSL file. You have many table elements with unquoted > attribute values. > > Kev >

Re: XSL example

2000-09-08 Thread Ishpal
Hi, May be I should have included my files.. Why do i get the following error while the examples run fine... Source XML Error: Value must be quoted. I have tried putting quotes in the xml file, but nothing seems to work. Pls Help, Thanks in advance.. Ishpal

Re: XSL example

2000-09-08 Thread Ishpal
s with and without quotes.. but nothing seem to work... Please help... Thanks, Ishpal.

Error deserializing session

2000-08-24 Thread Ishpal
Hello, I have a strange kinda error... ProfileManagerEJB is a stateful session bean. I had done a proper shutdown using "java -jar admin.jar ormi://localhost/ admin ishpal -shutdown". when I restart the server I see this error. Error deserializing session: java.io.InvalidClas

Orion-primer

2000-08-23 Thread Ishpal
"setHelloString(String st0)" method in the bean to set the value of the hello string and a "getHelloString()" method to retireve the set value from the statefull session bean. The value might be set in one servlet and retieved in another. Thanks in advance, Ishpal.

Re: Offbeat...Cloudscape

2000-08-22 Thread Ishpal
True in case of BMP... But I'm using CMP with the Entity Beans so I myself dont want to write any code and take full advantage of CMP. Ishpal. > Magnus Rydin wrote: > > It doesnt like to good old > insert into x (id,something) values ((select max(id)+1 fro

Offbeat...Cloudscape

2000-08-22 Thread Ishpal
generated automatically. Thanks, Ishpal

Re: Trouble with Rmi-Cloudscape from Orion

2000-08-18 Thread Ishpal
e:rmi://ishpal2:5/HelloWorldDB;autocommit=false"); And (now) my datasource in datatsources.xml is as... The drivers to connect to the database are different , but now I can connect to the database. Thanks (once again). -Ishpal. wim veninga wrote: > >

Trouble with Rmi-Cloudscape from Orion

2000-08-17 Thread Ishpal
ed to connect to the URL jdbc:cloudscape:rmi://ishpal2:5/HelloWorldDB;create=true Its driving me nuts... Is there some kind of setting to be done in some xml file in orion...??? I have to get this thing up or I might be forced to try with other products... please help Ishpal.

Re: Orion and Cloudscape

2000-08-17 Thread Ishpal
a-sources.xml file... It works pretty cool. The problem now is that when i try to shutdown the server using "admin.jar -shutdown" , the database instance is not shutdown... so next time I get a message like... WARNING: Cloudscape (instance c013800d-00e1-0894-8651-007f0100) is at

Re: Creating a JNDI entry

2000-08-12 Thread ishpal
You have to get hold of the Orion's context For that you'll have to include orion.jar,jndi.ar,ejb.jar in ur command line classpath when executing the client in a seperate JVM. My Client code is:- Context ctx = new InitialContext(); Object objref = ctx.lookup("Hello"); (Hello is the

CMP:Exception in thread "main" java.lang.InternalError

2000-08-10 Thread Ishpal
key class... . The value gets added in the database. But the client terminates by throwing the above exception. Where could I go wrong. Please help.. Thanks, Ishpal.

Re: JDBC Connection problem

2000-07-27 Thread Ishpal
the orion/lib directory.. # java -jar orion.jar Error initializing server: DriverManagerDataSource driver 'org.gjt.mm.mysql.Driver' not found What could the problem be .. Thanks, -Ishpal Dave Smith wrote: > > You have updated the wrong fields. > > Y

JDBC Connection problem

2000-07-26 Thread Ishpal
I dont want to use any other database right now. Any help would be highly appreciated. Thanks, Ishpal.