ORION running under Solaris Environment

2000-10-25 Thread David Sierra Fernandez
I want to build my development department with Orion under Sun Solaris. I want advise about: * How it should be implemented: one server with Orion inside it and terminals running that instance of Orion or Orion installed in all of the workstations * What are the hardware requiremen

ALTERNATIVES TO JDK1.3

2000-10-19 Thread David Sierra Fernandez
Could you tell me if there is an alternative compiler to jdk 1.3? I'm looking for other compilers but they should compile all my middleware components (servlets, JSPs,EJBs,JavaBeans) TIA -- Sierr@ --

HARDWARE FOR J2EE apps

2000-10-11 Thread David Sierra Fernandez
I would be very gratefull if anyone with experience tell me what it's the appropiate hardware to develope ejbs, servlets and jsps, and what it's the appropiate in order to run an app with a great load of concurrent users. I wanna know your opinion about what to choose Unix(solaris,HP,..)

LDAP

2000-09-22 Thread David Sierra Fernandez
Hi all, I know that a ejb can make a request to an URL, send an e-mail, and manage other actions defined in methods of its superclasses. I want to know if it is possible to make a request to another port different to http port or STMP port?. I would like to make a request to port 389 (IL

Re: posting fourth time but did not got any answer

2000-08-16 Thread David Sierra Fernandez
> > -----Original Message- > From: David Sierra Fernandez <[EMAIL PROTECTED]> > To: Orion-Interest <[EMAIL PROTECTED]> > Cc: Orion-Interest <[EMAIL PROTECTED]> > Date: Mittwoch, 16. August 2000 16:28 > Subject: Re: posting fourth time but did not got any answer >

Re: posting fourth time but did not got any answer

2000-08-16 Thread David Sierra Fernandez
In web.xml, nested in servlet tag you have a tag called where you specify the priority number which your servlet will have. a value of -1 will not load on startup your servlet. Hope this helps. - David Sierra Fern nd

Problems with a servlet

2000-08-07 Thread David Sierra Fernandez
I'm testing a simple app that invokes a servlet through a html page. I deployed the app without problems and when I invoke the html it works fine but I when I try to access the servlet I get always an error. I don't know if I'm copying the classes in the correct place ( i think so) but i'm not s

EJB-Passivate

2000-08-07 Thread David Sierra Fernandez
Please this is driving us right crazy these days. We are all the time going around in circles. Our application creates several instances of the same entiy bean. The first bean it creates is OK but, before it begins to create the second one, the server makes a ejb store of the first instance we

Re: Begging for Help: EJB Deployment in Orion Server 1.0

2000-08-07 Thread David Sierra Fernandez
First of all you have to create a J2EE directory estructure: application --- META-INF/application.xml | module.jar | module.war and then follow the instructions in Orion docs "How to deploy an app" You have to create yourself applicatio

CAN'T ACCESS TO A SERVLET

2000-08-04 Thread David Sierra Fernandez
I'm testing a simple app that invokes a servlet through a html page. I deployed the app without problems and when I invoke the html it works fine but I when I try to access the servlet I get always an error. I don't know if I'm copying the classes in the correct place ( i think so) but i'm not s

EJB-Passivate

2000-08-03 Thread David Sierra Fernandez
Please this is driving us right crazy these days. We are all the time going around in circles. Our application creates several instances of the same entiy bean. The first bean it creates is OK but, before it begins to create the second one, the server makes a ejb store of the first instance we c

REFRESH !

2000-08-02 Thread David Sierra Fernandez
I've heard something today in the list about refreshing an application. I think someone has comment that if you make any change to application.xml or orion-application.xml (I don't know which) orion server makes automatically a redeploy of the application whitout restarting the server !!! Is thi

EJB COMPILATION

2000-08-02 Thread David Sierra Fernandez
When I compile my beans I use a similar bat that in J2EE server implementation: set ORION=C:\orion set CPATH=.;%ORION%\orion.jar;%ORION%\ejb.jar;%ORION%\jndi.jar; javac -classpath %CPATH% AgendaSClient.java Am I correct or should I use a different classpath Any other way of compilate my b

Re: user and password defaults ??

2000-08-02 Thread David Sierra Fernandez
The password of admin is set when you install orion, I mean... after running it you should do: java jar orion.jar install and then it displys this and ask for the admin password. This password is an installation password, it's not a user of principals: Enter an admin password to use: spain Con

Re: SV: SV: CMP

2000-08-01 Thread David Sierra Fernandez
eployment. > > Or i dont see how orion can serve the application... > > Klaus Myrseth > > -----Opprinnelig melding- > Fra: David Sierra Fernandez [mailto:[EMAIL PROTECTED]] > Sendt: 1. august 2000 13:51 > Til: [EMAIL PROTECTED] > Emne: Re: SV: CMP >

