RE: what happens at startup?

2002-03-05 Thread Greg Davis
Check your config files in orion/config. It looks like a tag wasn't properly closed or is missing from server.xml application.xml, or global-web-application.xml. If you still have the originals or the tar ball, re xtract the files to another directory and compare them, or cross reference it

RE: pitfalls migrating an app from orion to wls

2002-03-05 Thread Nick Mitchell
We recently completed a full migration, but in the other direction: WebLogic 6.0 to Orion 1.5.2. I think one of the major gotchas we ran across was the fact that WebLogic doesn't deal with .ear files very well, especially when trying to start the server with an existing ear. We were never able to

Re: pitfalls migrating an app from orion to wls

2002-03-05 Thread Robert Krüger
In the meantime, I just wanted to offer that I work for a company that develops what we call Portal Lifecycle Management tools (read application lifecycle for the web) on the J2EE platform. We currently support both Orion 1.5.x and WebLogic 6.1 (we require EJB 2.0 compliance), meaning we

Default autocommit is true or false?

2002-03-05 Thread Carlos Roberto da Silva Junior
Hi, list! A strange problem. I have a session bean that access a datasource. When a connection is requested and method Connection.getAutoCommit() is called, I always obtain true. The default autocommit isn't false? Stranger! See this code: try { Connection con = getConnection();

Delete me

