Re: Starting Orion as a service in Solaris 8

2002-05-03 Thread Johan Fredriksson
Did you start the service as root? And did you remember to copy tools.jar to the /usr/local/orion ? - Original Message - From: Vu Le Hung [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, May 03, 2002 9:44 AM Subject: Starting Orion as a service in Solaris 8 Hi all,

Re: Orion user management

2002-04-03 Thread Johan Fredriksson
session.invalidate(); ? - Original Message - From: Randahl Fink Isaksen To: Orion-Interest Cc: [EMAIL PROTECTED] Sent: Wednesday, April 03, 2002 11:08 AM Subject: Orion user management Hi Peter I was just wondering: In your search for

Re: default.jsp bug (duplicate requests)

2002-04-02 Thread Johan Fredriksson
This sounds like it could have something to do with IE's lazy update feature. I suppose many of your pages does not cause a problem if run multiple times. For those pages that can only be run once, make sure to handle this by using some sort of cookie or session variable. % if

Re: timed events

2002-03-13 Thread Johan Fredriksson
Perhaps via a croned java client? //Johan - Original Message - From: Casper Højstrup [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 10:20 AM Subject: timed events This more of a regular EJB question, I suppose. I need to initiate some

Re: connection pipe problems

2002-01-17 Thread Johan Fredriksson
Make sure you flush the buffer in the servlet before it finishes. //Johan - Original Message - From: Aaron Tavistock [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, January 17, 2002 3:37 AM Subject: RE: connection pipe problems You can't really tell everyone on

RE: Problem using custom tags.

2001-10-09 Thread Johan Fredriksson
inline -Original Message- From: E Stones [mailto:[EMAIL PROTECTED]] Sent: den 8 oktober 2001 14:01 To: Orion-Interest Subject: Problem using custom tags. The following example is taken from Chapter 2 of Advanced Java Server Pages by David M. Geary I'm getting this error when I try to

RE: QUESTIONS ABOUT MANAGING SECURITY

2001-09-28 Thread Johan Fredriksson
Try setting up an errorpage for the error com.evermind.server.rmi.OrionRemoteException //Johan -Original Message-From: David Bonilla [mailto:[EMAIL PROTECTED]]Sent: den 27 september 2001 12:56To: Orion-InterestSubject: QUESTIONS ABOUT MANAGING SECURITY I have

Orion on Macintosh

2001-09-10 Thread Johan Fredriksson
Anyone tried to run Orion on a Mac OS X machine? And if anyone have, I'd like to know about problems you had. Any porting problems from Microsoft development to production Mac...? Thanks in advance Johan

Re: Orion and properties (Anyone used a CORBA client within Orion?)

2001-09-10 Thread Johan Fredriksson
Have you tried the -Xms64m -Xmx128m options to java? Type java -X for help Johan - Original Message - From: Adam Cassar [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, September 10, 2001 5:54 AM Subject: Orion and properties (Anyone used a CORBA client within

Re: Orion and Sax/JDom

2001-09-06 Thread Johan Fredriksson
Title: Message If you're using Windows you might want to check your registry. If you can type java -server -jar orion.jar the settings should be ok. Look for anything in the registry that says javasoft and make sure it points to your jdk installation dir. If it is not pointing to your jdk

Re: response.sendRedirect(response.encodeRedirectURL(path));

2001-09-05 Thread Johan Fredriksson
Thanks, that was it! Johan - Original Message - From: James Fairbairn [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, September 04, 2001 2:46 PM Subject: Re: response.sendRedirect(response.encodeRedirectURL(path)); Hi Johan Are you using Apache as a reverse

Re: response.sendRedirect(response.encodeRedirectURL(path));

2001-09-04 Thread Johan Fredriksson
I did is to encode the session id in the url in my code. i.e. response.sendRedirect(path+;jsessionid=+session.getId()); regards sze wee From: Johan Fredriksson [EMAIL PROTECTED] Reply-To: Orion-Interest [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Subject

response.sendRedirect(response.encodeRedirectURL(path));

2001-09-03 Thread Johan Fredriksson
-- !-- Access Log, where requests are logged to --access-log path="../log/aller-web-access.log" /!--web-app application="admin" name="admin-web" root="/admin" / --web-app application="aller" name="aller-web" root="/aller" / /web-site I would greatly appreciate if anyone who has solved this can give me some insight other than using absolute urls. Thanks in advance Johan Fredriksson

Re: NullPointerException npe

2001-08-28 Thread Johan Fredriksson
essage ----- From: Johan Fredriksson To: Orion-Interest Sent: Monday, August 27, 2001 3:56 PM Subject: NullPointerException npe I 500 Internal Server Errorjava.lang.NullPointerException at com.evermind[Orion/1.5.2 (build 10460)].server.http.JSPBeanInfo

NullPointerException npe

2001-08-27 Thread Johan Fredriksson
I 500 Internal Server Errorjava.lang.NullPointerException at com.evermind[Orion/1.5.2 (build 10460)].server.http.JSPBeanInfo._edb(Unknown Source) at com.evermind[Orion/1.5.2 (build 10460)].server.http.JSPPage._ckc(Unknown Source) at com.evermind[Orion/1.5.2 (build 10460)]._ah._bfe(Unknown

Re: Question about filestoring.

2001-07-26 Thread Johan Fredriksson
It will normally store your files relative to your application root. Johan - Original Message - From: Jens Frank To: Orion-Interest Sent: Wednesday, July 25, 2001 8:10 PM Subject: Question about filestoring. I have this servlet which works with a database.

Re: Orion Performance Tuning

2001-07-26 Thread Johan Fredriksson
inline - Original Message - From: Robert S. Sfeir [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 11:09 PM Subject: RE: Orion Performance Tuning At 12:49 PM 7/25/2001, Duffey, Kevin wrote: I am interested in your two fixes. Have you (or anyone)

Re: JMS TopicSubscriber blocks on receive()

2001-07-25 Thread Johan Fredriksson
It is quite obvious it is waiting for a message. So my advice is that you write a client / jsp page / whatever with a TopicBrowser(?) to make sure your message really is there. Johan - Original Message - From: Greg Matthews To: Orion-Interest Sent: Wednesday,

Re: Orion's JSP generated code

2001-07-25 Thread Johan Fredriksson
Why don't you write a bodyTag that you use like myTag:removeAllStupidWhiteSpaceThatIDontLike % foo(); %% bar(); % /myTag:removeAllStupidWhiteSpaceThatIDontLike And in your code, analyse bodycontent before it is written...? ie bodyContent.toString().indexOf("\r\n"); or something like

Re: Servlets

2001-07-25 Thread Johan Fredriksson
Compile it and put the java/class files in /web-inf/classes then access it as http://hostname/appname/servlet/my.package.name.ClassName (or if you put it in your default webb app the url is http://hostname/servlet/my.package.name.ClassName ) So if your SimpleServlet resides in a default

Re: Properties survice auto-deploy

2001-07-16 Thread Johan Fredriksson
I would really hate the fact if orion/applications/myapp was swiped on the next deployment, since my htdocs are mounted under that directory. And we have customers who uses fileupload for images that are to be displayed. And if the directory is to be swiped everytime we update the

Re: Bug??? Orion/SSL + IE loses sessions

2001-07-04 Thread Johan Fredriksson
It is also a known problem that IE forces a user to relogin every 2 minutes by default. Strongly suggest that you go to a site with online banking and see how they solved the problem. Usually there's a patch to download that increases the expiring idle time, which is annoying when IE is using

Re: Debug JSP - how to?

2001-06-29 Thread Johan Fredriksson
Try uncommenting the error-page thing in web.xml, this would let you see what is actually going on. Johan - Original Message - From: Henrik Skafsgaard Larsen [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, June 29, 2001 8:07 AM Subject: Re: Debug JSP - how to? I

Re: Newbie - using EJB and databases

2001-06-25 Thread Johan Fredriksson
it may be usefull. Best regards, Jens Stutte -Ursprüngliche Nachricht- Von: Johan Fredriksson [mailto:[EMAIL PROTECTED]] Gesendet am: Mittwoch, 20. Juni 2001 13:52 An: Orion-Interest Betreff: Re: Newbie - using EJB and databases This is how I always do import

Re: Servlet and CSS

2001-06-19 Thread Johan Fredriksson
Use Netscape to develop this for the first time, since Netscape complains more ( Netscape 6 is worst / best ). the file blaf.css as you have now written the code is assumed to be in the /servlet dir, which probably is not the case. Use something like request.getContextPath()+/css/blaf.css

Re: LIST ADMINISTRATOR

2001-06-18 Thread Johan Fredriksson
That wont help, since the bouncing mails are bouncing back to the mailing list and therefore are sent to all of us. A filter at the mailserver would help, but then somebody would start to yell something about IronFlare and censorship. And we don't need that thread again... Johan - Original

Re: NEWBIE: Default HTTP Content-Type

2001-06-11 Thread Johan Fredriksson
Well, you could probably use a filter to just that... Have the filter trigger a servlet which reads the file and sets the content type. Johan - Original Message - From: Norbert Papke [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, June 04, 2001 7:03 PM Subject:

Re: Oracle deal gag

2001-06-11 Thread Johan Fredriksson
Wrong, it is not CIA, but the Borg who have intercepted and censored some messages. That also explains the delay on this list, since a subspace call takes a while to travel. RESISTANCE IS FUTILE. Johan - Original Message - From: Jeff Schnitzer [EMAIL PROTECTED] To: Orion-Interest

Re: Unitialized Register

2001-06-11 Thread Johan Fredriksson
Hmmm, sounds like a VM bug... - Original Message - From: James Hill [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, June 07, 2001 9:34 PM I have a really odd problem with jikes/orion (1.5.2 orion, 1.14 jikes). I have a particular JSP page that will give the

Re: How do i cache a JSP on the proxy?

2001-06-11 Thread Johan Fredriksson
Title: RE: How do i cache a JSP on the proxy? what about % if ( (System.currentTimeMillis()/1000) % 15 ) counter = 0 ; % That is, you first make sure that the time is rounded down to closest second and see if that is divisable by 15, and then resetting counter Or did I

Re: java.lang.OutOfMemoryError;

2001-06-11 Thread Johan Fredriksson
instead of typing java -jar orion.jar at the command line to start orion, you could experiment with java -Xms128m -Xmx256m -jar orion.jar This increases the heap size. The 128 is the initial size, the 256 is the maximum size. The first number could be something like current free memory, and

Re: Orion on Solaris 8

2001-06-11 Thread Johan Fredriksson
inline - Original Message - From: Joerg Weishaupt [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, June 11, 2001 10:54 AM Subject: Orion on Solaris 8 Hi, I'm having two problems with Orion (1.4.5) on Solaris 8 with JDK 1.3.1 a) I'm unable to set the process into

Re: Oracle deal gag

2001-06-11 Thread Johan Fredriksson
What is your point? Johan - Original Message - From: Jay Armstrong [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, June 11, 2001 3:51 PM Subject: RE: Oracle deal gag We've all tried presenting the facts to you regarding the Oracle deal, but all we seem to be

Re: 1.5.1 vs 1.4.7 RequestDispatcher

2001-05-31 Thread Johan Fredriksson
response.sendRedirect() is sent to the browser after loading is complete, forward continues execution on the new page directly. I suppose this is expected behaviour. Why would a code stop executing just because of a method call? response.sendRedirect(...) whould be something like

Re: My Orion does not want to run the jsp and the servlets

2001-05-30 Thread Johan Fredriksson
Title: SV: ATM example -> deployment error -> PLEASE some HELP Did you copy tools.jar to your orion directory? Johan - Original Message - From: Hasan To: Orion-Interest Sent: Wednesday, May 30, 2001 10:55 AM Subject: My Orion does not want to run the jsp and

Internal server error

2001-05-30 Thread Johan Fredriksson
I get this message every now and then... 500 Internal Server Errorjava.lang.NullPointerException at com.evermind[Orion/1.5.1 (build 10410)].server.http.JSPBeanInfo._djb(Unknown Source) at com.evermind[Orion/1.5.1 (build 10410)].server.http.JSPPage._bec(Unknown Source) at

Re: Orion 1.5.0? Where do you download it from?

2001-05-23 Thread Johan Fredriksson
Sounds like your proxy provides an automatic configuration file. Try to open that file and read what it says. The file should be plain text. Or you can always ask your network administrator for the details. Johan - Original Message - From: Ganasen Gounden [EMAIL PROTECTED] To:

Re: Orion 1.5.0? Where do you download it from?

2001-05-22 Thread Johan Fredriksson
java -jar autoupdate.jar search the list for updating to the latest version, there have been some issues about upgradeing from previous versions to this version. look at www.orionserver.com for mail archive, there is an online search tool which is pretty good. Johan - Original Message

Re: java.util.ConcurrentModificationException

2001-05-21 Thread Johan Fredriksson
I suppose you use session.invalidate(); and then try to remove any values from the session? Well, you can't. The session is marked for deletion and therefore you get the ConcurrentModificationException. session.invalidate() should be enough... Johan - Original Message - From: Arun

Re: Orion and Security

2001-05-18 Thread Johan Fredriksson
Singleton pattern in orion.lib should do this for you. Johan - Original Message - From: Doug Pham [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, May 17, 2001 9:26 PM Subject: Orion and Security Hi All, Customer security is the question here. Has anyone

Re: Setting Up News Application on Orion

2001-05-18 Thread Johan Fredriksson
My guess this could be fixed in oracle.xml under orion/config/database-schemas/ Johan - Original Message - From: Max To: Orion-Interest Sent: Friday, May 18, 2001 8:15 AM Subject: Re: Setting Up News Application on Orion Hi, Brandy Try the next:

Re: Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Johan Fredriksson
I have successfully added this rule to my outlook... Apply this rule after the message arrives Where the From line contains '[EMAIL PROTECTED]' Delete it So I'm not unsubscribing. - Original Message - From: Randahl Fink Isaksen [EMAIL PROTECTED] To: Orion-Interest [EMAIL

Re: JMS or just function ??

2001-05-14 Thread Johan Fredriksson
It is also the only correct way to write asynch functions in a j2ee applications since threads are not allowed. Right? Johan - Original Message - From: John Hogan [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, May 11, 2001 7:19 PM Subject: Re: JMS or just function

Re: DeadLock with 25 users

2001-05-14 Thread Johan Fredriksson
Or decreasing the inactivity-timeout=10 so the resource is more quickly released back to the container ? Johan - Original Message - From: KirkYarina [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Cc: PHiL [EMAIL PROTECTED] Sent: Friday, May 11, 2001 9:10 PM Subject: Re:

Re: How to tell when a user first log's in?

2001-05-14 Thread Johan Fredriksson
with javascript... ( on the first page the user receives after login... ) try something like if (parent.frame[framename].location=notyetloggedin.html) parent.frame[framename].location=nowtheuserisloggedin.jsp); Johan - Original Message - From: Jeremy C [EMAIL PROTECTED] To:

Re: OFFTOPIC: Homepage ===beware of virus......

2001-05-14 Thread Johan Fredriksson
Wonder if you could disable the email function and just get a random pornsite function... - Original Message - From: PHiL [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, May 14, 2001 9:48 AM Subject: OFFTOPIC: Homepage ===beware of virus.. Hi, This virus do

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

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

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

problems with iterating tag

2001-05-09 Thread Johan Fredriksson
I wrote a small tag that represents an faq mt:getFAQ mt:getQuestion/ mt:getAnswer/ /mt:getFAQ the GetFAQTag is of type BodySupportTag. the execution goes like this getFAQTag::init() pointer = 0; getFAQTag::doStartTag() pointer++ ( to load the first QA object in pageScope, only

Re: Updateing to 1.4.8

2001-05-08 Thread Johan Fredriksson
Ok, I'll correct you The document is found at http://www.orionsupport.com/articles/update.html and you're supposed to type java -jar autoupdate.jar Johan - Original Message - From: Kemp Randy-W18971 [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, May 07, 2001

Re: Using admin.jar

2001-05-07 Thread Johan Fredriksson
java -jar orion.jar -install lets you set the username and password, which can be found in principals.xml. Johan - Original Message - From: Adrian Yau [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Saturday, May 05, 2001 12:58 AM Subject: Using admin.jar I'm brand new

jsp:useBean with a runtime attribute

2001-05-07 Thread Johan Fredriksson
I'm tired of writing admin interfaces and thought I'd be able to do something like this to speed up development %Field[] fields = Image.class.getDeclaredFields(); for (int i = 0; i fields.length ; i++){%input type="text" name="%=fields[i].getName()%" value="jsp:getProperty

Re: Running 2 Orions on the Same Machine

2001-05-07 Thread Johan Fredriksson
make sure the rmi part of orion uses different ports in the two instances... See http://www.orionserver.com/docs/rmi.xml.html - Original Message - From: B. Dawkins [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, May 07, 2001 8:30 AM Subject: Running 2 Orions on

Re: www.orionsupport.com / JMS

2001-05-04 Thread Johan Fredriksson
I know how the dns works, but we are experiencing problems with our dns, just wanted to make sure that I didn't hold an old record to orionsupport.com. Thank you Fredrik! That is what I will be doing soon. Johan - Original Message - From: KirkYarina [EMAIL PROTECTED] To:

Re: broken default web app - not found

2001-05-04 Thread Johan Fredriksson
point me in the right direction. j Johan Fredriksson [EMAIL PROTECTED] wrote: That is because your application.xml is not found. Should be C:\orion\applications\pussycat\META-INF\application.xml - Original Message - From: joey sark [EMAIL PROTECTED] To: Orion-Interest [EMAIL

Re: Newbie Question.

2001-05-04 Thread Johan Fredriksson
Which is located in orion/application-deployments/appname/appname-web/orion-web.xml Johan - Original Message - From: Earl Marwil To: Orion-Interest Sent: Thursday, May 03, 2001 6:27 PM Subject: Re: Newbie Question. One possible cause is that directory browsing

Re: Howto on MessageDriven Beans

2001-05-04 Thread Johan Fredriksson
I was sent this url for messageDrivenBeans http://www.sys-con.com/java/archives/0601/westra/index.html - Original Message - From: Frank Eggink [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, May 04, 2001 8:11 AM Subject: RE: Howto on MessageDriven Beans There is

Re: broken default web app - not found

2001-05-03 Thread Johan Fredriksson
That is because your application.xml is not found. Should be C:\orion\applications\pussycat\META-INF\application.xml - Original Message - From: joey sark [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 7:21 AM Subject: Re: broken default web app -

Re: Interests sake

2001-05-03 Thread Johan Fredriksson
Development on win2k and production on Solaris. Johan - Original Message - From: Adam Cassar [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 7:53 AM Subject: Interests sake Hi all, For interests sake, what OS is everyone on the list running

www.orionsupport.com / JMS

2001-05-03 Thread Johan Fredriksson
Is it down or is my dns screwed up? Non-authoritative answer:Name: orionsupport.comAddress: 64.31.131.243 I'm looking for a jms-tutorial ( for orion ), NE1 know where to find one? Johan

Re: install issues

2001-05-02 Thread Johan Fredriksson
We use : UnZip 5.32 of 3 November 1997, by Info-ZIP. Maintained by Greg Roelofs. Send bug reports to the authors at [EMAIL PROTECTED]; see README for details. which works fine. - Original Message - From: elephantwalker [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent:

Re: jsp:setProperty tag

2001-04-27 Thread Johan Fredriksson
I should go with int instead of Integer. Or even better with a String representing a number on the jsp page and in the setter method do a Integer.parseInt(number); //to get what I need. This way I do not have to trust javascripts and stuff to do the checking, if a numberformatexception

Re: Orion support company

2001-04-27 Thread Johan Fredriksson
Well, you started it!! http://www.geocities.com/connorbd/varaq/ Enjoy! Johan - Original Message - From: Thomas Pridham [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 3:12 PM Subject: RE: Orion support company What truly happened is that the

Re: orion not replicating session state - relatively urgent

2001-04-27 Thread Johan Fredriksson
And all the stuff you shove up the session are Serializable? Doublecheck that. If they are Serializable, your problem sounds like a bug. Johan - Original Message - From: Mike N. Christoff [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 10:25 PM

Re: freetds.org

2001-04-27 Thread Johan Fredriksson
had to stop using it. Currently, I use two drivers and they both work flawlessly for my apps: one from http://www.inetsoftware.de and the other from http://www.j-netdirect.com. Though they cost money. Regards, Paul From: Johan Fredriksson [EMAIL PROTECTED] Reply-To: Orion-Interest

Re: freetds.org

2001-04-27 Thread Johan Fredriksson
be fine. Hani On Thu, 26 Apr 2001, Johan Fredriksson wrote: Has anyone got their driver to work with ms sql server 7? I just get an error message all the time : java.sql.SQLException: The database driver (com.internetcds.jdbc.tds.Driver@ff3a fe9f) returned refusing to connect to the URL

Re: Orion performance meassures ?

2001-04-27 Thread Johan Fredriksson
on Memory usage, Average hits, load, etc. thanx, Larry (Running Orion on NT) -Original Message- From: Johan Fredriksson [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 4:59 AM To: Orion-Interest Subject: Re: Orion performance meassures ? Yes there are some

In 1.4.8

2001-04-27 Thread Johan Fredriksson
I get this errormessage when starting orion : 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 this error in detail to

Re: Orion performance meassures ?

2001-04-26 Thread Johan Fredriksson
Yes there are some statistics... java -jar orionconsole.jar - Original Message - From: Tony Fonager [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001 11:19 PM Subject: Orion performance meassures ? We are experimenting with Orion as an alternative

Re: Orion on AIX

2001-04-26 Thread Johan Fredriksson
You might experience problems with the driver for the db2 database, otherwise it should be fine. The orionteam knows how to solve that problem though,. Johan - Original Message - From: denis despinoy [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001

Re: Taglibs - a newbie question

2001-04-26 Thread Johan Fredriksson
I solved it... - Original Message - From: Johan Fredriksson To: Orion-Interest Sent: Thursday, April 26, 2001 11:22 AM Subject: Taglibs - a newbie question I'm new to taglibs, and so far it really seems like a great idea. But I cannot get the collaborating

Re: remote shutdown of orion 1.4.8

2001-04-26 Thread Johan Fredriksson
I upgraded from 1.4.7 to 1.4.8 and for me it works... D:\orionjava -jar admin.jar ormi://localhost/ admin pwd -shutdown Error: com.evermind.server.rmi.OrionRemoteException: Disconnected: Server shutdo wn D:\orionjava -jar orion.jar -version Orion/1.4.8 (build 10374) ( at the same time...

freetds.org

2001-04-26 Thread Johan Fredriksson
Has anyone got their driver to work with ms sql server 7? I just get an error message all the time : java.sql.SQLException: The database driver (com.internetcds.jdbc.tds.Driver@ff3afe9f) returned refusing to connect to the URL jdbc:freetds:sqlserver://192.168.1.123/ at

Re: .zip files and solaris

2001-04-23 Thread Johan Fredriksson
Yes there is, but I'm not sure of the name of it... I used to zip the app in the prev project I was working on, and gunzipped it on the production server running solaris. Regrettably I cannot remember the version of gunzip, but I'll try to find out during the day. Johan - Original

Re: .zip files and solaris

2001-04-23 Thread Johan Fredriksson
On the other hand it works the other way around... Use jar to compress and ftp that, jar to uncompress... It's really not the filesize that is a problem, but the amount of files. - Original Message - From: Angshuman Dasgupta [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent:

Re: JSP server configuration

2001-04-23 Thread Johan Fredriksson
Thats a matter of your isp to map the jsp/servlet to another directory not accessible from http://websiteurl/. There are probably two apps running on the same server, whereas your .jsp files should be run under http://websiteurl:8080/ and your other content under the standard server. Use a

JSP tags

2001-04-20 Thread Johan Fredriksson
I'm trying to do a login check from within a tag. Checking the session for a userid and then checking the required permits to that page. If it is a match my doEndTag returns EVAL_PAGE, if required permission is missing, SKIP_PAGE is returned. This works, ie the user gets a blank page when

Re: A Swedish Idea

2001-04-19 Thread Johan Fredriksson
And Micro$oft programmers are from...? I suppose that the country they're from produce the shittiest code of em all :) Johan - Original Message - From: "Joseph B. Ottinger" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 4:20 PM Subject: Re: A

Re: Orion as a service on Windows NT 4

2001-04-19 Thread Johan Fredriksson
I suppose I can copy paste the message... It's about using jnt on win2k, but I guess the same thing would apply to nt4... Hope it helps Johan! Thanks..This worked. Rajeev -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 4:08 PM

Re: Application mapping - how do I know it from within the app?

2001-04-18 Thread Johan Fredriksson
was hastily written but should have pointed you in the right direction... On Tue, 17 Apr 2001, Johan Fredriksson wrote: Nope, when doing just that I get... 500 Internal Server Error Error parsing JSP page /aller/Allas/subscriber.jsp Syntax error in source/Allas/subscriber

Re: The translated Swedish interview

2001-04-18 Thread Johan Fredriksson
haha, thats really funny reading... =) Direct translations are always funny... They say swedish is one of the most difficult languages one can learn. I do not agree... =) for those who don't get all the words I'll try to translate them for you. - Original Message - From: "Kemp Randy"

Re: Application mapping - how do I know it from within the app?

2001-04-17 Thread Johan Fredriksson
5:30 PM Subject: Re: Application mapping - how do I know it from within the app? pageContext.getServletContext().getContextPath() On Wed, 11 Apr 2001, Johan Fredriksson wrote: I'm using virtual hosts in my development to make sure that all links are correctly set, that is I can access the

Re: Re: ORION RISE FROM THE DEAD!

2001-04-17 Thread Johan Fredriksson
As I mentioned before in a previous posting, the Orion team will continue their work on the Orion product, partners will do the support. Support will in the future be the "milking cow" ( don't know if that one translates well into english, where you get the money...), and there you have the

Re: Is this the Orion Team?

2001-04-17 Thread Johan Fredriksson
Yes - Original Message - From: "Kemp Randy" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 2:32 AM Subject: Is this the Orion Team? Some digging though the.serverside.com, at the link

war and ear

2001-04-11 Thread Johan Fredriksson
I got the script working to build an ear file. Now I'd like to use the D:\orionjava -jar admin.jar ormi://192.168.1.123/ admin utv -deploy -file d:\orion\deployment\aller.ear -deploymentName aller deploy.txt command line to deploy the updated application but I get D:\orionmore

Application mapping - how do I know it from within the app?

2001-04-11 Thread Johan Fredriksson
I'm using virtual hosts in my development to make sure that all links are correctly set, that is I can access the same app in two ways, either via appname.localhost or localhost/appname . The problem is that I'm not sure how to figure out on a jsp page which entry point was used, and

Re: request.getParameter() not working under solaris?

2001-04-11 Thread Johan Fredriksson
The problem is that the instance running orion has to have correct tables installed. I had the same problem when loading data from the database ( swedish language ). They got messed up on the way. So the resolution in my case was to make sure that the shell running orion supported swedish chars.

Re: Management Console...

2001-04-11 Thread Johan Fredriksson
- Original Message - From: "Chaya Ramanujam" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 4:58 PM Subject: Management Console... Hi, I am new to Orion. I am using the Management Console to deploy an EJB archive and a WAR file. Quick

Re: Application mapping - how do I know it from within the app?

2001-04-11 Thread Johan Fredriksson
().indexOf(request.getServletPath())); Which will return the mapping to the root of your application. Johan - Original Message - From: Johan Fredriksson To: Orion-Interest Sent: Wednesday, April 11, 2001 4:59 PM Subject: Application mapping - how do I know it from

Re: WE NEED NEWS! We need to know Orion is alive well!

2001-04-10 Thread Johan Fredriksson
Since I had a problem with the mailserver at our new location this mail got sent a little late, yesterday refers to April 5. Johan - Original Message - From: "Johan Fredriksson" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Monday, April 09, 2001 5:1

Re: Virtual Hosts - root directory setting.

2001-04-10 Thread Johan Fredriksson
hmmm, sounds like you missed something in your application xml snip moduleweb web-urimy-web.war/web-uricontext-root//context-root /web /module snip see context-root, I copy pasted from somewhere on orionserver.com documentation this morning... Hope this helps. Johan -

Re: WE NEED NEWS! We need to know Orion is alive well!

2001-04-09 Thread Johan Fredriksson
I met Karl Avedal yesterday at a Java forum in Stockholm. They're 3 employees as of today, and probably two more joining up shortly. He spoke of an organic expansion of Ironflare AB. The main effort is to build partner ships with other companies regarding support of the product, and to start

Re: Friendly error messages from Microsoft get in the way (was Er ror pages defined in web.xml not found / activated)

2001-04-03 Thread Johan Fredriksson
Are you sure? I set my browser to show friendly http error messages and went to a page which does not exist. And I get the errorpage as defined in my web.xml Visit this page to test : http://www.batborsen.com/bb/se/this_page_does_not_exist.html the errorpage tag in web.xml looks like this

Shared session

2001-04-03 Thread Johan Fredriksson
I create a "parent" application which handles the sessions and how do I configure it? And for sharing code, I'd like to have a single point of distribution, is there a way to tell in the web.xml where the classes dir is? Thanks in advance Johan Fredriksson

Re: Internal Server Error

2001-04-03 Thread Johan Fredriksson
I use this command line for starting orion on a windows machine java -jar -Djdbc.connection.debug=true orion.jar 1 \orionlog\systemout.txt 2 \orionlog\systemerr.txt Johan - Original Message - From: "Toth [@HOTMAIL], Adam (E-mail)" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED]

Re: Please help me figure out this....

2001-04-02 Thread Johan Fredriksson
Yes, you should not use return (name=="abc" passwd=="123 "); but return (name.equals("abc") passwd.equals("123")); This will probably fix your problem. Johan - Original Message - From: "Roland Dong" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Sunday, April 01,

Re: Localhost and IP Yield Different Pages

2001-04-02 Thread Johan Fredriksson
For development I should say it is not a good idea to reset your browsers cache since all your users wont. Better to set it to automatic and make sure to use all sorts of meta tags and use the response tag to clear cache. response.setHeader("Cache-Control","no-store"); //HTTP

Re: Errorpage

2001-03-29 Thread Johan Fredriksson
than 512b, it is currently (1 626 bytes). Please help me! Johan Fredriksson

  1   2   >