CMP

2000-08-01 Thread David Sierra Fernandez
This is a simple question but it's drving me crazy... The ATM example uses the default DB conection, exactly jdbc/DefaultEJBDS If you change this name you can see it at restarting. My question is where does the ATM example make reference to this name??? I couldn't find this reference in code !!

Re: Mapping CMP fields to db columns

2000-08-01 Thread David Sierra Fernandez
You only have to edit the file orion/config/database-schemas/oracle.xml or the db you use. It' very simple. If you have any other db that's not in the list create a new one. Good luck !!! - David Sierra Fern ndez

EJB COMPILATION

2000-07-31 Thread David Sierra Fernandez
When I compile my beans I use a similar bat that in J2EE server implementation: set ORION=C:\orion set CPATH=.;%ORION%\orion.jar;%ORION%\ejb.jar;%ORION%\jndi.jar; javac -classpath %CPATH% AgendaSClient.java Am I correct or should I use a different classpath Any other way of compilate my b

EJB MAKER

2000-07-31 Thread David Sierra Fernandez
Anyone has used the ejbmaker graphical tool??? I think it is used to map a entity bean to a table in a DB or to generate the code of a entity bean but i'm not sure??? I fill in the fields with a example entity bean but I don't know what to do with the resulting file Any ideas ? THANK

PASSIVATE !!

2000-07-31 Thread David Sierra Fernandez
I have a problem with my beans... when I execute the client, its function is to create some records of an entity bean through a session bean, but when it is doing so the entity passivates without any reason cause it has passed no time to determinate that the bean it's not being used. This is th

EJB CLIENT

2000-07-28 Thread David Sierra Fernandez
Hi all, I'm very worried 'cause i'm not able to make a EJB client to work. I've deployed my app without problems but I can't execute the client. I've created the client-application.xml: http://java.sun.com/j2ee/dtds/application-client_1_2.dtd"> Cliente AGENDA ORION

UNDEPLOY

2000-07-28 Thread David Sierra Fernandez
I would like to know how can undeploy an app, I mean, I deploy an app and then i shutdown the server and when i restart the server again it doesn't say nothig about "Auto-deploying Agenda-ejb... done." It seems like if the app was already deployed... ¨?¨?¨? AM I correct ??? What Can I do to red

MAPPING

2000-07-26 Thread David Sierra Fernandez
How does Orion maps a java array to a oracle database? Does it creates a new table and store the values in the array or does it serialize all the values and store them as a single one??? THANK YOU very much. - David Sie

Re: SV: WEB-SITE

2000-07-26 Thread David Sierra Fernandez
; You can do several projects and just deploy thw war file at the customer > after youre done with it :) > > Pick your favourite arguments and stick with them, there are several more, > but these came to my mind when i read your letter > > Klaus Myrseth > Senior consultant >

WEB-SITE

2000-07-26 Thread David Sierra Fernandez
I would like to know the advantages of creating a new web-site in Orion. I think the only one is in order to get two different port numbers. Cuold you explain me in what cases would be interesing to create different web-sites...??? THANK YOU very much. ---

Re: Entity beans and database

2000-07-21 Thread David Sierra Fernandez
I could assure you that in ATM example, if you make a "commit" every time you create or destroy a row in the database through SQL (ORACLE) the Automatic Teller MAchine will detect all the changes. I don't know why but this is the way it is. More opinions ??? --

Re: Entity beans and database

2000-07-21 Thread David Sierra Fernandez
Uhh boys , I think I can help a bit I agree that the problem is that you're working behind the server but ... the solution is to do something in order to it understantd what are you doing. I suggest you make a "commit" commnad in SQL every time you modify something in the database through

MAPPING

2000-07-19 Thread David Sierra Fernandez
How does Orion maps a java array to a oracle database? Does it creates a new table and store the values in the array or does it serialize all the values and store them as a single one??? THANK YOU very much. - David Si

ENVIRONMENT

2000-07-19 Thread David Sierra Fernandez
I'm creating a complete web app and I know how to access from my code to , and but I want to know how to access to a: and an the differnces in code between them. I haven't found any reference in J2EE spec nor Servlets esp. Is there any difference between accessing from a servlets or JSP,

PARAMETERS

2000-07-18 Thread David Sierra Fernandez
I'm looking for code examples or a guide where I cuold find how get the init parameters, context parameters, resources references, an so on from the enterprise beans, JSPs and servlets. - David Sierra Fern ndez

RE: config tool

2000-07-17 Thread David Sierra Fernandez
.!! (2.1.20+) Which version is that??? I have surf to Orion site and I just found the stable release 1.0.3b and beta release 1.1.24... Where we can find such a release 2.1.20+ ? Thanks - David Sierra F

THREADS