2002-03-05 Thread Tatiana Gonzalez Cruz
Please delete me. From: Garrett Skelly [EMAIL PROTECTED] Reply-To: Orion-Interest [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject: General Question about Enterprise Deployment of Orion Date: Thu, 28 Feb 2002 18:14:19 - Guys Gals, has anyone deployed Orion in and

RE: Default autocommit is true or false?

2002-03-05 Thread Andrej Gabara
Title: RE: Default autocommit is true or false? From javadoc: | If a connection is in auto-commit mode, then all its SQL statements | will be executed and committed as individual transactions. Otherwise, | its SQL statements are grouped into transactions that are terminated | by either

A Question about context-root directive

2002-03-05 Thread Steven Herod
This is a resend, yesterdays version seems to have vanished... I'll confess, I'm a little confused. Documentation relating to J2EE states that the context-root directive in the application.xml or web.xml files should be used to provide a unique prefix for your web application to be access

Re: temporary SSL certificate

2002-03-05 Thread Scott Farquhar
This article the annotations demonstrate how to -selfcert a certificate. http://kb.atlassian.com/content/atlassian/howto/verisigncertificate.jsp Cheers, Scott Matt McLaurin wrote: We are trying to generate our own SSL certificate to be used with orion until our request is processed or our

remove me

2002-03-05 Thread romo
Hi: Pls remove me in the mail list. Thx

Using Objects as a parameter with CMP finder methods

2002-03-05 Thread Darian Shimy
Is there a directive to add on the command line to make Orion log all generated SQL statements? Also, if I have a EJB CMP and I am writing a finder method and I want to pass a JavaBean as a parameter, how do I tell the finder which method or variable to use in the where clause? Is it possible to

Deploying components common to EJB-tier and WEB-tier

2002-03-05 Thread Sanjay Kumar Pandey
Hi, I'm sanjay joining you guys for the first time. Query: -- If I have some components that are common to both web-tier and ejb-tier, which would be the ideal place to store them(other than ../j2ee/home/lib) ?? Can I put them(the .jar file having the common components) in the same ear file

More help for the newbie - javax.naming.NamingNotFoundException

2002-03-05 Thread Joe Antkowiak
I'm trying to learn ejb's using Orion's web server. I'm currently running 1.5.4. I appreciate all the help I've gotten so far. Basically, I'm trying to get the CabinBean example from O'Reilly publishings "Enterprise JavaBeans 2nd Edition" working. I think I'm pretty close. I just need to

javax.jms.MessageFormatException when ObjectMessage.getObject()

2002-03-04 Thread Tom Koutn
Hi, I'm sending message via topic: ObjectMessage message = session.createObjectMessage(new Event()); session.createPublisher(topic).publish(message, deliveryMode, priority, expiration); When I catch the message in my MDB,I get exception in getObject(): public void onMessage(Message msg)

Re: BigDecimal problem...

2002-03-04 Thread Daniele Arduini
Hi Nicolas, seems like you caught a bug in the Postgresql's JDBC driver. I had similar problem using the driver from Postgresql 7.1.3, you can either upgrage your driver to version 7.2 or apply the following patch and rebuild it: ===[ begin BigDecimal patch ]== diff -urN

Re: File Upload from an Application

2002-03-04 Thread Greg Matthews
you need to use 1. type="file" in the form within the browser. 2. get a ServletInputStream (?) from the request object in Orion and parse out the byte stream. do a search for ServletInputStream in google or something and you should find some examples. afaik, there is no simple method to

RE: File Upload from an Application

2002-03-04 Thread Reynir Hübner
check out oreilly's cos.jar, multipart request parser. I think the object is called MultipartReqeust. it's rather popular, even though the license is rather discomforting. -hope it helps [EMAIL PROTECTED] -Original Message- From: Michael Maurer [mailto:[EMAIL PROTECTED]] Sent: 4. mars

Re: Local / Local Home

2002-03-04 Thread Ray Harrison
There have been a few local interface bugs fixed - don't know the specific one you are talking about - go on out to orionserver.com and follow the bugzilla link to get the information on the specific bug. If it has been fixed - it won't be out until 1.5.5 is released which is hopefully soon.

Local interface with self defined Primary key Class doesn't work ?? (bug)

2002-03-04 Thread Eddie Post
Hello, I am using Orion 154 and am converting my entity beans to local interfaces However, I can't convert my entity bean that has an self defined Primary Class (see below) to a local interface Every time it gives an error: Nested exception is:

Re: javax.jms.MessageFormatException when ObjectMessage.getObject()

2002-03-04 Thread Tom Koutn
I solved this problem by putting transmitting class (Event) into orion's lib directory.It's not clear solution, but it works. I realized that bean's classloader knows the where the class Event is, but message's classloader knows only path to orion's lib. TK - Original Message -

Filling data for one-top many relationship

2002-03-04 Thread Alex
Hello, One Resource corresponds to many Image's When I create Image, one of parameters is Resource However this action does not fill in Resource_Image supplementary table and thus ResourcegetImages does not work as expected Do I have to add Image explicitly to Resource?

Re: MySQL Connection Pool?

2002-03-04 Thread Clay Mitchell
what about the database schema? On Mon, 4 Mar 2002, Joacim J?keborn wrote: Can anybody tell me how to set up a connection pool with a mysql database? Anybody have a guide on how to do this? Is it even possible? Checkout orggjtmmmysqljdbc2optionalMysqlConnectionPoolDataSour ce

RE: File Upload from an Application

2002-03-04 Thread Justin Crosbie
Also, You will need to use a POST form, with the parameter: enctype=multipart/form-data. Don't forget to handle the parameters as well as the files, they're no longer visible with req.getParameter() when you use this. There is a few MultipartParsers out there, including an Orion version. I

Trouble with Informix

2002-03-04 Thread Michael Moossen
Hello, I am having trouble with a j2ee application in an informatix database. Sometimes I encounter the following error message. java.sql.SQLException: java.sql.SQLException: System or internal error java.sql.SQLException: Cannot attach to transaction. at

RE: Uploading files to Orion webserver with MultipartParser API

2002-03-04 Thread Justin Crosbie
Looks like this didn't go through again. This a hint? (lol) ;) -Original Message- From: Justin Crosbie Sent: 04 March 2002 10:31 To: 'Orion-Interest' Subject: RE: Uploading files to Orion webserver with MultipartParser API Hi Bill, Now that you mention it, I have never been able to

HELP! Newbie with orion and EJB's

2002-03-04 Thread Joe Antkowiak
I need some help understanding the configuration of Orion so that I canlearn EJB. I understand most of the concepts behind it, but am failing inconfiguring my server properly.Right now, I'm doing the Cabin bean example out of Enterprise JavaBeans (2ndEd) by O'Reilly publishing. I'm doing

RE: How can I perform an action when web user is first logged on?

2002-03-04 Thread peter_saurugger
If you want to use form-based authentication, the only 'legal' way that I can think of is to write a sessionfilter that checks when a principal exists for the first time during a session. Otherwise you'd have to do your own authentication, calling RoleManager.login() and if it succeeds write a

Re: How can I perform an action when web user is first logged on?

2002-03-04 Thread Mike Cannon-Brookes
This would work great except that you cannot 'force' a container to bring up the login page (portably). UserManager doesn't help you because it too is an Orion specific API (just like RoleManager) About the only way to do portable user management/authentication/authorisation is with an open

Login username and password

2002-03-03 Thread prasanth sb
Dear friends, I have seen in many application servers a login username and password popping up for the entry allowing to the site Will some one help in getting the informations regarding this with orion application serverWish a good day thanks, Prasanth

SV: Login Security

2002-03-03 Thread Magnus Rydin
Title: Meddelande Hi Tom, Im currently finishing the Security Primer document that will give you step by step instructions for setting up security for web-modules amongst other things. As this document is not finished yet, I would urge you to check out Suns tutorials on this subject (or

Re: Login Security

2002-03-03 Thread Joacim Järkeborn
Checkout: http://kb.atlassian.com/content/atlassian/howto/securingdirectory.html Best regards Joacim Järkeborn - Original Message - From: Tom Holmes Jr. To: Orion-Interest Sent: Saturday, March 02, 2002 9:51 PM Subject: Login Security I've been using Orion since the 1.4.x version

RE: BigDecimal problem...

2002-03-03 Thread Nicolas Camut
Thanks, but I have already mapped BigDecimal type in this database schema. As I'm using Postgres dbms for development I have mapped it as follows but without any success: type-mapping type=java.math.BigDecimal name=decimal / As far as the pk type is concerned it is not up to me, being an Orion

How can I perform an action when web user is first logged on?

2002-03-03 Thread Alex Paransky
I would like to keep lastLogonDate for my users. However, with the J2EE security model it does not appear that I can inject any processing between the time when user is authenticated and a forward to the target url occurs. Did anyone solve this problem. If so, could you share your solution?

MySQL Connection Pool?

2002-03-03 Thread Clay Mitchell
Can anybody tell me how to set up a connection pool with a mysql database? Anybody have a guide on how to do this? Is it even possible? Thanks -Clay

Local / Local Home

2002-03-03 Thread David Tunkrans
Does anyone know if the bug mentioned in previous postings is fixed? (Using Local/LocalHome with BMP and CMP) /David

RE: Login username and password

2002-03-03 Thread The elephantwalker
Dear Prasanth, I have put together a simple set of lessons for user security...not to be confused with personalization. http://www.elephantwalker.com/rfa?id=404 You will need a password to see this, but its free to join the elephantwalker. I hope the lessons are easy to understand...after the

Re: MySQL Connection Pool?

2002-03-03 Thread Scott Farquhar
This guide is a good start, although someone else may have a mysql specific setup that they would like to share. http://kb.atlassian.com/content/orion/docs/datasource-configuration/datasource-configuration.html Cheers, Scott Clay Mitchell wrote: Can anybody tell me how to set up a

Re: MySQL Connection Pool?

2002-03-03 Thread Joacim J?keborn
Can anybody tell me how to set up a connection pool with a mysql database? Anybody have a guide on how to do this? Is it even possible? Checkout org.gjt.mm.mysql.jdbc2.optional.MysqlConnectionPoolDataSour ce Download the lastest driver from: http://sourceforge.net/projects/mmmysql/ //

File Upload from an Application

2002-03-03 Thread Michael Maurer
Hi I am trying to upload a file from an application to the orion server, but could not find the right solution so far. Does anyone has a nice solution ? Michael

BigDecimal problem...

2002-03-02 Thread Nicolas Camut
Hi, I'm having a really annoying problem with Orion I'm importing an application from Weblogic to Orion It consists of basic CMP EntityBeans so that I can test whether I can port a much bigger application Anyways, those Beans use BigDecimal as Primary keys In the design of this application,

Orion API

2002-03-02 Thread Grum Ketema
Hello, I have two questions Has anybody used the orion API Does orion support JAAS Regards, Grum

RE: BigDecimal problem...

2002-03-02 Thread The elephantwalker
This could be your database-scheme. I notice that most of the database schemas that come with Orion (look at the config/database-schemas) do not include a field for java.math.BigDecimal. However, the SapDB.xml schema does. Copy this bit into your database schema, and this will probably fix

Login Security

2002-03-02 Thread Tom Holmes Jr.
I've been using Orion since the 1.4.x version and I love it so far. I have used it for deploying JSP, Servlets, and JavaBeans under the default web-app. I've even learned how to create virtual hosts with Orion.Now I am learning more about web-apps, EAR files, and WAR files on Orion and BEA

Re: Uploading files to Orion webserver with MultipartParser API

2002-03-02 Thread Bill Winspur
I've had numerous weird and transient problems with IE 5.5. Yesterday, getting set up at a client site, I could not download j2sdk1.4 from sun, and had to go to a machine with IE5.0 to get it. However, IE5.5 was able to download netbeans just fine. The Sys Admin guys dont think its a firewall

AW: ClassCastException with struts

2002-03-01 Thread Jan Heise
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi, this sounds definitely like having some jars in the wrong place. you should check for jars and configs in orion/lib that should not be there but should be local to each webapp. (WEB-INF/lib) the struts jar has to be local to each webapp too.

Error creating web deployment directory ?

2002-03-01 Thread Eddie Post
Hellu, I updated from Orion 152 to 154 If I start Orion I get the following error when Orion tries to start my application: -- Error initializing site Default Orion WebSite: Error creating deployment directory: /web -- If I de-install my application I don't get the

RE: Error creating web deployment directory ?

2002-03-01 Thread thomas.hertz
Hi! If I start Orion I get the following error when Orion tries to start my application: -- Error initializing site Default Orion WebSite: Error creating deployment directory: ../web try to use absolute instead of relative paths in your configuration files. this solved

HTTP Put Request

2002-03-01 Thread Nebojsa Lazic
Hello everybody, I've been trying to configure Orion's security to allow some users to perform HTTP publishing of some files via HTTP PUT requests I think that I've configured all XMLs properly, but I'm getting 400 response from the Orion (PUT method is nod supported) Is this possible at all

Install Petstore 1.3, pls help.

2002-03-01 Thread Next Step
Hi all, I'm very newbie to Orion and J2EE I want to install Petstore 13 on Orion 154 (Win2k) I followed instruction as in this milist archive : http://wwwmail-archivecom/orion-interest@orionservercom/msg14262html cd petstore13\src\components build cd build I copied these following files to

ejb-ql

2002-03-01 Thread Michael Østergaard Jensen
When will Orion have full-support for ejb-ql? It would be nice to specify the finder-queries by ejb-ql instead of specifying the queries in orion-ejb-jar.xml System Developer Michael Østergård Jensen CIM Industrial Systems A/S Kildegården 3 DK-7600 Struer Denmark Phone +45 96 84 05 00 Mobile

Re: AW: ClassCastException with struts

2002-03-01 Thread Lucas Persona
Hello, Jan Heise wrote: this sounds definitely like having some jars in the wrong place you should check for jars and configs in orion/lib that should not be there but should be local to each webapp (WEB-INF/lib) the struts jar has to be local to each webapp too there is no common config

Re: Error creating web deployment directory ?

2002-03-01 Thread Mike Cannon-Brookes
This is a bug in 1.5.4 I think, we've been seeing similar behaviour here. There's nothing in the spec I don't think about having a module called ../web - I agree it makes it much faster to do development with open source trees like this ;) I haven't seen it in bugzilla yet, I'll try to remember

ew

2002-03-01 Thread Catch Em (oude users)

Message status - undeliverable

2002-03-01 Thread Mailer-Daemon
The message that you sent was undeliverable to the following: ggounden Information about your message: Subject: ejb-ql

JMS bind-permissions and remote-access deployments

2002-03-01 Thread Jason Coward
please help if you can I'm trying to deploy a second application on an Orion instance that is already bound to another instance of Orion via RMI configuration This RMI binding is part of a configuration to deploy a single application on different servers, one with a remote ejb module This works

Re: Orion crashes JVM

2002-02-28 Thread Juan Fuentes
Thanks to all of you for your help We have been looking into the system, and we discovered that the system has an important lack of memory. It's running an Oracle with 100 processes, and orion, with only 256 MB. We are expecting to have more memory and try again. Thanks Geoff Soutter wrote:

RE: modeling tool

2002-02-28 Thread Jonathan Leaver
You can do worse than try Poseidon, available at www.gentleware.com If anyone's interested, Enterprise Architect 2.5 Desktop was given away free with the February 2002 DVD edition of PC Plus (a UK mag). -Original Message- From: Jean-Guillaume LALANNE [mailto:[EMAIL PROTECTED]]

RE: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API)

2002-02-28 Thread Smith Jason
Has happened to me too - serveral times. /Jason -Original Message- From: Simon Stewart [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 5:37 PM To: Orion-Interest Subject: OT: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API) On Wed,

Database cursor in CMP/EJB

2002-02-28 Thread Eddie Post
Can someone please tell me how to implement a database cursor with EJB CMP ?? And if this isn't possible, how to do it with EJB EMP ? I was looking for info on the web but couldn't find any that can help me Please some help ?? Eddie

RE: Uploading files to Orion webserver with MultipartParser API

2002-02-28 Thread Justin Crosbie
Hi again, Hopefully this one will get through (lol) :) Thanks for the reply Joan, much appreciated. The faulty browser appears to be: IE 5.50.4522.1800 SP1 IE 5.50.4807.2300 SP2 We don't use a proxy server, and we always use HTTP 1.1. OS is Windows 2000 and WinNT for server, and Win2000 only

