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]] 
Sent:   27 February 2002 13:36
To: Orion-Interest
Cc: [EMAIL PROTECTED]
Subject:Re: modeling tool

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]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Wednesday, February 27, 2002 1:37 PM
Subject: RE: modeling tool



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 you car
and mow your lawn
like Together is supposed to do, but it *does* handle all of the UML
diagrams.

Cheers
Ray

--- Djemal, Guy (TWIi London) [EMAIL PROTECTED] wrote:
 I've used www.magicdraw.com http://www.magicdraw.com/  in 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:20
 To: Orion-Interest
 Subject: RE: modeling tool


 Why don't you look at metamill ( www.metamill.com
http://www.metamill.com
 )? Its affordable and it has very nice features!

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Vinícius de
Faria
 Silva
 Sent: Tuesday, February 26, 2002 12:29 PM
 To: Orion-Interest
 Subject: modeling tool


 Hey guys, i'd like to hear your comments about this situation.
 My team has a well defined development process, for developing j2ee web
 apps. This is a lightweight process based on uml diagrams. Our Java IDE is
 JDeveloper9i and we are happy about it. We need now to get a uml graphical
 modeling tool, which support the analisys/design phases of the development
 process. JDeveloper9i doesn't support all the uml diagrams we need. At the
 same time we don't want to spend a lot of money with a tool that will
bring
 much more than we need(process development, java IDE and so on).
 I'm wondering to know what you guys think about it...

 thanks in advance,

 Vinícius






__
Do You Yahoo!?
Yahoo! Greetings - Send FREE e-cards for every occasion!
http://greetings.yahoo.com


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com








Re: Form based authentication problem

2001-03-01 Thread Jonathan James



I get a 405 error. "The method POST is not 
supported by this URL"

Jonathan

  - Original Message - 
  From: 
  cybermaster 
  To: Orion-Interest 
  Sent: Wednesday, February 28, 2001 10:22 
  AM
  Subject: RE: Form based authentication 
  problem
  
  
  Post 
  works for me in my test code  what error do you get? 
  --peter
  
  -Original 
  Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]On Behalf Of Jonathan JamesSent: Tuesday, February 27, 2001 9:50 
  AMTo: 
  Orion-InterestSubject: Form 
  based authentication problem
  
  I'm trying to get 
  the Java Petstore 1.1.1 (the new one) working with Orion. I've read some 
  previous posts and the docs and everything is working except that on my 
  login.jsp I have to use form action="j_security_check" method=GET 
  instead of form action="j_security_check" method=POST as it is 
  supposed to be. This ends up putting the password in the URL. Why doesn't POST 
  work with with j_security_check?
  
  Thanks
  
  Jonathan


Re: In Orion, are tag handler instances reused or reinstantiated?

2001-03-01 Thread Jonathan James

Actually it's configurable. Just add "-Djsp.reuse.tags=[false|true]" to your
command line when you launch the server.

Jonathan
- Original Message -
From: "Randahl Fink Isaksen" [EMAIL PROTECTED]
To: "Orion-Interest" [EMAIL PROTECTED]
Sent: Thursday, March 01, 2001 2:47 AM
Subject: RE: In Orion, are tag handler instances reused or reinstantiated?


 Experience tells me they are reused in Orion. If I have an optional tag
 attribute on a tag and the tag is used multiple times on a page I have
found
 out that I need to make sure that any contents set in the optional
attribute
 must be cleared manually by me, or I will get whatever contents was set by
a
 previous invokation of the tag.


 Yours
 Randahl

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Blacha, Bart
 Sent: 28. februar 2001 19:27
 To: Orion-Interest
 Subject: In Orion, are tag handler instances reused or reinstantiated?


 We are trying to figure out if tag handler objects are re-used, or
 instantiated-and-destroyed at every request.  This is obviously important
 for performance reasons.

 There is conflicting information in JSP spec and on JGuru (see references
 below).  So maybe it's an implementation-specific issue.   Which brings me
 to the question:

 What does Orion do with tag handler instances?  Reuse or reinstantiate
them?




 JSP spec 1.1, paragraph 5.4.7:

 At execution time the implementation of a JSP page will use an available
Tag
 instance with
 the appropriate prefix and name that is not being used, initialize it, and
 then follow the
 protocol described below. Afterwards, it will release the instance and
make
 it available for
 further use. This approach reduces the number of instances that are needed
 at a time.


 http://www.jguru.com/jguru/faq/view.jsp?EID=337618

 Question  We want to make sure that our JSP development efforts are
 thread-safe. Is it possible that two threads will access one instance of a
 JSP custom tag handler concurrently?

 No it is not possible. There is a defined lifecycle of a custom tag, and
 during this lifecycle, that instance of the tag will only get called once.
 Hopefully in newer implementations of JSP engines, the actual tag object
 will not get reinstantiated each time (as this negatively affects
 performance), but at least during it's use, it will be thread safe.


 --
 Bart Blacha, Software Developer
 NetPerceptions Inc.
 (512) 349-5622
 [EMAIL PROTECTED]










Re: Form based authentication problem

2001-02-28 Thread Jonathan James



FYII came up with something that makes it 
work. I edited the MainServlet.java file and added a doPost method that just 
calls the doGet method already implemented.This makes perfect sense except 
that it worked as it was on the Sun Reference Implemetation, JBoss/Tomcat, 
Weblogic5.1, and Weblogic6.0.