2000-07-17 Thread David Sierra Fernandez
I try again My team had a problem some time ago with another server, and I want to know if it is a problem of that server of if it is defined in that way at spec. The situation was: We create a very simple entity bean in which we implement (a purpose) a method that drives us to a infinite l

RE: Auto creating table

2000-07-07 Thread David Sierra Fernandez
primkey-field?, env-entry*, > ejb-ref*, security-role-ref*, resource-ref*)> > > > From: David Sierra Fernandez [SMTP:[EMAIL PROTECTED]] > > Sent: July 7, 2000 12:16 PM > > To: Rick Bos > > Cc: Orion-Interest > > Subject:Re:

Re: Auto creating table

2000-07-07 Thread David Sierra Fernandez
You have to edit the deployment descriptor ejb-jar.xml and set to false the autocreate option of the beans you don't want to create tables. - David Sierra Fern ndez E.T.S.I. Telecomunicaci¢n Universidad

Re: AW: Update: Performance & Scalability

2000-07-05 Thread David Sierra Fernandez
Hi Tom, I would like to know exactly the diference between ejb-location and pooled-location. ...and other thing...but I thing that Orion team is the only one who can answer me... How does ORion manage the connection pools??? I mean that Orion only let you set the max-number of co

Re: admin.jar problems

2000-06-29 Thread David Sierra Fernandez
I got it !! I'M sorry ... it was the "java -jar orion.jar -install" commnad the key. Thank you very much. I'm running W2000, JDK1.2.2, PIII450 and Orion1.0rc2 - David Sierra Fern ndez E.T.S.I. Telecomunicaci

RE: admin -shutdown

2000-06-28 Thread David Sierra Fernandez
I've tried it and I have always the same result: C:\orion>java -jar admin.jar ormi://localhost:23791 admin 123 -shutdown Error: java.lang.SecurityException: Invalid username/password for default (admin ) C:\orion>java -jar admin.jar ormi://localhost:23791 david sierra -shutdown Error: java.lang

Re: Corba from Orion

2000-06-28 Thread David Sierra Fernandez
I think Orion supports RMI across servers but it doesn't supports RMI over IIOP. I'm afraid you'll have to wait until a next release of Orion supports the latest EJB 2.0, which requires RMI/IIOP protocol. - David Sierr

FAIL-OVER

2000-06-28 Thread David Sierra Fernandez
I would like to know if Orion supports fail-over for each one of this elements: -Home instances -Stateless Session Beans - CMP and BMP entity beans -Servlets -JSPs -HTTP request - JNDI Please answer back ASAP.I'm in a hurry.

RE: EJBs at runtime

2000-06-27 Thread David Sierra Fernandez
Mike, How can i do the deploy and the undeploy with the server running??? - David Sierra Fern ndez E.T.S.I. Telecomunicaci¢n Universidad de ValladolidAULA CEDETEL Campus Miguel Delibes E-M

Connection Pools 2

2000-06-27 Thread David Sierra Fernandez
I missed something. The tag max-connections refers to max number of connections in a pooled version or in a default version If it is in a pooled version, How many connections does Orion create at the begining?? Karl, I think you could improve the doc, explaining how does Orion do the thin

Connection POOLs

2000-06-27 Thread David Sierra Fernandez
I've seen that you have the posibilty to bind to the JNDI a pooled version of your database. Is this a connection pool? If I'm correct... where you can configure the features of the pool: min connections,capacity increment. If it is not possible to configure I would like to know how Orion mana

EJBs at runtime

2000-06-27 Thread David Sierra Fernandez
*I want to know if it is possible to deploy applications with the server running. *and... undeploy application without stopping the server. *Could be possible in Orion stop a single bean or a single jar?? or do we have to stop and deploy the whole appplication??? I've seen another servers wher

DEPLOYING A PRE-WRITTEN BEAN

2000-06-27 Thread David Sierra Fernandez
Imagine I want to deploy a bean that I've packed in a JAR file. I know how to deploy a complete application but what should I do to deploy an application with only a JAR file I think the only thing I gotta do is to insert in server.xml the line: Am I oblide to make an ear file to deploy my be

FAIL-OVER

2000-06-27 Thread David Sierra Fernandez
I would like to know if Orion supports fail-over for each one of this elements: -Home instances -Stateless Session Beans - CMP and BMP entity beans -Servlets -JSPs -HTTP request - JNDI Please answer back ASAP.I'm in a hurry. -

supported IDE's

2000-06-26 Thread David Sierra Fernandez
Which IDE's (like Visual Cafe...) does orion support??? Does Orion supports JDBC 2.0??? thanks. - David Sierra Fern ndez E.T.S.I. Telecomunicaci¢n Universidad de ValladolidAULA CEDETEL Campu

THREADS

2000-06-19 Thread David Sierra Fernandez
I try again My team had a problem some time ago with another server, and I want to know if it is a problem of that server of if it is defined in that way at spec. The situation was: We create a very simple entity bean in which we implement a method that drives us to a infinite loop. We crea