ClassCastException with struts

2002-02-28 Thread Lucas Persona
Greetings, I've been trying Orion and I'm having some problems using multiple applications (or copy's from the same application) What I have is one application, used (and modified) by some guys So, each one has his own web-app and application and a source / library directory The

Re: SV: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API)

2002-02-28 Thread KirkYarina
Take a look at Mailman ( http://www.gnu.org/software/mailman/mailman.html ). While I haven't used it, it's replacing Majordomo in a lot of sites. Majordomo's been static for years, while Mailman's an active project. While that could mean that Majordomo's stable and Mailman's chock full of

orion JavaService

2002-02-28 Thread Shal Jain
I have orion running as a service using JNT under win2K. However, I dont know how to redirect any console output (stdout,stderr) to a logfile Yes, I am using log4j but in some rare instances I get stack traces dumped from JVM. Also, prior to connecting to log4J, there are some diagnostic

General Question about Enterprise Deployment of Orion

2002-02-28 Thread Garrett Skelly
Guys Gals, has anyone deployed Orion in and enterprise environment? While trying to deploy our application we have encountered a MEMORY LEAK TYPE PROBLEM where EJBs are maintained in Memory and not released - in addition the config of the max-instances in memory does not work - this is a

Re: General Question about Enterprise Deployment of Orion

2002-02-28 Thread Ray Harrison
Hi Garrett - I believe this does work in Orion, at least I haven't had any known problems with it. (I'm using 1.5.4) Cheers Ray --- Garrett Skelly [EMAIL PROTECTED] wrote: Guys Gals, has anyone deployed Orion in and enterprise environment? While trying to deploy our application we have

