I need a litle help ... could you ?

2002-05-27 Thread Bozdoghina Nicolae
I have a problem with cacheing when I'm trying to release a connection to a database. I used Resin like server and MySql like a database server. At the first connection to database the response is good (at the first query), but then, when I have trying to make a new query to database

RE: How do you tell orion not to autocommit?

2002-05-26 Thread Alex Paransky
Wrap a transaction around your operation. This way, the transaction will begin when your operation starts, and commits only when your operation is complete. Unless, you are accessing your entity beans from a client layer. This is one of the reasons why you need to use Stateless session beans to

CMR in EJB 2.0

2002-05-25 Thread Billy Rutledge
Hi All, I have written a simple test web app that has two EntityEJB's (Groups and Person, the relationship is 1-m) to learn more about using CMR with EJB 2.0 on Orion. All code compiles and archives fine using my usual Ant build scripts...but when I deploy my .ear file to Orion, it responds

Re: How do you tell orion not to autocommit?

2002-05-25 Thread prasanth sb
Hi Keith, If you are using Bean managed persistence, then get the connection object using jndi lookup, then use connection.setAutocommit(false). I am not aware how to do this in container managed persistence.Can some great guys explain this?Wish you a good day. thanks, Prasanth

ANN: Atlassian JIRA 1.2

2002-05-24 Thread Mike Cannon-Brookes
Just a short note to let you all know that JIRA 1.2 has been released. JIRA is a J2EE-based issue tracking and project management tool, which was developed (and runs best on!) Orion. It runs as an EAR or a WAR with any database, it's free for non-commercial Open Source use, and very reasonably

get chunk blowing chunks

2002-05-22 Thread Smith Jason
Hi, I am using Orion as a front end to IIS. When accessing a certain page, I get this error. However, I cannot reproduce this in test, even when I point the Orion dev machine at the prod IIS server. The code is exactly the same in both instances. My tunnel servlet just connects to IIS with the

Re: Sessions and W98 + IE

2002-05-22 Thread David Tunkrans
OK. So how do you force 128 bit encryption? By the way take a look at this, could be the answer to the problem... http://www.cnet.com/software/0-3227883-8-8580844-5.html /David - Original Message - From: Stephen Davidson [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent:

Error creating jsp-page instance

2002-05-21 Thread Ramadevi . Lanka
Hi, I am using Oracle9ias which uses OC4j(Oracle Containers for J2EE) which is inturn uses Orion Application Server. For some of the JSPs I am getting the following error: 500 Internal Server Error Error parsing JSP page /gpf/jsp/costcenter/gpfCostCenterDetails.jsp Error creating jsp-page

Questions about commits and orion datasource connection pooling....

2002-05-21 Thread Keith Kwiatek
Hello, I have some jsp's that are using orion's connection pooling. When a jsp page opens the db connection (oracle) through the connection pool, is it dedicated to that particular jsp page? Another jsp couldn't issue a commit or rollback and somehome impact another jsp's transactions, correct?

RE: Questions about commits and orion datasource connection pooling....

2002-05-21 Thread Juan Pablo Lorandi
That's correct AFAIK, and applies to all connection pooling schemas(JDBC, ODBC, you name it) but on most recent versions, the driver will pool the connections itself, not Orion. Anyhow, you got most of it right, except that another jsp page instance may vote in a different connection. No sweat

Re: How do you tell orion not to autocommit?