Re: Orion UserManager

2000-06-16 Thread David Sierra Fernandez
Hi, Pedro (o deberia decir hola!) I think your method is: getGroups(int start, int max) and returns java.utils.List in com.evermind.security.UserManager class You can have a look at orion/docs/api/index.html ---> UserManager (Where can you from, Pedro? I think you are also spanish)

THREADS

2000-06-16 Thread David Sierra Fernandez
My team had a problem some time ago with another server, and I want to know if it is a problem of that server of if it is defined in that way at spec. The situation was: We create a very simple entity bean in which we implement a method that drives us to a infinite loop. We create an instance of

RE: PORTABILITY PROBLEMS !!!

2000-06-16 Thread David Sierra Fernandez
f you want portability, roll your own user management API (but this is a > pain as it won't hook nicely into app server functions). > > Such is life on the edge. > > Mike > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]

PORTABILITY PROBLEMS !!!

2000-06-16 Thread David Sierra Fernandez
I tried to deploy ATM example in Sun's J2EE implementation server, but it didn't recognize ear file. I tried to create the ear file mayself but when I tried to include the war and jar files, this last was also not recognize as a valid file. Then I tried to create both files begining from the .cl

OBJECTS IN ENTITYS

2000-06-16 Thread David Sierra Fernandez
I have a doubt: I have an enity bean but I want that I field of that entity to be a complex object. Is this possible from the point of view of the specification??? , and from the point of view of Orion? Other question: ¨What is the influence of having lots of entity beans in my application? ¨I

Re: very basic question

2000-06-15 Thread David Sierra Fernandez
Modify your orion/config/server.xml: Then edit the orion/config/default-web-site.xml and add the following: Remember to put your application under ../applications/yourapplication directory and the URL you are looking for is http://localhost/your_root/index.html

Re: Easy deployment of .war files?

2000-06-12 Thread David Sierra Fernandez
YEs Dorwin, it's very easy. If you hace a complete application in a .war file, you only have to follow the steps in "Hot-to setting up an Application" in Orion docs, that implies to write a couple of lines in two property files. But the most important thing is that you have to bear in mind that

JDBC 2.0

2000-06-12 Thread David Sierra Fernandez
Does orion supports JDBC 2.0 completely with BLOBs and CLOBs ... ? Does it have a XA compliant transaction manger? Can we update two databases in the same transaction? I've heard that it's neccessary a XA-compliant driver besides the XA compliant transaction manager in order to update two DB. D

Re: Problem running JSP files

2000-06-09 Thread David Sierra Fernandez
Try this... You also have to include your application in orion/config/server.xml: and include your application in that directory. Remember that "path" is the physical route to your application, meanwhile "root" is the virtual path that you have to write in the URL. -

CLUSTERING ¨?

2000-06-07 Thread David Sierra Fernandez
I want to know ASAP if orion supports replication and failover for: * home interfaces * stateless beans and what about: * servlets * JNDI * HTTP request * JSPs (I think it is useless to have the beans replicated if the server that fails is the only one which contains the JNDI) THANK YOU

Unsubscribe

2000-03-16 Thread David Sierra Fernandez

Unsubscribe

2000-03-15 Thread David Sierra Fernandez
Unsubscribe - David Sierra Fernández E.T.S.I. Telecomunicación Universidad de ValladolidAULA CEDETEL Campus Miguel Delibes E-Mail: [EMAIL PROTECTED] 47011 Valladolid (SPAIN) -

HARDWARE

2000-03-03 Thread David Sierra Fernandez
By now, I'm only developing EJBs but in a short time we want to implement a real application and I want to know more or less the harware requirements for a high load production enviroment with orion. Suppose 1000 pages/sec 500.000 pages/day. MEmory, proccesor, number of CPUs PLease i

Re: ejb-config - HELP!

2000-02-29 Thread David Sierra Fernandez
find out about in standard J2EE documentation, books, > course, etc. but unfortunately, all that doesn't exist yet. > > Btw, You also say that you get what you pay for. Have you found any other J2EE > servers with better documentation? Would be interesting for us t

Re: ejb-config - HELP!

2000-02-24 Thread David Sierra Fernandez
In your originally server.xml file you should have this: You should uncomment in this way: ./ejb.xml But solving this is only a small spot in a big mountain of sand. Orion is very poor documented and it is getting me continuously into trouble

Re: Orion in high load production environment

2000-02-21 Thread David Sierra Fernandez
Hullo, Orion users: I'd like to know a short description of the hardware used with Orion to get this performance of load handling: number of servers, features of the servers (RAM, cache, processor,... ) OS, DataBase... Thank you very much, special to Daniel Ockeloen. -- Sierr@ -- On M