Jonathan

  - Original Message - 
  From: 
  Jonathan James 
  To: Orion-Interest 
  Sent: Tuesday, February 27, 2001 10:49 
  AM
  Subject: Form based authentication 
  problem
  
  I'm trying to get the Java Petstore 1.1.1 (the 
  new one) working with Orion. I've read some previous posts and the docs and 
  everything is working except that on my login.jsp I have to use form 
  action="j_security_check" method=GET instead of form 
  action="j_security_check" method=POST as it is supposed to be. This ends 
  up putting the password in the URL. Why doesn't POST work with with 
  j_security_check?
  
  Thanks
  
  Jonathan


Form based authentication problem

2001-02-27 Thread Jonathan James



I'm trying to get the Java Petstore 1.1.1 (the new 
one) working with Orion. I've read some previous posts and the docs and 
everything is working except that on my login.jsp I have to use form 
action="j_security_check" method=GET instead of  form 
action="j_security_check" method=POST as it is supposed to be. This ends up 
putting the password in the URL. Why doesn't POST work with with 
j_security_check?

Thanks

Jonathan


Re: Trouble installing

2001-01-19 Thread Jonathan



Have you tried moving the tools.jar file from your 
jdk/lib directory into the orion directory??

  - Original Message - 
  From: 
  Ivan 
  Figueredo 
  To: Orion-Interest 
  Sent: Friday, January 19, 2001 5:19 
  PM
  Subject: Trouble installing
  
  I downloaded orion1.3.8.zip.
  
  I then did:
  
  -
  D:\orionjava -jar orion.jar -installEnter 
  an admin password to use: dagw1nConfirm admin password: 
  dagw1nInstallation done
  
  D:\orionjava -jar orion.jarOrion/1.3.8 
  initialized
  --
  
  When I browse to 127.0.0.1, I get the "Orion 
  Application Server 1.3.8 - Up and running" page. But when I try to run some of 
  the examples inside the JSP examples, I nothing happens and I get 
  errors.
  
  Sorry if this has been asked 
  before...
  
  Regards,
  
  
  Ivan


Japanese display

2000-09-05 Thread Jonathan Scott
When I save a .jsp file in x-sjis format for Japanese kanji, and then access
it through Orion, it comes out all wrong. For those of you without the
Japanese fonts, it might look something like my signature. I have put into
the orion-web.xml file

default-charset="x-sjis"

And it still doesnt work. I checked the browser's encoding, and it is
correct. When I access html files in the same way, nothing bad happens.

Any suggestions?
Jonathan Scott


$B%$%(%k%M%C%H3t<02q<R(B $B%7%9%F%`%0%k!<%W(B
$B%8%g%J%5%s!!%9%3%C%H(B

$B")(B150-0002
$BEl5~ET=BC+6h=BC+(B2-2-10 $B@D;3(BHA$B%S%k(B4F
TEL$B!'(B03-5464-2525$B!JBeI=!K!!(BFAX$B!'(B03-5464-2522
[EMAIL PROTECTED] // http://www.yellnet.co.jp/



forgot to define security-role?

2000-08-04 Thread Jonathan H Brown

i'm getting the following when i try to access
a restricted area of my application:
--
403 Forbidden

Error initializing security, security-role not found: users
--
where might i have forgotten to define:
---
web-xml:
 security-constraint
 web-resource-collection
 web-resource-nameEverything/web-resource-name
 url-pattern*/url-pattern
 /web-resource-collection
 auth-constraint
 role-nameusers/role-name
 /auth-constraint
 login-config
 auth-methodBASIC/auth-method
 /login-config
 /security-constraint

ejb-jar.xml
 assembly-descriptor
 security-role
 descriptionTest/description
 role-nameusers/role-name
 /security-role

orion-application.xml
 security-role-mapping name="users"
 group name="users" /
 /security-role-mapping

config/principals.xml
 group name="users"
 descriptionusers/description
 permission name="rmi:login" /
 permission name="com.evermind.server.rmi.RMIPermission" /
     /group


what did i miss?

thanks,
jonathan





urgent How to lookup beans from another server?

2000-06-22 Thread Jonathan van Alteren

Hi,

I need to look up ejbs from my Orion application in some JSPs running in a
Tomcat server. The Tomcat server is running on another machine in the
network.
Do I need to use the RMIInitialContextFactory for this lookup, or the
ApplicationClientInitialContext (the first I would think) ? I know I can run
the JSP in Orion as well, but the project doesn't allow it.

I also want to browse the JNDI context with a utility I wrote... How do I
get the right context??

Kind regards,

Jonathan van Alteren




Using EJBs from another Orion application

2000-06-21 Thread Jonathan van Alteren

Hi everyone,

I just started using Orion (after working with several other EJB Servers).
I have deployed one ejb application using an .EAR in Orion under the name
'rbs'. I also have a JSP/web application deployed under the name 'dev-rbs'
without using an .EAR file. This is to be an updateable application. The JSP
developers in my team should be able to replace and add JSP files to the
application on-line.
My main problem is looking up a session ejb that the application uses in the
'dev-rbs' application. This session ejb comes from the 'rbs' application.
I would think that the JSP application is a client for the 'rbs' app (but
maybe not in the same container/server), so I shouldn't use the
'java:comp/env' prefix to the JNDI name.

What InitialContextFactory should be used ? I don't want to change anything
in the 'rbs' application. What has to be added to the descriptors of the
'dev-rbs' application?

Thanks for any help,
kind regards,

Jonathan van Alteren