Re: java.lang.OutOfMemoryError in Product Application

2001-01-24 Thread Sven van ´t Veer
This is a known bug. A workaround was posted a while back. I have since moved to another company and don´t have an installation of orion here so I´m going from memory here. there should be some class in the orion API like com.evermind.Administrator which has a function flush() (static I believ

Re: Problems authenticating

2001-01-23 Thread Sven van ´t Veer
I have seen that error once.. When I had my form tag like: I had the error, I then changed to: and for some reason my troubels disappeared. sven Matt Bauer wrote: > I have a simple app (very similiar to the pet store) that uses form > based login. I can created an account and see it create

Re: Stand alone client needs orion server?

2000-12-01 Thread Sven van 't Veer
Guilherme Ceschiatti wrote: > > Hi... > > I need to know if it's necessary to have orionserver in the client. If so, It's > necessary to start it or just put the jar's in the class path? client needs: orion.jar jndi.jar ejb.jar application-client.xml the jars need to be in the classpath sven

Re: class cast exception

2000-12-01 Thread Sven van 't Veer
> > PhoneEntryHome home = (PhoneEntryHome) boundObject; should be : PhoneEntryHome home = (PhoneEntryHome)javax.rmi.PortableRemoteObject.narrow(boundObject, PhoneEntryHome); Marcus Lankenau wrote: > > Hi! > > I've started developing a very simple phonebook application for > learining purpose. T

Re: Running two instances of Orion on the same IP and port

2000-11-29 Thread Sven van 't Veer
> Larry Velez wrote: > > I know that binding a second IP to the box and having the second Orion > listen on that IP would probably work. Is there an obvious reason > that the way I am attempting always gives me an "Error starting HTTP > server: Address already in use" error on the second inst

Follow Up on BUG#174: batch updates & entities do not get passivated.

2000-11-28 Thread Sven van 't Veer
I'm currently running my batchupdates with the earlier proposed workaround: import com.evermind.server.administration.*; Context context = new InitialContext(); Object o = context.lookup("java:comp/Administrator"); ApplicationAdministrator admin = (ApplicationAdministrator)javax.rmi.PortableRemo

Re: AW: Huge amounts of entities, no pooled instances

2000-11-28 Thread Sven van 't Veer
"Haeussler, Heinz" wrote: > > Hello Sven, > > it's an old problem of orion and the only legal way to reduce the > EJB-Entity-Pool is to press the "Flush"-Button in the orion-console. > Please search in the mailing-list with the key "pool" and you will get > interesting mails discussing this pr

Re: AW: Huge amounts of entities, no pooled instances

2000-11-28 Thread Sven van 't Veer
"Haeussler, Heinz" wrote: > > Hello Sven, > > it's an old problem of orion and the only legal way to reduce the > EJB-Entity-Pool is to press the "Flush"-Button in the orion-console. > Please search in the mailing-list with the key "pool" and you will get > interesting mails discussing this pr

Huge amounts of entities, no pooled instances

2000-11-28 Thread Sven van 't Veer
Yesterday I posted a question about batch updating in Orion. Orion is creating huge amounts of instances of my entity without pooling. Someone mentioned that my updates possibly would be inside the same TX. Actually I'm using updating 2 tables, in one table, There is only 1 entity ised and it's p

Used Instances

2000-11-27 Thread Sven van 't Veer
In Orion console, what does 'Used Instances' denote? I'm doing batch updates to a database (about 20 daily) and about three quarters on the way, Orion console shows some 59000 used instances of my entity bean somewhere after that, my application crashes with a DeadlockException and shows that

Re: Anyone debugging Orion applications in JBuilder (no jdpa)

2000-11-27 Thread Sven van 't Veer
Suresh Ajja wrote: > > I am using JBiulder4 ,In the Tools, enterprise set up i could only see two > options to add app server, i.e. IAS and Weblogic, I set my working dir. as > orion as root, but how to add AppServer. > need help > Suresh > Take a look at www.orionsupport.com. It explains how

Re: Anyone debugging Orion applications in JBuilder (no jdpa)

2000-11-27 Thread Sven van 't Veer
Michael Rimov wrote: > Set the project working directory to the orion root directory. (You need > JBuilder4 for this) Nope works just fine with 3.5 too. I missed that one on the first try though. sven -- ==

Anyone debugging Orion applications in JBuilder (no jdpa) !!!! SOLVED

2000-11-25 Thread Sven van 't Veer
Sven van 't Veer wrote: > > I'm trying to debug my ejb apps in orion. I get Orion to run inside > JBuilder no sweat. However it tries to locate the config directory > relative to my project.jpr file and not relative to the orion base > directory. > > Any ideas??

Anyone debugging Orion applications in JBuilder (no jdpa)

2000-11-25 Thread Sven van 't Veer
I'm trying to debug my ejb apps in orion. I get Orion to run inside JBuilder no sweat. However it tries to locate the config directory relative to my project.jpr file and not relative to the orion base directory. Any ideas?? sven --

Re: Orion In Prodution

2000-11-25 Thread Sven van 't Veer
"Juan Lorandi (Chile)" wrote: > > There's a list of Overwhelming Orion Powered Sites, hosted by Jason Rimmer > at > > http://orion.irth.net/OOPS/oopslist.jsp > > where you can add your site(s) to the list... > > everyday I moderate the list so that new entries appear on the official > list..

Re: Anyone using Orion in production? [long]

2000-11-24 Thread Sven van 't Veer
> my personal opinion on this is that evermind should deliver source (while > retaining full rights on enhancements and bug fixes) with the product to > eliminate that risk. other commercial projects like orbaccus > (http://www.ooc.com) have shown that they still make a lot of money despite > shi

Re: Anyone using Orion in production?

2000-11-24 Thread Sven van 't Veer
Paul Kofon wrote: > Hi, > > I'd like to know, is anyone currently using Orion in a production > environment? The rather high number of issues people report here bothers me > because I'd like to get serious with a particular EJB server and my opinion > was that Orion was the right choice because o

Re: DB changes not reflected in CMP bean.

2000-11-24 Thread Sven van 't Veer
Jarek Skreta wrote: > This is a very interesting question. A lot of sources claim that the update > of beans should be automatic. Otherwise how would you connect the > application to any legacy database system which can be updated bypassing the > beans. It is indeed correct that Orion should u

Re: DB changes not reflected in CMP bean.

2000-11-24 Thread Sven van 't Veer
Winston Ng wrote: > > Hi All, > > This is more of an EJB question. > > I wrote a simple app using a CMP bean that talks to an Oracle DB. > > Started the server and was able to get/set information to the bean and > subsequently see the changes in the DB. > > However, if I make any updates to

Re: InitialContext

2000-11-22 Thread Sven van 't Veer
Edmund Cheung wrote: > > Hi, > > The following code is working in webloigc; > > String initialContextFactory = > ConfigManager.getProperty("framework.jndi.initialContextFactory","weblogic.j > ndi.TengahInitialContextFactory"); > Properties p = new Properties(); >

Re: help...servlet claspath

2000-11-17 Thread Sven van 't Veer
Edmund Cheung wrote: > > Hi, > > In weblogic, I defined the servlet classpath in the weblogic properties file > as follow; > > weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses > weblogic.httpd.register.UserManagerController=servlet.UserManagerController > > In my jsp, I c

Re: JetSpeed

2000-11-17 Thread Sven van 't Veer
"J.T. Wenting" wrote: > > using Js 1.2b1, which works fine on Tomcat 3.1 (at least it does not throw > any errors, the generated HTML is not always as it should be and there seems > to be a gaping memory leak). > The error is as stated "could not find package in import: > org.apache.cocoon.*, o

Re: JetSpeed

2000-11-16 Thread Sven van 't Veer
"J.T. Wenting" wrote: > > I asked the same question last week and got no response. There seems to be a > versioning problem between Jetspeed and the Orion XML stuff. > My problem seems to be that it cannot find some of the Turbine stuff. http://server/servlet/jetspeed produces a blank page. Ha

JetSpeed

2000-11-16 Thread Sven van 't Veer
Is there anyone who has gotten Jetspeed to work under Orion ?? sven -- == Sven E. van 't Veer http://www.cachoeiro.net Java Developer

Re: EJB Assembler tool

2000-11-16 Thread Sven van 't Veer
Alexander Sparkowsky wrote: > > Did somebody successfull use the EJB Assembler tool? When adding a bean the > tool tells me that it is unable to find the bean class also if I add the > classes to my classpath. > The EJB Assembler is a funny tool.. Let's say you hae an app called myapp myapp/ME

Re: SQL Server - Autoincrement Primary Keys

2000-11-14 Thread Sven van 't Veer
Shayne Hughes wrote: > > I'd be interested to hear what others think of this method of using MSSQL's > autoincrement type as PK. I have tried this and it seems to work in simple > tests. Yeah it's not portable and probably breaks several rules. > > For this table... > CREATE TABLE [dbo].[Lab

Re: EJB Basics

2000-11-14 Thread Sven van 't Veer
> "Mark A. Richman" wrote: > > What is the difference between WEB-INF and META-INF? How do these > directory structures relate to jar, ear, and war files? Which of > these is J2EE, and which is Orion-specific? Maybe I am confusing > something with Tomcat... > > - Mark BOTH are J2EE. META-I

Re: SQL Server - Autoincrement Primary Keys

2000-11-14 Thread Sven van 't Veer
Chris Miller wrote: > > Hi all, > > This is possibly more of a generic EJB question, although maybe not since > Orion has to implement the persistence... > > I was wondering if it is possible to use CMP beans against an existing > SQL-Server database that has autoincrement primary keys. It's no

Re: orion server works with jdk 1.3???

2000-11-14 Thread Sven van 't Veer
"Daniel G. Koulomzin" wrote: > > Gerald, > > You speak as if you have gotten Orion to run under a Linux > jdk1.3... any Linux jdk1.3 I run Orion on seems to Segfault after > about 5 minutes of continuous HTTP requests. To be fair, I don't > think this would happen under Windows... which

Re: orion server works with jdk 1.3???

2000-11-14 Thread Sven van 't Veer
"J.T. Wenting" wrote: > > check and doublecheck (goes for *nix too). For example Oracle installs its > own JVM without asking or telling you. If you choose custom setup you will > see 1.1.7 in the list of installed items, but removing it from the install > has no effect,it is still installed...

Re: help ! classpath to the shared jar files or class files

2000-11-14 Thread Sven van 't Veer
Edmund Cheung wrote: > > I have non-ejb classes ( called share.jar)are used by all ejb jar files and > how do I let Orion know to use this jar file for the ejb jars files ? > Define the classpath somewhere ? I have got the error below while deploying > the ejb jar files. Thanks for your help.

Re: ciphering URLs

2000-11-14 Thread Sven van 't Veer
Ismael Blesa Part wrote: > > Hi all, > > I am trying to cipher some of the parameters that are sent to my > application Server. I am having some problems with the conversion from > String to an array of bytes. Sometimes the conversion losts info. > Have any of you already solved this issue. I

Re: Get the web uploaded file

2000-11-13 Thread Sven van 't Veer
Storm Linux User wrote: > > > > > Your tage is missing the ENCTYPE="multipart/form-data" tag. Without this your page does not return a file. sven -- == Sven E. van 't Veer

Re: HELP! Confused about CMP and Primary Keys

2000-11-13 Thread Sven van 't Veer
Vidur Dhanda wrote: > > OK, > > Now I'm thoroughly confused.Would someone please help me before I > confuse myself even more. Here's the question/scenario: > I have a primary key, > > public class PK implements Serializable { > public String fooGuts; > > constructor/get/Set ... > }

Re: Web upload of a Java class

2000-11-13 Thread Sven van 't Veer
Storm Linux User wrote: > > It's not form commercial use. It's for my research project for getting my > master's degree in Electrical Engineering ... I'm not concered about securety > right now. > Hmm as long as you're not pursueing a masters in computer security.. Take a look at http://www.s

Re: Newbie Q: Can't find bean?

2000-11-13 Thread Sven van 't Veer
"Sean P. McNamara" wrote: > > > In addition to the specification, I have a copy of the > Monson-Haefel book on Enterprise JavaBeans, but there is virtually no > mention of JSP-EJB interaction. I also spent some time earlier today > browsing JSP-centric books in the local bookstore, and found

Re: Properties

2000-11-11 Thread Sven van 't Veer
"Magnus Naeslund(b)" wrote: > > > Shouldn't that do? > Or is /WEB-INF special? > According to specs WEB-INF/classes is where your (non-jarred) classes should go and WEB-INF/lib is where you should put your .jar files (e.i. your mail.jar). I suppose your jar should work if you put it in /WEB-I

Re: Please Help with Orion Debuging (Third Post !") Please Help !!!

2000-11-10 Thread Sven van 't Veer
[EMAIL PROTECTED] wrote: > > Greetings ! > > I have migrated my ejb to Orion, these ejb has System.out.println("flags") > that Orion doesn't show in the console. > I'm runing orion in this way:java -jar Orion.jar > I don't know if I have to run orion in an special >way or do any > configuratio

Re: Does Orion support CMP using user defined types?

2000-11-10 Thread Sven van 't Veer
Ken Shitamoto wrote: > > Does Orion support CMP using user defined types? > e.g. oracle objects? > You can set the in the orion-ejb.jar sven -- == Sven E. van 't Veer

Re: Servlet regains control after execution of .Forward()

2000-11-10 Thread Sven van 't Veer
> Grant Doran wrote: > > getServletContext().getRequestDispatcher("/index.jsp").forward(request, > response); > } > else > { > System.out.println("[GATEWAYSERVLET]Authentication failure. > Username:[" + username + "] Password:[" + password + "]"); > > request.getSession().setAttribute("Lo

Re: Non-Commercial

2000-11-10 Thread Sven van 't Veer
> "Lee, Se Hee" wrote: > > Sorry for stupid question... > > Anyway, it seems like Orion server is free for non-commercial > usage Does that mean that for non-profit organizational use, it's > free??? or is it for development license? > > Se Hee Nope if you're not making profit, it's free

Re: Problems with CMP PrimKey...

2000-11-09 Thread Sven van 't Veer
"Sean P. McNamara" wrote: > It turns out that it wasn't finding it since the attribute was > private. Does this mean that all my attributes in a CMP bean need to > be public? If so, I'm not sure why, since reflection since JDK1.2 > allows you to view private attributes based on security prope

EJB 1.1 findByPrimaryKey in orion 1.4.3 broken ?

2000-11-08 Thread Sven van 't Veer
I'm developing an EJB app for a while now on orion. The last version I had installed was 1.4.0. Most of my app was already working like a beauty. Today I auto updated to 1.4.3 and it seems that findByPrimaryKey where the primary key is a comppound primary key, got broken. I did some test and all

orion-ejb-jar.xml

2000-11-07 Thread Sven van 't Veer
Ok I sortof figured it out. Both password and date have http://www.cachoeiro.net Java Developer [EMAIL PROTECTED] ==

orion-ejb.xml

2000-11-07 Thread Sven van 't Veer
I was under the impression that changes manually made to orion-ejb.jar, however, every time I change the following line: to: and redeploy, Orion changes it back. sven -- ==

Re: Adding a site? - (2nd Post)

2000-11-07 Thread Sven van 't Veer
Thomas DeBruycker wrote: > 3) Added the line > to server.xml you missed adding : to server.xml (ahead of the http://www.cachoeiro.net Java Developer [EMAIL PROTECTED] ===

Re: newsgroup forum

2000-11-07 Thread Sven van 't Veer
James Hays wrote: > > Would it be possible or in enough peoples interest to put this list serv in > a newsgroup forum. For new people coming on with Orion, and others just > wanting to search through the information, this method has become very > exhaustive and message threads utilized by news

Re: Orion and Windows 2000 Professional

2000-11-07 Thread Sven van 't Veer
Jan Tye wrote: > > I have an application which runs fine under Windows 98, Orion 1.3.8 and JDK1.3 > > When the same application is run under Windows 2000 Professional (SP1) I get the >access violation shown below during database connection. > > D:\orion>java -jar orion.jar > Orion/1.3.8 init

Re: Orion System Requirements

2000-11-07 Thread Sven van 't Veer
Unico Hommes wrote: > > I was wondering what are the recommended and/or minimum system requirements > for running Orion Server. I have a 100 Mhz Pentium - 24 Mb memory linux box > which I want to use for testing and developing web apps with Orion server. > Will this work ? I didn't find this in

Re: REPOST: Help with Finder query

2000-11-06 Thread Sven van 't Veer
Vidur Dhanda wrote: > > file:/C:/dev/lib/: Unable to process query: source was not a > property/field mapped field (invalid '.' use) at column 16 in query > '?source.username = ?1' > in the finder-method tag, use the cmp-field-name you defined in your bean e.i.: public String username;

Re: Deployment to Orion

2000-11-04 Thread Sven van 't Veer
Hegyi Tibor wrote: > > Hi, > > I am quite new to Orion Server (and to the Orion-Interest mailing list) and > have been dealing with it for three days. I feel desperate now because I am > trying to install a simple (one-class) test servlet but still to no avail. > Unfortunately, Orion does not pr

Re: BMP vs CMP with Orion

2000-11-04 Thread Sven van 't Veer
Robert Krueger wrote: > > ok, if complexity is your main concern I wouldn't say cmp (at least 1.1) is > more complex than writing jdbc code to use bmp. of course you have to learn > something you don't know yet but I wouldn't accept that as a reason not to > use cmp. you would lose too much ju

Re: choosing database for EJB use?

2000-11-02 Thread Sven van 't Veer
James Ho wrote: > > Hi all... > > Can anyone pls tell me, is there any searching criteria for RDBMS for > use with EJB/Orion and why? Is transactions support necessarily for > CMPs? No transaction support is not necessary. However if you use a RDBMS without transactions, your EJB application

Re: JavaBean - setter methods NOT being called!

2000-11-01 Thread Sven van 't Veer
> Lars Borup Jensen wrote: > > Hi! > > Anyone ever experienced a setXX method NOT being called on a JavaBean > when using Orion <= 1.3.8. > Well, I have more than once.. > > When I write a JavaBean (or kinda) and put it in the WEB-INF/classes > directory and I have a simple > JSP page with th

Re: Anyone using Interbase in production?

2000-10-28 Thread Sven van &#x27;t Veer
"Duffey, Kevin" wrote: > > So of all the databases that are "free" to use, which one is best for load? > I know of PostgreSQL, mySQL, Interbase, and Sybase 11.x. Can anyone maybe > fill in the URLs where we can get these databases, as well as JDBC 2.0 > compliant drivers for them? http://www.my

Re: Anyone using Interbase in production?

2000-10-27 Thread Sven van &#x27;t Veer
Jim Archer wrote: > > Does anyone here have any experience with Interbase in a production > environment? We are trying to decide which database to deploy in > production. Since we are a very low budget operation, we are looking at > Open Source, but somehow missed this one. > > Our most import

Re:

2000-10-27 Thread Sven van &#x27;t Veer
Naveed Ahmad wrote: > > Hi, > How can I enforce, that the whole bean and jsp page is executed before the > processing for the next quesiton starts. I feel that it should be the web > servers responsibilty to queue and sysnchronise. But it is ot doing suh. That's not the responsability of the w

Re: Problems with EJB.

2000-10-27 Thread Sven van &#x27;t Veer
fresnaULL wrote: > > Hi all, > I think I've deployed correctly a EJB, because I'm able to use from > a java application. I've deployed the ejb like the cart ejb example. > > My problem is that when I try to use it from a servlet > the context.lookup doesn't find the EJB and generate an excepti

Re: rumors

2000-10-27 Thread Sven van &#x27;t Veer
Frank Kettenbeil wrote: > > is this a rumor or a joke ? just found it on bugzilla of > Orionserver.com... as a headline > > "BEA Closes Acquisition of Orion - The transaction is valued at > approximately DM 582 million (US$283 million). " But if it's true.. we're F%$^*&^ sven -- ===

excerpt from TheServerSide newsletter.

2000-10-27 Thread Sven van &#x27;t Veer
Slightly OT. I found this in my mailbox this morning ;-) * Being compliant with the latest specs. BEA and Orion have shined here. BEA was 6 months ahead of the pack with their EJB 1.0 product, which positioned them extremely well. Orion has unofficially been supporting many of the latest J2EE sp

Re: MYSQL, Orion, EJB and transactions ??

2000-10-27 Thread Sven van &#x27;t Veer
> "Laufer, Michael" wrote: > > Hi there, > If I understood it correctly, that would mean, that it should be > possible to use mysql with entity beans. Am I right ?? > What's confusing to me is the fact, that I only find news in > mailing-list, that mysql is not supporting transactions. Havent b

Re: Can't call an EJB from Within another EJB

2000-10-25 Thread Sven van &#x27;t Veer
J Davis wrote: > > We have gotten our Orion server(1.3.8) to work with EJBs on a singular > level(i.e. we can call EJB A, B or C and it works fine.) But If one of our > EJB's tries to call another(i.e. A calls B) A throws a naming exception > that it can't find the EJB reference when doing a

Re: Massive CPU useage

2000-10-23 Thread Sven van &#x27;t Veer
Gareth White wrote: > > To get an idea of the size of this log, I stopped the server and browser > connected to it, destroyed the log, started the server up again, connected > and performed one search. This resulted in a 303883 byte file, which was > 5600 lines long. Most of this output was li

Re: Orion in production

2000-10-20 Thread Sven van &#x27;t Veer
"Duffey, Kevin" wrote: > > easiest to set up. I played around with WebLogic for two weeks (on and off) > and still couldn't get my simple JSP page to show up. WebSphere was a > nightmare, and while Resin was easy to work with, its not a full J2EE app > server. > IBM WebSphere..about a year la

Re: Orion powered sites - update

2000-10-20 Thread Sven van &#x27;t Veer
Jason Rimmer wrote: > > o Addition of cachoeiro.net, snpc.com.br, and opengolf.com > By the way, cachoeiro.net is just jsp/servlets. The snpc.com.br (partially in development that's why it look like cachoeiro.net) is ejb with sybase 11.0.3 as db. It's a type of credit - report site which sear

Re: Orion in production

2000-10-20 Thread Sven van &#x27;t Veer
"Juan Lorandi (Chile)" wrote: > > Hi! > > I have been using orion for about 6 months now, and now, as I'm finishing my > app, I need to sell orion to my customers... > For this, it would be *VERY* valuable to have a list of sites (on the > internet or intranets) which use orion... > > So, basic

Re: Fw: Creating 2 Web-sites hosted from orion [V.Newbie]

2000-10-20 Thread Sven van &#x27;t Veer
Aaron Scott-Boddendijk wrote: > > > - Original Message - > > I installed Orion - works great... but... > > > > I have been asked to create an intranet site (intranet.intaz.co.nz) and > > a dev site (dev.intaz.co.nz) hosted on the same machine (WinNT4). > > > > I got the initial site (dev

Re: JBuilder + Orion

2000-10-18 Thread Sven van &#x27;t Veer
John D'Ausilio wrote: > > Can't say for sure if Jbuilder debugging works, but I've had good luck (and > just slight flakiness) using Forte and JPDA to debug .. I used the NetBeans > notes in the FAQ to set it up, and had no major problems > This was posted a while ago by Chris Miller: I have

Re: Entity bean ejb/entity/Autor & autocreate table

2000-10-16 Thread Sven van &#x27;t Veer
Robert Krueger wrote: > > At 16:44 14.10.00 , you wrote: > > >Robert Krueger wrote: > > > > > > check out orion-ejb-jar.dtd docs. you can change the table names to > > > whatever you like. > >I knew that much, but that's created -after- deployment, and only if > >deployment was succesful. I wa

Re: Entity bean ejb/entity/Autor & autocreate table

2000-10-14 Thread Sven van &#x27;t Veer
Robert Krueger wrote: > > check out orion-ejb-jar.dtd docs. you can change the table names to > whatever you like. I knew that much, but that's created -after- deployment, and only if deployment was succesful. I was looking for a way to do this before deployment. sven --

Re: javax.naming.NameNotFoundException

2000-10-14 Thread Sven van &#x27;t Veer
Robert Krueger wrote: > > does AutorFacade have an ejb-ref to Autor? if not and you don't know why, > I'd suggest reading up on these things. you're not going to have very much > fun with orion without a basic understanding of these issues. orion is a > very powerful but raw tool and it assumes

javax.naming.NameNotFoundException

2000-10-14 Thread Sven van &#x27;t Veer
Orion can't find my deployed bean: java.rmi.RemoteException: com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: Error while creating session: java.rmi.RemoteException: javax.naming.NameNotFoundException: Autor not found in AutorFacade; nested exception is: java.rm

Entity bean ejb/entity/Autor & autocreate table

2000-10-14 Thread Sven van &#x27;t Veer
Upon deploying my beans, my EntityBean AutorBean (jndi env/entity/Autor) tries to Autocreate the table Autor as create table env/entity/Autor. Is this standard behaviour, or is there an option in ejb-jar.xml to change this behaviour? sven -- ==

Re: Problems with EJB and JNDI-context

2000-10-13 Thread Sven van &#x27;t Veer
Nils Frohberg wrote: > > Hi, > > I am facing a problem with my EJBs that i cannot solve. I try to access a EJB via a >JSP page: > > javax.servlet.jsp.JspException: NamingException: Error instantiating web-app >JNDI-context: No location specified and no suitable instance of the type >'de.tak

Re: NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Sven van &#x27;t Veer
Robert Keith wrote: > > Hi Guys, > > I have trawled through the docs to try and find a way to shut orion down > cleanly, however I can't find the default username and password in order to > shut it down. Can you guys let me know what it is? > > cheers > > Rob I guess it's the one you created

Re: Interbase Details [Was HARDWARE FOR J2EE apps]

2000-10-12 Thread Sven van &#x27;t Veer
Mike Cannon-Brookes wrote: > > Sybase JDBC drivers are called "JConnect". Current version is 5.2 (for > JDBC2) and 4.2 (JDBC1) > > I had a few problems with them ages ago and bought a commercial driver - > never tried again, but they have evolved I think. > > And JDBC drivers for Sybase? Las

Re: EJB vs Servlets

2000-10-10 Thread Sven van &#x27;t Veer
> Hani Suleiman wrote: > > > 1) Connection pooling: This is available everywhere, and everyone can > reap the benefits of it while being perfectly EJBless. > > 2) Transaction support: Stored procedures can take care of this. Stored procedures to do your transactions for you takes away the po

Re: CMP with DB2 again. Urgent.

2000-10-09 Thread Sven van &#x27;t Veer
Russ White wrote: > > Hey folks, > I really need an answer to this question because while I would love to use Orion > I cannot risk moving my 100+ EJBs over to Orion until I can get this resolved. I > am at a critical descission point here. > > The IBM DB2 JDBC drivers do not allow SetNull(FLO

Re: SSL - Only a few pages need SSL, does that slow things down?

2000-09-25 Thread Sven van &#x27;t Veer
"Duffey, Kevin" wrote: > > Hi, > > Seeing all this SSL talk has me wondering a bit...we only have 3 pages right > now that use the HTTPS protocol. The other 200+ are just HTTP. If we have > Orion use SSL does it take any noticeable hit on the rest of the pages that > are not using SSL? I just

Re: Orion Server java:comp/env?

2000-09-21 Thread Sven van &#x27;t Veer
Blasius Lofi Dewanto wrote: > > Hi! > > I just wonder, is that possible to > make the lookup from "the client program" > without java:comp/env? > > The problem is, I want to write an EJB application > that can use JOnAs and Orion as the container. > JOnAs's JNDI does not support java:comp/env

Wap & url rewriting

2000-09-19 Thread Sven van &#x27;t Veer
In the code below, Orion automatically rewrites the URL, creating a wrong link in the celphone. Is this rewriting default behaviour, and how can i undo this? <% if (checkBean.getContas() != null) { %> contas encerradas

Doubts on finder methods & orion-ejb-ar.xml

2000-09-19 Thread Sven van &#x27;t Veer
I have a couple of doubts concerning the tag. specifically, I would like to implement a query like "select * from table where field LIKE '%value'" Considering I have: in my orion-ejb-jar.xml. and the docs tell me: I suppose (not really clear in the docs) that $1 is th

autocreating tables

2000-09-18 Thread Sven van &#x27;t Veer
When orion autocreates tables, string fields are always represented as char(255). How do i change this behavior so it will create for example: String name as char(25) String firstname as char(20) String zipcode as char(8) etc. Sven -- ===

Re: SV: Orion & Sybase

2000-09-18 Thread Sven van &#x27;t Veer
[EMAIL PROTECTED] wrote: > > Put the datasource of the database you want the tables to autodeploy in > first in the datasources-xml. Or remove autocreatetable support and deploy, > then edit orion-ejb.jar.xml to point to the right datasource, then enable > autocreate option and redeploy again.

Orion & Sybase

2000-09-18 Thread Sven van &#x27;t Veer
I just installed sybase and after updating the data-sources.xml I redeployed what I'm currently developing. While deployng, orion started autocreating tables, which is ok with me, except for th fact that it is autocreating in the wrong database. Here's the relevant part of my database xml

Re: Benchmarks

2000-09-17 Thread Sven van &#x27;t Veer
Lawrence Fry wrote: > > Christof, > > I read this article, and the comparison in this benchmark is between php, > perl and java. The benchmark is not intended to compared j2ee application > servers, and as noted in the article, only includes "toy" applications like > hello world. The conclusion

IBM DB2 & Orion

2000-09-15 Thread Sven van &#x27;t Veer
Has anyone got DB2 working with Orion ?? Depoloying an application with a DB2 DS under jdk1.2.2 causes a crash in java.exe. Under 1.3 causes orion to crash: java.lang.NoSuchFieldError: rsType at COM.ibm.db2.jdbc.app.DB2Statement.SQLAllocStmt What's wrong here? Does anyone have an example of a

Re: adding vhosts without restarting server?

2000-09-15 Thread Sven van &#x27;t Veer
"Joseph B. Ottinger" wrote: > > I have a client who adds new vhosts on a regular basis; currently that > means (AFAIK) they have to restart on each addition. Is this correct? If > they restart, doesn't that imply that any current sessions are wiped? I've 'hot deployed' some applications and vir

Re: IDE use with Orion

2000-09-15 Thread Sven van &#x27;t Veer
Christian Sell wrote: > > >but i can see potential for the orion crew to > >make a couple of modules for forte to get an "ide" that has ejb generation > >and so on matching Orion. > > I for my part can still see a significant potential for the orion crew > writing documentation before delving

Re: Remote debugging from JBuilder

2000-09-14 Thread Sven van &#x27;t Veer
Maxim Weiss wrote: > > Hello, > is it possible to debug EJBs from JBuilder IDE? > Yes it can be done. See the docs for JBuilder debugging with IAS and apply this to the jars in /installdir/orion. I haven't done it yet, but I heard of people doing it. What it basically involves is starting Or

Re: JBuilder 4

2000-09-06 Thread Sven van &#x27;t Veer
nyone with experience. However, since you can debug j2ee apps in JBuilder-Orion with JB 3.5, I guess it will be possible with JBuilder 4 too. sven -- ========== Sven van 't Veer

Prepared Statements

2000-08-05 Thread Sven van &#x27;t Veer
Does Orion pool prepared statements, or do I depend on the DB to cache the query plan? sven -- == Sven van 't Veer http://www.cachoeiro.net Java Deve

Re: How do you like Orion?

2000-08-04 Thread Sven van &#x27;t Veer
er US$150.000 for an appserver when I might just as well pay only US$ 1500 for something that works *at least* just as well. The only thing are the docs. sven -- =

High volume web app & orion.

2000-07-29 Thread Sven van &#x27;t Veer
one doubt that orion can handle this workload ?? sven -- ====== Sven van 't Veer http://www.cachoeiro.net Java Developer

This could be Interesting

2000-07-26 Thread Sven van &#x27;t Veer
sting, jim -- ====== Sven van 't Veer http://www.cachoeiro.net Java Developer [EMAIL PROTECTED]

Problems executing HelloClient

2000-07-24 Thread Sven van &#x27;t Veer
he user & password in the appdeployments/myapp/principals.xml. What Am I missing? sven -- ========== Sven van 't Veer http:

IE explorer

2000-07-22 Thread Sven van &#x27;t Veer
sven -- == Sven van 't Veer http://www.cachoeiro.net Java Developer [EMAIL PROTECTED] _/_

stupid

2000-07-21 Thread Sven van &#x27;t Veer
I'm sorry for the last e-mail I send about orion on linux.. I should read the manual some more.. Ofcourse without tools.jar in orion/ things don't work. sory I'm back to RTFM. sven -- ========== S

orion on linux not serving jsp from /examples

2000-07-21 Thread Sven van &#x27;t Veer
;s just fine.. (with jdk1.3). Is this a jdk problem ? sven -- ============== Sven van 't Veer http://www.cachoeiro.net Java Developer

Orion serving Static HTML

2000-07-19 Thread Sven van &#x27;t Veer
I'm considering replacing Apache/Jserv and Apache/Tomcat on two machines with orion, unless Orion is much slower serving static html than Apache. Are there any benchmarks available? sven -- == Sven van &#

  1   2   >