orion JNT/JavaService

2002-02-28 Thread Shal Jain
I have orion running as a service using JNT under win2K. However, I dont know how to redirect any console output (stdout,stderr) to a logfile Yes, I am using log4j but in some rare instances I get stack traces dumped from JVM. Also, prior to connecting to log4J, there are some diagnostic

Holding on to instance of ServletOutputStream

2002-02-28 Thread Nimmons, Buster
I have one servlet which is called by a hidden frame. This sevlet creates a pushlet object by passing it's ServletOutputStream in the Pushlets constructor. This pushlet then holds on to this output stream and sends messages back to the hidden frame when certain server conditions are met thereby

RE: Database cursor in CMP/EJB

2002-02-28 Thread The elephantwalker
Eddie, What are you trying to do? regards, the elephantwalker -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Eddie Post Sent: Thursday, February 28, 2002 3:08 AM To: Orion-Interest Subject: Database cursor in CMP/EJB Can someone please tell me

RE: Database cursor in CMP/EJB

2002-02-28 Thread Eddie Post
What are you trying to do? I want to scroll through data in the database, such that I only show a maximum of 50 items on the web page. I am using EJB CMP with a web part and Orion 1.5.2 with java 1.3.1 (trying 1.5.4 as well now) ;) Eddie From: The elephantwalker [EMAIL PROTECTED] Reply-To:

Re: orion JavaService

2002-02-28 Thread Eddie Post
Typ java -jar orion.jar -help and you will see the corect commands to redirect the output to files. I use JNT and have a out.log and err.log file for redirection and it works fine. Cheers, Eddie From: Shal Jain [EMAIL PROTECTED] Reply-To: Orion-Interest [EMAIL PROTECTED] To: Orion-Interest

Orion doesn't pass stack traces from server to application client?

2002-02-28 Thread Geoff Soutter
Hi there, I just noticed that the application client that I wrote for Orion is printing stack traces like so: javaxejbDuplicateKeyException: Entity already exists at comevermind_dnEXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(:1446) at comevermind_dninvokeMethod(:1369) at

Couldnt read web-site config file: ../applications/mywebapp

2002-02-28 Thread Boz
Couldnt read web-site config file: /applications/mywebapp What causes the above message? I have a simple web app where mywebapp basically is organized like - orion - applications - mywebapp - META-INF - applicationxml - webstuff indexjsp

RE: Database cursor in CMP/EJB

2002-02-28 Thread The elephantwalker
Yes, I'm doing this with cmps, no problem. See this post, somewhere down towards the middle, there's some code I use in the finder of orion-ejb-jar.xml: http://www.elephantwalker.com/rfa?id=383page=2 regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL

re: Couldn't read web-site config file...

2002-02-28 Thread Dale M. Boresz
You didn't mention your orion/config/serverxml file There must be an entry in serverxml which specifies the location of your webxml file It would look something like: web-site path=/applications/mywebapp/webstuff/WEB-INF/webxml / You may also need another line in this same serverxml file,

remove

2002-02-28 Thread
remove my email address : [EMAIL PROTECTED]

RE: Uploading files to Orion webserver with MultipartParser API

2002-02-27 Thread Justin Crosbie
Hi Thanks for that, I wasn't aware of those classes, I gave them a go. Similar problem. Different error, but its occasionally failing. I also tried the non-brand-specific UploadServlet.java, similar results. However, I have gotten closer. It was failing on Internet Explorer 5.5. I tried

RE: modeling tool

2002-02-27 Thread Jarrod Roberson
Title: Message in my opinion, and I have been using modeling tools as part of every project since 1995! For Java projects there is only one tool, Together! -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Vinícius de Faria SilvaSent:

load balancing of OC4J

2002-02-27 Thread vinod ramu
Hi All, I am in a project which uses OC4J and I need to do load balancing of the App servers. I donn't know how to create multiple instance of the same server. So can any one please explain me the steps to be followed to create multiple instances how to share the session id's across the

