RE: Simple Java Doubts

2001-05-10 Thread Peter Delahunty
alternatively make the singleton stateless. Then you pass in everything you need when the method is called. Everything is a local varible and so has no threading problems. -Original Message- From: Alex Paransky [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 6:41 PM To:

Re: Share sessions????

2001-05-10 Thread Johan Fredriksson
Suppose you could try to make your own session object and then issue the session object as a multipartrequest to the other app via POST method. But that is not what you want, but it might work. Just make sure the class file you use for datapassing is serializable and resides in orion/lib Johan

Re: Re: RE: Simple Java Doubts

2001-05-10 Thread Johan Fredriksson
Resistance is futile, you will be assimilated. Johan - Original Message - From: John Hogan [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, May 09, 2001 9:55 PM Subject: Re: Re: RE: Simple Java Doubts Santosh, Is the original disclaimer a secret plot to own

SV: Re: RE: Simple Java Doubts

2001-05-10 Thread Magnus Rydin
Title: SV: Re: RE: Simple Java Doubts THEY just informed me that the Frog is leaping through tiny blue loops. SOMEONE tells me that the Bavarian Illuminati has teamed up with BORG and are involved in this affair in SOME WAY. Fnord! -Ursprungligt meddelande- Från: Johan

Re: common practice for configuring orion app/web-site

2001-05-10 Thread Daniel Lopez
I don't know what the others do, but we split different projects in different servers(orion instances), as we want to be able to stop/start applications without affecting the rest. Now that hot deployment is becoming a reality, we might start concentrating them using different applications inside

Re: BIG Problem with SSL

2001-05-10 Thread Cadrion Support Team
Not exactly. The shared=true attribute is designed for a SINGLE web app to be deployed to two DIFFERENT places, and be able to share session information. In other words, make sure the https://... pages and the http://... pages are within the same application, by mapping both URLs to point to

RE: Re: RE: Simple Java Doubts

2001-05-10 Thread KishoreBabu.tanety
mama feeel ayyava?? -Original Message- From: Johan Fredriksson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 1:33 PM To: Orion-Interest Subject: Re: Re: RE: Simple Java Doubts Resistance is futile, you will be assimilated. Johan - Original Message - From: John Hogan

Re: Simple Java Doubts

2001-05-10 Thread cyclix
The force be with you...

RE: Re: RE: Simple Java Doubts

2001-05-10 Thread Christian . Tellefsen
Title: SV: Re: RE: Simple Java Doubts That's an evil communist lie. Please report to the nearest termination center. The computer is your friend! -Original Message-From: Magnus Rydin [mailto:[EMAIL PROTECTED]]Sent: 10. mai 2001 10:41To: Orion-InterestSubject: SV: Re: RE:

RE: Fun with compound primary keys

2001-05-10 Thread Kemp Randy-W18971
Can someone explain this question to me? -Original Message- From: Tin Hoc Pt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 10, 2000 1:25 PM To: Orion-Interest Subject: RE: Fun with compound primary keys mkgjfkgjfkgnjkjgfgrfg

Truncated data

2001-05-10 Thread Johan Fredriksson
Why does MsSQL server complain about truncating data? com.jnetdirect.jsql.m: String or binary data would be truncated.at com.jnetdirect.jsql.af.a(Unknown Source)at com.jnetdirect.jsql.w.a(Unknown Source)at com.jnetdirect.jsql.w.a(Unknown Source)at

RE: Fun with compound primary keys

2001-05-10 Thread Dan North
I think it will become clearer when someone removes the gaffa tape from his mouth Something to do with EJB deployment is my guess. At 07:39 10/05/2001 -0500, you wrote: Can someone explain this question to me? -Original Message- From: Tin Hoc Pt [mailto:[EMAIL PROTECTED]] Sent:

Fw: Truncated data

2001-05-10 Thread Johan Fredriksson
My question is of course, is there a way to tell MsSQLserver that it is ok to truncate...? That was NOT clear in my email... Sorry about that. Johan - Original Message - From: Johan Fredriksson To: Orion-Interest Sent: Thursday, May 10, 2001 4:20 PM Subject: Truncated data Why

Crimson Crash

2001-05-10 Thread Bill Winspur
This popped up on about my third sever restart after upgrading to 1.4.8. Given Sun's interest in this event, I thought Magnus, et al, might also be interested. Ironically, the url below for advising sun returns an Internal server error :-)

Re: Re: RE: Simple Java Doubts

2001-05-10 Thread Joseph B. Ottinger
This is not a test. If you do not heed this warning, it may happen to you. This is not a test. On Thu, May 10, 2001 at 02:11:25PM +0200, [EMAIL PROTECTED] wrote: That's an evil communist lie. Please report to the nearest termination center. The computer is your friend! -Original

TO THE DEVELOPERS: java.net.SocketException: socket closed

2001-05-10 Thread Lachezar Dobrev
java.net.SocketException: socket closed at java.net.PlainDatagramSocketImpl.receive(Native Method) at java.net.DatagramSocket.receive(DatagramSocket.java:392) at com.evermind.net.jc.ar0(JAX) at com.evermind.server.jms.ca.run(JAX) at java.lang.Thread.run(Thread.java:484) More: Using

Re: Apache + Orion

2001-05-10 Thread sub k
Hi, you can find this file in the config directory of orion and the file name is default-web-site.xml, and just couple of lines. 1. Change the port that you mentioned in the httpd.conf 2. add this line, frontend host=id address of apache port = port number of apache / Subrah --- SERGEY

RE: Fun with compound primary keys

2001-05-10 Thread Lauren Commons
Clearly this is a cryptography problem. I have applied advanced cryptographic techniques to this message (a character shifting algorythm, actually) and decoded the message as follows: CIPHERTEXT mkgjfkgjfkgnjkjgfgrfg PLAIN TEXT: omilhjilhjipljlihithi Obviously. --- Dan North [EMAIL

does JSP request.getParameterNames() work in Orion 1.4.5?

2001-05-10 Thread Garret Wilson
I'm passing a parameter to a JSP via: jsp:include page=includedPage.jsp flush=true jsp:param name=test value=abc/ Yet in includedPage.jsp, request.getParameterNames() seems to be empty, and the following returns false: request.getParameterNames().hasMoreElements() Yet I can access parameters

Re: Truncated data

2001-05-10 Thread Cadrion Support Team
Hi Johan. You are trying to squeeze too much data into one little field! Typically, this happens when you use the default deployment for a String field or similar for a bean which stores strings too long for the table. Check the default type mappings in

Re: does JSP request.getParameterNames() work in Orion 1.4.5?

2001-05-10 Thread Garret Wilson
Actually, request.getParameterNames() works fine -- I just realized I was modifying one page and testing another. However, I was using request.getParameterNames() to try to find the source of my *real* problem. My JSP parameters really look like this: jsp:include page=menubar.jsp flush=true

Re: TO THE DEVELOPERS: java.net.SocketException: socket closed

2001-05-10 Thread Tim Endres
I am not sure, but this may actually be a bug in the JVM. I say this becuase I documented a Socket bug three years ago that involved the closing of one side of a Socket connection. For example, in the UNIX RSH protocol, the Socket used in the protocol appears as stdio. In other words, stdin,

RE: Crimson Crash

2001-05-10 Thread elephantwalker
Bill, You should log this one at the Sun bug parade web site. The url is: http://developer.java.sun.com/developer/bugParade/index.jshtml They are interested in bugs with java and orion. I have one bug open now about rh 7.1 , 1.3.1rc2 and orion. This is a problem with your jdk. Regards,

ear file

2001-05-10 Thread elephantwalker
I noticed that the cmb tutorials' indicate that Orion needs write access to the directory where an ear is located. Is this true? I thought that orion expanded the ear in the application-deployments directory, and therefore only needs read access to the ear file. Regards, the elephantwalker

RE: Username/password in principals.xml

2001-05-10 Thread Terrance Davis
I found it used for connecting to an EJB via a remote client. I'm not sure what other uses it may have. - Terrance Davis Software Engineer emWare, Inc. (801) 993-7224 [EMAIL PROTECTED] -Original Message- From: Chaya Ramanujam

CLUSTERING PROBLEM FINALLY SOLVED!! web-module

2001-05-10 Thread Mike N. Christoff
With the help of Jeff Hubbach, we were finally able to get orion http clustering to work for all our applications, not just the default-web-app. So what was the problem?? A) Although the orion docs say otherwise, you MUST manually add the cluster-config / tag to the

Orion doesn't understand HEAD request

2001-05-10 Thread Kesav Kumar
I was trying to use the HEAD request of HTTP I am expectingI will get only the header information of the request. But I am getting whole content of the request. There is no difference in serving GET request and HEAD request. Is this a bug in orion? I am using orion 1.4.8 on WinNT. Kesav

Re: Serious problem with Orion transaction processing: multiple connecti

2001-05-10 Thread Eduardo Estefano
I would like to know if this issue has been resolved. I encountered the same problem with my application and would like to know if it is an orion bug or an error in my datasources configuration. Here is the run down: Same method in a session bean does this (simplified here): Contact contact

Re: Crimson Crash

2001-05-10 Thread Bill Winspur
FYI: Every time Orion starts up now, the previously posted message appears: --- A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation target' has occurred in : 'org/apache/crimson/parser/Parser2.maybeComment (Z)Z': Interpreting method. Please report

Standar Template

2001-05-10 Thread Dave Ford
I want to create a web app in which every page on the site has a standard header along the top and a standard menu along the left edge (a pretty standard thing). I came up with 2 ways of doing this: 1. Use a table tag and jsp:include tags on EVERY page: table tr tdjsp:include

SV: Serious problem with Orion transaction processing: multiple c onnecti

2001-05-10 Thread Patrik Andersson
Title: SV: Serious problem with Orion transaction processing: multiple c onnecti What exactly seems to be the problem? -Ursprungligt meddelande- Från: Eduardo Estefano [mailto:[EMAIL PROTECTED]] Skickat: den 10 maj 2001 20:35 Till: Orion-Interest Ämne: Re: Serious problem with Orion

Re: does JSP request.getParameterNames() work in Orion 1.4.5?

2001-05-10 Thread Attila Bodis
From reading the JSP 1.1 spec (Sec. 2.13.6.1, p. 69): jsp:param name=name value=value/ This action has two mandatory attributes: name and value. Name indicates the name of the parameter; value, which may be a request-time expression, indicates its value. It's not particularly

Which parser orion1.4.8 use?

2001-05-10 Thread Kesav Kumar
Title: Which parser orion1.4.8 use? I found crimson.jar parser.jar xerces.jar xalan.jar out of them which parsers orion1.4.8 use for SAX and TRAX(XSL transformation)? Kesav Kumar Software Engineer Voquette, Inc. 650 356 3740 mailto:[EMAIL PROTECTED] http://www.voquette.com

RE: Standar Template

2001-05-10 Thread Jeff Schnitzer
I've iterated through several solutions to this problem and can offer some advice: I started out using option 1 as you describe. I quickly noticed that *every* page contains the definition of the layout and look of the website. What if I wanted to put the navigation bar on the right instead of

RE: Username/password in principals.xml

2001-05-10 Thread Frank Eggink
It is used for J2EE authentication. Changing the config files and starting / killing the server (without using admin.jar) is not done via J2EE stuff and therefore: no admin login needed. On Thursday, May 10, 2001 7:43 PM, Terrance Davis [SMTP:[EMAIL PROTECTED]] wrote: I found it used for

findByAll() ... finding everything!

2001-05-10 Thread Jeremy C
Greetings! I have created a finder method in a CMP managed bean. It searches by many fields, not quite all, but any one I would want to search by. What I was hoping to accomplish from this was being able to specify diffrent fields to search by. Here's what I mean... This is my search.jsp

RE: does JSP request.getParameterNames() work in Orion 1.4.5?

2001-05-10 Thread Robert Watkins
Title: RE: does JSP request.getParameterNames() work in Orion 1.4.5? Atilla Bodis wrote: From reading the JSP 1.1 spec (Sec. 2.13.6.1, p. 69): jsp:param name=name value=value/ This action has two mandatory attributes: name and value. Name indicates the name of the parameter; value,

RE: Standar Template

2001-05-10 Thread Mike Cannon-Brookes
Noo - XML/XSL is too slow / fugly to actually use day to day (IMHO) I'd advise you to check out SiteMesh - it's built for this exact purpose! http://www.opensymphony.com/sitemesh Quite simply you provide JSP based decorators which are mapped to URIs. Download and install the sample app,

Re: Standar Template

2001-05-10 Thread Gordon Reynolds (cyonara)
Dan, Take a look at this article: http://developer.java.sun.com/developer/technicalArticles/javaserverpages/js p_templates/ I think it provides a solution you should consider. I've built my own version of the taglib (I wanted default values for the parameters) and it works

FW: Caching XLS style sheets

2001-05-10 Thread Ted R. Rice
-Original Message-From: Ted R. Rice Sent: Wednesday, May 09, 2001 8:15 AMTo: 'Orion-Interest'Subject: RE: Caching XLS style sheets in actuality, caching pre-compiled stylesheets and then using them repeatedly is very possible and you will see large performance gains via this

Re: common practice for configuring orion app/web-site

2001-05-10 Thread Bill Winspur
I prefer to do lots of little apps tied togoether by the data they share in an enterprise database (I'll admit the term enterprise database is optimistic but I've just done two years at a client who started his IT shop from scratch, so I'm spoiled). The many apps to one db patttern was