2002-05-21 Thread Keith Kwiatek
But I am using connection pooling I tried this and it does not seem to work... is it something I have to set with the connection pool? Thanks, Keith - Original Message - From: Juan Pablo Lorandi [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, April 17, 2002

Ejbs classPath

2002-05-20 Thread Eslam Mohamed
Hi all I have problem in calling remote session bean deployed on OC4J server and lookup on it from another server deployed on another OC4J server. I succeed in lookup the remote ejb from the caller one but when I typeCast it to the remote interface of the Remote EJB it through classCast

RE: Can I write JDBC Transactions in Bean managed entityBeans? (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: Ejbs classPath (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: Ejbs classPath

2002-05-20 Thread Jorge Jimenez C
The server that is creating the EJB is acting as a client. So, it has to know the remote and home interfaces of the EJB as any remote client. If you expect to use the EJBs in other applications the interfaces, should be in a shared directory (lib) if it is not the case, you should think to put

FW: Using ORION versus CORBA

2002-05-20 Thread David Sorf
I can ask if there is some way how to configure Orion (or that RMI) for using remote calling from other aplications (example in C++, Delphi, etc...) where is available CORBA? Have somebody some idea how to do this?? Thank you. David Sorf, [EMAIL PROTECTED] --- Odchoz zprva neobsahuje viry.

Re: FW: Using ORION versus CORBA (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: Ejbs classPath (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Sessions and W98 + IE

2002-05-19 Thread David Tunkrans
Hi Im having problems with "broken" sessions for w98 + IE browsers. Does anyone know of errors in the Orion sessiontracking mechanism? /David

XAException

2002-05-19 Thread Kiran lal
Hi I am getting Orion connection closed exception when the load is high on the server. It is hapening when the ejb server is going to close the connection and commit. We are using Oracle 9iAS Server(Orion) Any advice will be helpful regards vc com.evermind.server.rmi.OrionRemoteException:

Cmp entity with postgresql

2002-05-19 Thread David Plante
hi in my postgresql database i have a table customer with a field sex witch is a char that can be either 'M' or 'W' .My cmp entity beans has a var : char sex; when i try to load the entity i get Database error: Bad Short M; witch comes from org.postgresql.jdbc2.ResultSet.getShort . in the

Re: Sessions and W98 + IE

2002-05-19 Thread Stephen Davidson
Hi David. The major errors I have come accross in IE (all tested version of 4, 5, 6) was that the 56bit encryption package was completely broken in IE. The workaround was to force 128bit, or no encryption. I am not aware of any other issues. -Steve David Tunkrans wrote: Hi Im

Any advanced CMP mapping for int[] via java.sql.Array to a VARRAY col type?

2002-05-19 Thread Andy Parkman
Can anyone point me in the direction of some more detailed information on advanced CMP mapping techniques? I was wondering if a CMP mapping can be found which would generate JDBC code to bind a field variable defined as an array of integer via a java.sql.Array type to a database column defined

RE: Any advanced CMP mapping for int[] via java.sql.Array to a VARRAY col type?

2002-05-19 Thread Juan Pablo Lorandi
I think there's a PersistanceManager interface for this, but I remember it not being configurable from files, that is, it seems it's not fully implemented yet. I guess you'll have to resort to BMP for such complex mappings. My 2c, Juan Pablo Lorandi Chief Software Architect Code Foundry Ltd.

Re: Sharing datasource

2002-05-19 Thread Scott Farquhar
Yes, that is true. At the moment, there is no EJB clustering in Orion, although it may appear in future versions. Cheers, Scott Linus Larsen wrote: If the same EJB application is running on lets say two servers, and are sharing the same datasource. Do I have to configure the orion-ejb-

Re: Sharing datasource

2002-05-19 Thread Hani Suleiman
Erm, nope. Orion has EJB clustering, it's just not documented, although I hear a document about it is coming out soon...ish... On 5/19/02 9:50 PM, Scott Farquhar [EMAIL PROTECTED] wrote: Yes, that is true. At the moment, there is no EJB clustering in Orion, although it may appear in

RE: Can I write JDBC Transactions in Bean managed entity Beans?

2002-05-19 Thread Juan Pablo Lorandi
Yes, there is. Since you're not using transactions that are independent of the app server(and thus the app server doesn't know about the transaction at all, and isn't able to vote in it) the app server built in transactional support is not functional. An example: EJB A: a SLSB EJB B: Your Entity

session management

2002-05-17 Thread kumarpal jain
Helloall I am running my application on three servers. All are live servers . I am using dns round robin to acess them. Now my problem or issue is thatI want to have session of each end user on each server.. so if one server goes down the end user can process toother servers with the same

are there any patches for Orion ?

2002-05-17 Thread Valeri . Kireitchik
Title: are there any patches for Orion ? Hi all, are there any patches (patch sets, service packs, etc) for Orion ? If yes, do you know where I can take ones for Orion 1.5.2 and 1.5.4 ? Best regards ITC-M, SIS Company Mr. Valeri Kireitchik Head of Application Software Department

Re: session management

2002-05-17 Thread Mike Shoemaker
Doesn't clustering solve this problem? Mike - Original Message - From: kumarpal jain To: Orion-Interest Sent: Friday, May 17, 2002 2:15 AM Subject: session management Helloall I am running my application on three servers. All are live servers . I am

RE: help with trans. synchronization

2002-05-17 Thread Chris Francis
Don't know if this will help, but it looks like the problem starts with the execution of a finder query. So maybe review the sql you've set for this query in orion-ejb-jar.xml. Or maybe the query can return more than one row and you have it set to return a single entity instance in the ejb's home

Sharing datasource

2002-05-17 Thread Linus Larsen
If the same EJB application is running on lets say two servers, and are sharing the same datasource. Do I have to configure the orion-ejb- jar.xml and set the exclusive-write-access=false for every entity deployment (on both servers) sharing the datasource, to avoid inconsistency in the

how to set exclusive-write-access=true in orion-ejb-jar.xml

2002-05-17 Thread Valeri . Kireitchik
Title: how to set exclusive-write-access=true in orion-ejb-jar.xml Hi all, can anybody help to set exclusive-write-access=true in orion-ejb-jar.xml. Enviroment: oc4j 9.0.2.0.0 My problem is that container reset it to false during deployment (other attributes are set without any problem)

Re: session management

2002-05-17 Thread Curt Smith
earlier i did this with loadserver, that was working well, but the problem in that , if the server where loadbalancer is running goes down , my application will be killed. I agree that loadbalancer.jar is a great concern! No one's told me that a product like the Cisco

Re: how to set exclusive-write-access=true in orion-ejb-jar.xml

2002-05-17 Thread David Plante
I think orion finds out your database doest suport this feature or its not yet implemented for this db in orion. Exclusive-write-access default is set to true, so i beleive that orion resets it cause its not available.Otherwise be sure you remove orion-ejb-jar.xml before you deploy and make sure

XSLServlet

2002-05-17 Thread Ramadevi . Lanka
Hi, I am getting a NullPointerException when I try to display my JSPs containing XSL tags. I have 2 questions: 1. How to turn ON and turn OFF XSL transformation happening in Orion. 2. How to debug this error. Following is the error message: 500 Internal Server Error

Cluster configuration

2002-05-16 Thread sbpodila
Hi all, Can anybody explain the procedure for cluster configuration in Orion server for web applications.

Can't find servlet

2002-05-16 Thread Krishnan, Sri
Hi, Can someone let me know what are the values I need to specify for the servlet-mapping and url-pattern tags in the web.xml. I am having a problem to see the servlet from my jsp page. Thanks Sri -Original Message- From: Krishnan, Sri Sent: Wednesday, May 15, 2002 5:20 PM To:

help with trans. synchronization

2002-05-16 Thread Waller Anne
Can anyone give some pointers or have come across a similar problem ? We are currently in development and in the middle of UAT testing. The application runs on Orion1.5.2 connecting to multiple datasources on the one server. A recent test raised the following exception

Re: Cluster configuration

2002-05-16 Thread Scott Farquhar
This document will be of help: http://kb.atlassian.com/content/orion/docs/http-clustering.html Cheers, Scott sbpodila wrote: Hi all, Can anybody explain the procedure for cluster configuration in Orion server for web applications. -- Scott Farquhar :: [EMAIL PROTECTED] Atlassian

RE: Can't find servlet

2002-05-16 Thread Ian Roughley
Do you have the web application configured in the server.xml and default-web-site.xml filers in the config directory, and using the correct context/dir? /Ian From Down Around, Inc. Innovative IT solutions Software Architecture * Design * Development

No rollback in case of exception in ejbStore()

2002-05-15 Thread Valeri . Kireitchik
Title: No rollback in case of exception in ejbStore() Configuration: Orion 1.5.2/1.5.4, Oracle 9i 1 SFSB and 2 EB, transactional attributes = Required for all beans. Transaction is initiated by call of SFSB method updateRow(). SFSB calls 2 EB setName() methods. SFSB implements

ClassCastException in generated code

2002-05-15 Thread Tim Joyce
Hi, I am getting a rather nasty ClassCastException when i try and remove a many-to-many join (implemented like the MovieDatabase example). My question is how do i go about debugging this? Is it possible to get access to the generated .java files? Thanks in advance for any advice stack traces

Begging for help

2002-05-15 Thread Jon Bricker
I'm begging for some help on this set up. I'm using Glue Standard for using SOAP calls. Anyone that has used Glue with Orion before please help me out. I've gotten the orion example from glue working. Now I'm trying to do something practical. I've set up an app on Orion. It had to be a

test - please not reply

2002-05-15 Thread Valeri . Kireitchik
Title: test - please not reply ITC-M, SIS Company Mr. Valeri Kireitchik Head of Application Software Department Fujitsu Siemens Computers Qualified Partner Microsoft Certified Partner Oracle Partner Program Member Surganova 24-406 220012 Minsk Republic of Belarus ph.: +375 (17)

RE: ClassCastException in generated code

2002-05-15 Thread Greg Davis
Did you change your bean recently? It sounds like your remotes are out of date. Ensure you remotes on the client side match up properly. Also ensure any Serialiazable classes you pass via method calls are not updated in only the client of server. This error normally happens when you either try

RE: Begging for help

2002-05-15 Thread Satter, Rabi
Can you point a browser at the url and get the wsdl? Are you trying to access the EJB directly? If so you need pro which can talk to stateless session beans. Probably doesn't matter but you might try putting the jar file in the orion/lib directory. Hopes this helps. -Original

Can't find servlet

2002-05-15 Thread Krishnan, Sri
Hi, I am registering the servlet in web.xml even then, I am getting an error saying that the servlet not found. do I need to register the servlet anywhere else ? this may be trivial but , could not figure out. Thanks Sri

SV: Orion and JSP

2002-05-14 Thread magnus . rydin
There is a beginners guide available at www.orionserver.com/docs/beginners-guide.xml That helps you get started with the Orion Application Server. With regards, Magnus Rydin -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] För Krishnan, Sri Skickat: den

RE: Dynamic Proxies for remote interface wrapper?

2002-05-14 Thread Justin Wood
Implement clases conforming to the EJBUserManager API and overide the permission checking methods with logic that does that kind of checking ... then deploy like so: http://www.orionsupport.com/articles/ejbusermanager.html Justin -Original Message- From: Pletka, John [mailto:[EMAIL

Re: Orion and JSP

2002-05-14 Thread Joseph Ottinger
Well, you haven't said what Orion is telling you, but typically the first thing you do is follow the installation instructions, every step of them, which includes copying tools.jar to $ORION. That's alkl you have to do. One wonders why the three steps are as complicated as they are.

Next Release

2002-05-14 Thread @Basebeans.com
Subject: Next Release From: alt.cybercafes [EMAIL PROTECTED] === When will the next release of orion by available to the general public. ? Will it support ejb 2.0 completely. thanks

Tracking of JSP errors

2002-05-14 Thread Konstantns Dorodovs
Hi, (OC4J 1.0.2.2.1) When I have one JSP page included in the other JSP. (% include tag was used) and the included one produces compilation error then I receive no compilation error in my browser just Parent JSP skips output of the included one. Strange thing, but a coworker can see in his

Orion Client jar files for remote application client

2002-05-14 Thread Pedro Garcia Lopez
Hi all, Unlike many other application servers like jboss, Orion does not officially provide a list of jar files required to run remote Java Application clients. This enforces developers to include a lot of files found in the Orion root directory. Are there any plans to provide a minimum set of

RE: Orion Client jar files for remote application client

2002-05-14 Thread The elephantwalker
Pedro, This is the minimum list: orion.jar activation.jar jndi.jar ejb.jar Its also a good idea to include a jar with the home and remote interfaces of the ejb's you will be using. With kind regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL

example of data-source.xml for Oracle 9i needed

2002-05-13 Thread Valeri . Kireitchik
Title: example of data-source.xml for Oracle 9i needed Hi all, may somebody provide me with example of of data-source.xml for Oracle 9i that supports CMT (container managed transactions) for Orion 1.5.2 ? Thank you in advance ITC-M, SIS Company Mr. Valeri Kireitchik Head of Application

RV: Some questions about orion-ejb-xml.jar

2002-05-13 Thread Andrés Escudero Apesteguía
Title: Firma tb solutions Diseño de fondo I've been testing Orion the last three weeks. In Orion web, I've read to put orion-ejb-jar.xml under orion directory for an EJB. In some other sites, this file must reside under META-INF directory. Which is the correct place to put

Re: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread Darren Senel
This is what I use: data-source class=com.evermind.sql.DriverManagerDataSource name=OracleDS location=jdbc/OracleCoreDS xa-location=jdbc/xa/OracleXADS ejb-location=jdbc/OracleDS connection-driver=oracle.jdbc.driver.OracleDriver username=dsenel

AW: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread Michael Maurer
Title: example of data-source.xml for Oracle 9i needed Place the classes12.zip which comes with the Oracle 9i in the lib directory an configure the datasources xml like that: ?xml version=1.0? !DOCTYPE data-sources PUBLIC Orion data-sources

Glue and Orion classpath

2002-05-13 Thread Jon Bricker
I'm trying to set up Glue to work on Orion with an app that will use EJBs. At this point I made it a web app( .war file) but when I run it it can not fine things in javax.ejb.*. Do I need to make the app into an .ear and add my classes to a jar file as well? There are no EJBs in the app but it

Re: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread Matthew E. Porter
Darren: Does this configuration provide any sort of connection pooling? -matthew On Mon, 13 May 2002, Darren Senel wrote: This is what I use: data-source class=com.evermind.sql.DriverManagerDataSource name=OracleDS location=jdbc/OracleCoreDS xa-location=jdbc/xa/OracleXADS

Dynamic Proxies for remote interface wrapper?

2002-05-13 Thread Pletka, John
I'm trying to integrate a third-party security product that allows rules like can only call methodX on objectY between 9:00 am and 5:00 pm. It ties into Weblogic and WebSphere cleanly, but does not have a way to get into orion. What I would like to be able to do is either: 1) setup my

Orion and JSP

2002-05-13 Thread Krishnan, Sri
Hi, I am trying to use jsp s with Orion. Can anyone let me know how do I get the JSP compiled and displayed on the web browser ?. I know that OC4J compiles the JSP, just could not figure out how to get the orion do that. Thanks alot for your help Sri

Re: Orion and JSP

2002-05-13 Thread Corey Graham
It's simple if you have Orion running successfully. 1. In you orion's config directory you need to set up a web-app. Usually you use default-web-site.xml to do this. For instance add a line like: web-app application=bank name=/home/user/dev/pages root=/online-banking / This holds your

Re: RV: Some questions about orion-ejb-xml.jar

2002-05-13 Thread Scott Farquhar
The correct place is to place them in the META-INF directory, next to your other deployment files. It *used* to be the orion directory, but that was changed a long time ago. This tutorial should help you understand the orion xml files more:

RE: Dynamic Proxies for remote interface wrapper?

2002-05-13 Thread The elephantwalker
The orion-ejb-jar has the wrapper class noted. You can replace this class with your own, as long as you forward to the wrapper. With kind regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Pletka, John

Re: testing

2002-05-13 Thread sudha parimala
David Tunkrans [EMAIL PROTECTED] wrote: What are u testing for    Yahoo! Autos - everything you wanted to know about cars and bikes

Re: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread gottfried
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 13 May 2002, Matthew E. Porter wrote: Darren: Does this configuration provide any sort of connection pooling? nop, the pooled-location is missing. we have setup a datasource like this and i hope this is the correct way. sorry, but this

RE: Linux + Orion + IBM DB2

2002-05-12 Thread The elephantwalker
Denis, Take a look at this message, it may help you. Specifically, you need to use a db2.xml schema in your config/data-base-schemas directory, and refer to this schema in your data-sources.xml file. I would also test out your network configuration by using a jdbc client (netbeans, for example,

testing

2002-05-12 Thread David Tunkrans

SV: tool to print all remote method invokations of EJBs

2002-05-03 Thread Jesper Rasmussen
Title: tool to print all remote method invokations of EJBs Why not use a logger? I find using a logger extremly helpfull in tracking how both the clients and the server acts. I use Log4J, but in j2sdk 1.4 the logging package is also available. As far as i can see,itdoes not matter much

Starting Orion as a service in Solaris 8

2002-05-03 Thread Vu Le Hung
Hi all, I've been trying to start Orion as a service in SunOS 5.8 as follow but it failed: - Create an executable script file /etc/rc.d/init.d/orion containing following lines #!/bin/sh #Change to orion directory cd

SV: Starting Orion as a service in Solaris 8

2002-05-03 Thread Magnus Rydin
How did it fail? What error message did you get? What does the logs tell you? With regards, Magnus Rydin -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] För Vu Le Hung Skickat: den 3 maj 2002 09:44 Till: Orion-Interest Ämne: Starting Orion as a

Re: Starting Orion as a service in Solaris 8

2002-05-03 Thread Johan Fredriksson
Did you start the service as root? And did you remember to copy tools.jar to the /usr/local/orion ? - Original Message - From: Vu Le Hung [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, May 03, 2002 9:44 AM Subject: Starting Orion as a service in Solaris 8 Hi all,

Re: Starting Orion as a service in Solaris 8

2002-05-03 Thread Leon John
put the port also From: Vu Le Hung [EMAIL PROTECTED] Reply-To: Orion-Interest [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject: Starting Orion as a service in Solaris 8 Date: Fri, 3 May 2002 14:44:14 +0700 Hi all, I've been trying to start Orion as a service in SunOS 5.8 as

RE: Please Unsubscribe me!!!!

2002-05-03 Thread Krishnan, Sri
Hi Could somebody point to the right place to find about the tag libs that orion provides for the Database hookup Thanks Sri -Original Message- From: Krishnan, Sri Sent: Monday, April 29, 2002 11:15 AM To: Orion-Interest Subject: Please Unsubscribe me Please Unsubscribe me

what is LDAP ???

2002-05-02 Thread gusl
Hi all, What is LDAP ??? How to use iplanet directory server ??? Who know some articles or linksabout that ???

SV: Initial context problem.

2002-05-02 Thread Jesper Rasmussen
Hi Alex, Thanks - i got an answer from Scott that solved the problem. I did not want to burden the list so i did not send reply to the list, as i do now. No the code is not the correct code, but pseudo real code - that is a bit copy-paste and a bit of editing. It was only ment to be informative.

Remove me

2002-05-02 Thread rajender anand
Please remove me from the orion interest list thanks rajender anand _ Click below to visit monsterindia.com and review jobs in India or Abroad http://monsterindia.rediff.com/jobs

Variable contained illegal space Error on CMP Bean deploy????

2002-05-02 Thread Mike Shoemaker
Anyone run into this error? What does it mean? Thanks Mike

SV: Remove me

2002-05-02 Thread Magnus Rydin
Please use the unsubscribe function at our site for unsubscription or send a mail to [EMAIL PROTECTED] with a body of unsubscribe to unsubscribe, do not bother the readers of this list with unsubscribe requests. -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL

RE: how to shutdown orion app server?

2002-05-02 Thread Michael C. Han
You can shut it down by binding the the ApplicationServerAdministrator. /** OrionServerAdmin.java** Created on May 1, 2002, 10:55 PM*/ package com.objectparadigms.util.admin; import com.objectparadigms.util.exception.InitializationException; import

Re: what is LDAP ???

2002-05-02 Thread Giuseppe Galli
a tutorial http://java.sun.com/products/jndi/tutorial/ldap/models/v2.html and a ldap programming in Java http://developer.java.sun.com/developer/Books/ldap/ HTH Pino At 16.37 02/05/2002, gusl wrote: Hi all, What is LDAP ??? How to use iplanet directory server ??? Who know some articles or

Re: Variable contained illegal space Error on CMP Bean deploy????

2002-05-02 Thread Ray Harrison
Mike - I've never come across this error, but perhaps if you provide more information (maybe your ejb-jar.xml) we can take a look. Cheers Ray Mike Shoemaker [EMAIL PROTECTED] wrote: Anyone run into this error? What does it mean? ThanksMikeDo You Yahoo!? Yahoo! Health - your guide to health and

RE: Unsubscription and autoreplies

2002-05-02 Thread Linda Lott
NEITHER ONE OF THOSE WORK!!! I HAVE BEEN TRYING FOR WEEKS TO GET OFF THIS LIST! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Magnus Rydin Sent: Thursday, May 02, 2002 12:30 AM To: Orion-Interest Subject: Unsubscription and autoreplies Please use

Re: Variable contained illegal space Error on CMP Bean deploy????

2002-05-02 Thread Mike Shoemaker
This was due to having a custom primary key class and specifying both prim-key-class and primkey-field in the ejb-jar.xml Once I removed the primkey-field, it deployed without a problem. Mike - Original Message - From: Mike Shoemaker [EMAIL PROTECTED] To: Orion-Interest [EMAIL

RE: ORION 1.5.4 session bean serialization failed

2002-05-01 Thread Dvornikov Victor
Title: Meddelande Am I alone with this problem? Serialization of the session bean : JNDI lookup in the getEJBObject failed as if there is no the name sought. I checked the name inside the readObject. It's OK. Although thisproblem (I fear to say bug)is not fatal. It's annoying. private

Please Unsubscribe me

2002-05-01 Thread Abhishek Agrawal,ASDC Chennai
Title: Please Unsubscribe me Please Unsubscribe me Disclaimer: This document is intended for transmission to the named recipient only. If you are not that person, you should note that

RE: URGENT: Big issues with CMP 2.x and application-client !!!!

2002-05-01 Thread Gavin Spurling
I believe it only does this on fields named password as this can be a reserved word in some DBs, it will do this if its autogenerating the tables for you. You can always edit the orion-ejb-jar.xml file and change the mapping to what suits you. -Original Message- From: [EMAIL PROTECTED]

Initial context problem.

2002-05-01 Thread Jesper Rasmussen
Hi all, Im trying to make an application which askes for the login and password to connect to the application deployed on 1.5.4 orion server. It works fine if i specify the correct login(admin). However if I uses some wrong cridentials(admin1) i get an exception which also is fine. HOWEVER when

Re: SOAP and Orion

2002-05-01 Thread Jon Bricker
Please forward me on to whomever solved this. I'm using orion 1.5.4 so an upgrade is out of the question. I would like to talk to someone and see how they set up orion, their application and their classpath. --- [EMAIL PROTECTED] wrote: Hi Jon, We had a similar sounding problem with SOAP and

RE: URGENT: Big issues with CMP 2.x and application-client !!!!

2002-05-01 Thread Ray Harrison
Hi For #1 below - adding the '_' for persistence names is likely due to the database schema definition in your config/database-schemas directory for your particular data source. It probably has 'password' as a disallowed field and hence will add the '_' to the field name - if you have an existing

RE: Initial context problem.

2002-05-01 Thread Alex Paransky
Not sure if the code you pasted is correct, however, you are missing a new keyword in front of the InitialContext(). Also, in your second try/catch block you are missing a call to new InitialContext(). I might be picky, but the source code you posted is not at all the source code that you are

Please unsubscribe me

2002-05-01 Thread Erinn Freypons
__ Get your FREE personalized e-mail at http://www.canada.com

Please Unsubscribe me

2002-05-01 Thread korosh
Please Unsubscribe me

EJB Caching

2002-05-01 Thread Derek Akers
How do I remove a particular EJB instance (SLSB) from orion's EJB cache? I acquire a handle to the EJB through: Context context = new InitialContext(); Object boundObject = context.lookup(MyEJB); MyEJBHome myEjbh = (MyEJBHome)PortableRemoteObject.narrow(boundObject,MyEJBHome.class); MyEJBRemote

Re: how to shutdown orion app server?

2002-05-01 Thread mars
use the follow command killall -15 java - Original Message - From: gusl To: Orion-Interest Sent: Sunday, April 28, 2002 11:25 AM Subject: how to shutdown orion app server? Hi all, I want to know how to shutdown orion app server ??? Use kill ???(under

Unsubscription and autoreplies

2002-05-01 Thread Magnus Rydin
Please use the unsubscribe function at our site for unsubscription or send a mail to [EMAIL PROTECTED] with a body of unsubscribe to unsubscribe, do not bother the readers of this list with unsubscribe requests. Please turn off auto-reply functionality for messages sent from this list if you are

RE: Message Driven Beans

2002-04-30 Thread Justin Wood
Implementing a Message-Driven Bean in Orion. (Tested with orion 1.5.4) 1.) == The MDB code - LogBean package mycode.ejb.mdb; import javax.ejb.*; import javax.jms.*; public class LogBean implements MessageDrivenBean, MessageListener { protected MessageDrivenContext

Re: Please Unsubscribe Me

2002-04-30 Thread Sorin Pop
remove me

  1   2   3   4   5   6   7   8   9   10   >