RE: modeling tool

2002-02-27 Thread Djemal, Guy (TWIi London)
I've used www.magicdraw.comin the past, not quite as cheap as metamill but I thought it was nice. -Original Message-From: Chandra Kuchibhotla [mailto:[EMAIL PROTECTED]]Sent: 27 February 2002 01:20To: Orion-InterestSubject: RE: modeling tool Why don't you look at

shutdown problem

2002-02-27 Thread Jose Mena
Hi, i 'm having problems when shuting down my orion server. It's an orion 1.5.2 under debian linux(2.2.17 kernel version). this is the command i launch to stop it: $JAVARUN -jar admin.jar ormi://localhost/ admin OptiPlex -shutdown force but sometimes it doesn't stop the server. do you know

RE: modeling tool

2002-02-27 Thread Ray Harrison
It doesn't sound like you need all of what something like Together offers (not to mention the price!). Along the lines of metamill - I would suggest Enterprise Architect from Sparx Systems: http://www.sparxsystems.com.au I like what Mr. Sparx has done and I like the price. It doesn't wash

Re: modeling tool

2002-02-27 Thread Jean-Guillaume LALANNE
Just have a look at http://www.objecteering.com You can get a excellent CASE tool for free. It is the only one that fully implements the last UML release (with UML Profile for Extreme Programming). Cheers Jean-Guillaume LALANNE - Original Message - From: Ray Harrison [EMAIL PROTECTED]

RE: single sign-on for multiple application servers

2002-02-27 Thread steve . d . meacham
We are implementing SSO by using SAML. Netegrity (www.netegrity.com) has a free Java toolkit called JSAML which makes it pretty easy to code up. It's a roll-your own type of solution, but it is based on the upcoming SAML standard. Steven -Original Message- From: kollakesav

Re: Uploading files to Orion webserver with MultipartParser API

2002-02-27 Thread Joan Josep Iglesias
Hi again Justine, I've just prove it with an IE 5.5 and I have'nt got any problem... I don't know what problem you can have... If you want, you can try to read the upload file byte by byte... the way I token (by the moment). Good luck Justine!! Joan On Wednesday 27

OT: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API)

2002-02-27 Thread Simon Stewart
On Wed, Feb 27, 2002 at 09:17:41AM -, Justin Crosbie wrote: P.S. this is my second attempt at posting this, it appears the list does not pick up everything that is posted. I've noticed this too. Can't remember seeing a comment that this list is moderated anywhere, but perhaps we should

Orion crashes JVM

2002-02-27 Thread Juan Fuentes
Hi list! After few moments of orion (1.5.2) been started, the cpu usage of the JVM that runs orion drops to 0%. Obviously, orion stops answering requests. We are trying to find the problem. Don't know if it's in our application (it runs OK in other machines with the same orion server),

Re: Orion crashes JVM

2002-02-27 Thread Robert Virkus
Hallo Juan, some more details would help you could try to use orion 1.5.4 and see if you got the same behaviour, then it's probably not orion but your application what causes it greetings Rob Wednesday, February 27, 2002, 6:18:58 PM, you wrote: JF Hi list! JF After few moments

SV: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API)

2002-02-27 Thread Magnus Rydin
We are desperately trying to find time to update the software that runs this list. We have now made this one of our higher priorities, as this list is our primal channel of communication with our community. Disapearing postings sounds very alarming and makes us raise the priority of updating

Re: Orion crashes JVM

2002-02-27 Thread Stephen Davidson
Hi Juan. Which JDK? What OS? -Steve Juan Fuentes wrote: Hi list! After few moments of orion (1.5.2) been started, the cpu usage of the JVM that runs orion drops to 0%. Obviously, orion stops answering requests. We are trying to find the problem. Don't know if it's in our application

Re: shutdown problem

2002-02-27 Thread Scott Farquhar
Jose, The script located in this article might be of help: http://kb.atlassian.com/content/orionsupport/articles/unixprocess.html Look under the heading Starting and Stopping. Cheers, Scott Jose Mena wrote: Hi, i 'm having problems when shuting down my orion server. It's an orion 1.5.2

RE: Orion crashes JVM

2002-02-27 Thread Geoff Soutter
If you are on windows, try pressing Ctrl-Break on the Orion window (can't remember the kill number on unix). The JVM will print out a stack dump of all the threads. That should help you to see if there is a deadlock or something like that. Geoff -Original Message- From: [EMAIL

RE: Uploading files to Orion webserver with MultipartParser API

2002-02-27 Thread Geoff Soutter
Just be aware, MS don't number each release of their browser like NS do. For example, the original release of 5.5 was very buggy, but it's had at least a couple of Service Packs since then (5.5.1, 5.5.2, if you like). You need to indicate which service pack and which OS you are running on

Re: jndi.properties and ApplicationClientInitialContextFactory

2002-02-26 Thread Brendan McKenna
Hi, Does the requirement to install orion.jar with every instance of the client application mean that you have to (in a commercial environment) purchase an Orion license for each seperate instance of the client you want to run. In other words, if I want to run 10 instances of my

Re: j_security_check

2002-02-26 Thread Marcus Ahnve
If you're using sessions you can use a HttpSessionListener that implements sessionCreated. /Marcus On Mon, 2002-02-25 at 21:21, Christian, Joanne wrote: Hi Everyone, This is another newbie question. Can I extend j_security_check? I need to perform some additional setup upon user

single sign-on for multiple application servers

2002-02-26 Thread Diethard Kaufmann
hi, we want to provide a centralized sso facility for applications. if the applications are on the same server a solution with storing the session id in a hashmap - reachable for all applications - is a possible way for us. does anyone have a hint for doing sso in the case when the

R: Crap bytes in HTTP response

2002-02-26 Thread daniele rizzi
Dear all, I've read the below-mentioned message, and it sounds rather cool; I didn't know that a servlet could write to out at any time it likes; how do you manage that? do you have to set the content size before you write? or you just need to flush it out at the end of a chunck? thanx for

Oracle DB and schemas

2002-02-26 Thread Tim Pouyer
Hello, I just moved to orion1.5.4 and it seems that orion is treating my orion specific orion-ejb-jar.xml properties differently. I am using an Oracle 8i database and the only table I am concerned with are in the yc_content schema but when I set up my orion-ejb-jar.xml file to point to

Thank you, elephantwalker!

2002-02-26 Thread Min-Hua Luo
Hi elephantwalker, I greatly appreciate for your answer. I want to say that you have helped a lot of users in this communiy. It's great to have an outstanding source like you. I'd like to recommend your site to my friends. According to your answer, I think I need to implment addToGroup

RE: jndi.properties and ApplicationClientInitialContextFactory

2002-02-26 Thread The elephantwalker
This question needs to be directed to Ironflare AB. However, the pricing seems to say ...per server and not ...per client or server. regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Brendan McKenna

RE: jndi.properties and ApplicationClientInitialContextFactory

2002-02-26 Thread The elephantwalker
It was just pointed out to me that my link was bad...should be http://www.elephantwalker.com/rfa?id=178 regards, the elephantwalker www.elephantwalker.com -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of The elephantwalkerSent: Monday,

Re: single sign-on for multiple application servers

2002-02-26 Thread Kesav Kumar
I recently came across a software which provides a Single Sign on solution. The software is Entrust's TruePass, I guess its very expensive solution but the logic they have used is pretty simple and can be easily implemented on top of orion. The SSO solution what they have provided is based on

<    4   5   6   7   8   9   10   11   12   13   >