Chained servlets and chained filters

2002-03-13 Thread Aaron Tavistock
I've got an interesting issue where I've got three chained filters running which all work great. One of these filters is a compression filter that modifies the Stream by compressing the final output. Unforutately I discovered that when the server sends a HTTP 500 response code, the result on

recursive calling from servlets

2001-10-02 Thread EXT-Vaze, Vinay G
I have a servletA calling ServletB via an URL. If I click, I find that the doGet() method from ServletA gets called recursively. Is there a fix to this problem. -- Vinay Vaze M/S : 7H-80 Phone : (425)-865-2929 Email : [EMAIL PROTECTED]

DataSources..how to get servlets to work with them?

2001-07-26 Thread Duffey, Kevin
Ok..I read the OrionSupport and did as it says. It appears that this works: InitialContext ctx = new InitialContext(); DataSource ds = (DataSource) ctx.lookup(jdbc/MyDS); The problem is, when I try to get a connection from the datasource, its telling me I am using an invalid user and password.

RE: DataSources..how to get servlets to work with them?

2001-07-26 Thread Kesav Kumar
Title: RE: DataSources..how to get servlets to work with them? Its all depends how do you configure your data-source.xml file. Use the following example ?xml version=1.0? !DOCTYPE data-sources PUBLIC Orion data-sources http://www.orionserver.com/dtds/data-sources.dtd data-sources data

Re: Servlets

2001-07-25 Thread Johan Fredriksson
-classmy.very.long.packagename.UserLoginServlet/servlet-classload-on-startup2/load-on-startup/servlet and of course change all values. The nice thing about web.xml is that it lets you alias your servlets. In the above example the url would be http://localhost/servlet/UserLogin (servlet-name) Johan

Servlets

2001-07-24 Thread Jens Frank
Hello, I am newbie on this. I have a schoolaccount on a computer running Orion-server. I want to try out a clean java servlet, no JSP or anything else.. On my account there is a folder called WEB-INF and that folder contains 2 folders. classes and lib. In WEB-INF there also is a file called

Re: Automatic recompilation of beans/servlets

2001-06-18 Thread Todd Lipcon
At 01:02 PM 6/17/01 -0400, you wrote: Hi, I recently made the switch from Resin to Orion Server and am mostly pleased. The only thing I cannot get working is the automatic recompilation of beans and servlets. I have development=true set in my global-web-app.xml file, and JSPs

Automatic recompilation of beans/servlets

2001-06-17 Thread Todd Lipcon
Hi, I recently made the switch from Resin to Orion Server and am mostly pleased. The only thing I cannot get working is the automatic recompilation of beans and servlets. I have development=true set in my global-web-app.xml file, and JSPs are recompiling when changed correctly. Servlets

Re: Automatic recompilation of beans/servlets

2001-06-17 Thread Nick Newman
is the automatic recompilation of beans and servlets. I have development=true set in my global-web-app.xml file, and JSPs are recompiling when changed correctly. Servlets and JavaBeans (not EJBs) are not. I have my source files in the same directory as the class files. (WEB-INF/classes/com/goldbarter

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

2001-05-31 Thread Hasan
Title: SV: ATM example -> deployment error -> PLEASE some HELP thanks. but how to run the servlet? where should i put the servlets? and the ejbs, beans? where can i find complete guidance about theattributes used in the xml files? i tried to enable browsing the directory of a part

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

2001-05-30 Thread Hasan
Title: SV: ATM example -> deployment error -> PLEASE some HELP Hi, I have created a web application using JBuilder. I have followed the specification Orion made. I have tried to run the html files and they work fine. However, when I tried to run the jsps and servlets, Orion did no

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

2001-05-30 Thread Johan Fredriksson
he jsp and the servlets Hi, I have created a web application using JBuilder. I have followed the specification Orion made. I have tried to run the html files and they work fine. However, when I tried to run the jsps and servlets, Orion did not want to run them. What

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

2001-05-30 Thread Jeff Hubbach
Hasan, Make sure that you copy tools.jar from your java-dir/lib directory into the orion directory. This enables JSP compilation. If your servlets aren't working, though, it sounds like a possible configuration issue. Jeff Hubbach. Hasan wrote: Hi,I have created a web application using

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

2001-05-30 Thread Kevin Duffey
Title: SV: ATM example -> deployment error -> PLEASE some HELP Make sure you copy tools.jar to the /orion root folder. Its used to compile jsp pages into servlets. It can be found usually in your /jdk/bin (or maybe its jdk/jre/bin) folder. -Original Message-From:

Servlets

2001-05-23 Thread Fabio Lin
How i register servlets to my application?

Servlets by name

2001-05-15 Thread Henrik Skafsgaard Larsen
Hi Is it possible to configure Orion to serve the servlets by name and not all servlets in the servlet directory? So even if someone puts another servlet in Orion cannot/will not run the servlet, but only those I have specified. med venlig hilsen / kind regards Henrik Skafsgaard Larsen

Problem run demo servlets

2001-03-22 Thread Grigory V. Manushkin
i'm new to orion. snoop servlet work ok. try to test demo servlets. add to web.xml servlet servlet-nameURLInfo/servlet-name servlet-classURLInfo/servlet-class /servlet then try "localhost/servlet/urlinfo" and get 500 Internal Se

how to deploy an app with only jsp, servlets and beans (not ejb)

2000-12-16 Thread Steven and Susan Hirsch
Hi, Can anyone point me to some literature explaining how to deploy an app that does not contain ejbs? For example, I'mm looking for a way to deploy a .war file without having to construct a .ear file. Any help would be appreciated!! Thanks!

RE: how to deploy an app with only jsp, servlets and beans (not ejb)

2000-12-16 Thread Jarek Skreta
. Hope this helps. Jarek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steven and Susan Hirsch Sent: 16 December 2000 15:28 To: Orion-Interest Subject: how to deploy an app with only jsp, servlets and beans (not ejb) Hi, Can anyone point me

Deploying a servlets only (no EJB) application

2000-12-13 Thread Malcolm Ferguson
I am trying to deploy a servlet application that I was previously running under Resin on my test installation of Orion. I'm someone can point me to a step-by-step description of how to deploy it (i.e. what changes to make to which configuration files). The war file is unpacked and the app

Common servlets in multiple WAR modules

2000-11-19 Thread Gerald Gutierrez
I have multiple WAR modules that both use a common servlet. I noticed that the ATM example duplicates its taglib JAR files in the atm-wap and atm-web modules. Should I be duplicating the Java class files for the servlet in the different WAR modules as well?

New howto on OrionSupport: Using JDBC from Servlets

2000-10-24 Thread Joe Walnes
How to setup a JDBC data-source in Orion and access it using JNDI from Servlets/JSP. http://www.orionsupport.com/articles/jdbc.html -Joe Walnes

Re: New howto on OrionSupport: Using JDBC from Servlets

2000-10-24 Thread Christian Meunier
I would like to comment the article on one point, its really important to use Try{}Finally{} blocks to ensure that the connection will return to the pool. In the example, if the sql throws an exception, the connection ll never return to the pool. However in this code, the connection ll return to

Re: Modified Servlets

2000-10-20 Thread Cory Adams
Look in the global-web-application.xml for: orion-web-app jsp-cache-directory="./persistence" servlet-webdir="/servlet" development="true" If you set development=true Orion will not only pickup the change in the java source file but it will even recompile if for you.

Re: Modified Servlets

2000-10-20 Thread APapada
Thank you very much

RE: Modified Servlets

2000-10-20 Thread Duffey, Kevin
Go to /orion-install-dir/application-deployments/app-name/web-app-name/orion-web .xml This file looks something like so: ?xml version="1.0"? !DOCTYPE orion-web-app PUBLIC "-//Evermind//DTD Orion Web Application 2.3//EN" "http://www.orionserver.com/dtds/orion-web.dtd" orion-web-app

JSP-Compiled Servlets ??

2000-10-18 Thread Santosh Kumar
hi all, Weknow that JSP are compiled into servlets. In Jrun, I canview the equivalent servlet source code for the JSP. ButOrion doesnt seem to provide the source as well as class file. All it creates is a binary jsp.Cache file. But my job is to get into the code and see how the servlet

RE: JSP-Compiled Servlets ??

2000-10-18 Thread J.T. Wenting
October 18, 2000 10:49To: Orion-InterestSubject: JSP-Compiled Servlets ?? hi all, Weknow that JSP are compiled into servlets. In Jrun, I canview the equivalent servlet source code for the JSP. ButOrion doesnt seem to provide the source as well as class file. All it creates i

RE: JSP-Compiled Servlets ??

2000-10-18 Thread Russ White
ot;./temp" servlet-webdir="/servlet/" development = "true" source-directory="/source" HTH -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of J.T. WentingSent: Wednesday, October 18, 2000 6:43 AMTo: O

Re: JSP-Compiled Servlets ??

2000-10-18 Thread Miles Daffin
Servlets ?? hi all, Weknow that JSP are compiled into servlets. In Jrun, I canview the equivalent servlet source code for the JSP. ButOrion doesnt seem to provide the source as well as class file. All it creates is a binary jsp.Cache file. But my job is to get into the code

Re: Orion 1.3.8 and Servlets

2000-10-17 Thread Miles Daffin
Title: RE: Orion 1.3.8 and Servlets Are core classes reloaded too? I have found that if I change recompile utility classes used by a Servlet or JSP these are not updatedif they are already loaded. Servlets and JSPs are (development ="true"). What do you mean by a '

Orion 1.3.8 and Servlets

2000-10-16 Thread arjan
Guys, I have this small problem with my servlets.. whenever I make changes to them and recompile them, I have to restart my orion for the changes to take effect.. I know there is a development mode which auto compiles the files but I suppose that only applies to JSP's ? so what I would like

RE: Orion 1.3.8 and Servlets

2000-10-16 Thread Hani Suleiman
Title: RE: Orion 1.3.8 and Servlets If you 'touch' any of the configuration files for your application (eg, web.xml), then Orion will reload that app. I use an ant build script which after installing the app, uses the touch task to force Orion to reload. -Original Message- From

Re: Orion 1.3.8 and Servlets

2000-10-16 Thread Flemming Seerup
Actually I think it's the default behaviour of Orion to reload servlets. (edit ORION-WEB.XML - development="true") Most servlet-servers offers this (even weblogic I think). The only trick is, that the servlet-classes must NOT be in the general class-path! If the classes is in the

RE: Orion 1.3.8 and Servlets

2000-10-16 Thread Duffey, Kevin
Title: RE: Orion 1.3.8 and Servlets Actually, in orion-web.xml (located in /orion/application-deployments/app_name/web_app_name/orion-web.xml) there is a setting for development..which you said. But also there is another option, called source-directory="/path/dir" and when develop

Re: EJB vs Servlets

2000-10-11 Thread Kyle Cordes
Title: RE: EJB vs Servlets This strikes me as a straw-man argument. There is no reason that servlet code must use JDBC directly. There are many object-wrapper products available that work similarly to CMP beans; such products predate EJB by a long, long time. -Kyle Cordes

RE: EJB vs Servlets

2000-10-11 Thread Martijn van Berkum
Hello, This is a very interesting discussion. Here at GX we built our own application server on top of servlets, no JSP, no EJB's. This application server is focused on content management systems. While we are stil happy using it for almost all our clients, I still intent to go to building sites

Re: EJB vs Servlets

2000-10-11 Thread Christian Sell
PROTECTED] Date: Dienstag, 10. Oktober 2000 17:59 Subject: RE: EJB vs Servlets hello all, since it came up, this is an issue that i and our other programmer have been wrestling with for a while, because like everyone else we feel the pressure to use the cool new stuff..and we wonder if the transactional

RE: EJB vs Servlets

2000-10-11 Thread Martijn van Berkum
Hello, This is a very interesting discussion. Here at GX we built our own application server on top of servlets, no JSP, no EJB's. This application server is focused on content management systems. While we are stil happy using it for almost all our clients, I still intent to go to building sites

Re: EJB vs Servlets

2000-10-11 Thread Kyle Cordes
Title: RE: EJB vs Servlets This strikes me as a straw-man argument. There is no reason that servlet code must use JDBC directly. There are many object-wrapper products available that work similarly to CMP beans; such products predate EJB by a long, long time. -Kyle Cordes

RE: EJB vs Servlets

2000-10-11 Thread Joshua Goodall
, 2000 8:51 PM To: Orion-Interest Subject: Re: EJB vs Servlets This strikes me as a straw-man argument. There is no reason that servlet code must use JDBC directly. There are many object-wrapper products available that work similarly to CMP beans; such products predate EJB by a long, long time

RE: EJB vs Servlets

2000-10-11 Thread Magnus Rydin
Title: RE: EJB vs Servlets I would say that the keyword here, and in nearly everything else is *standard*. There are *loads* of books, tutorials, documentation, news-groups, people that uses EJB and likes it. When you are using other, less widely spread, object-wrapper products, you can

RE: EJB vs Servlets

2000-10-11 Thread Duffey, Kevin
Hi, As far as the question that kicked of this discussion. If you do not need the any of the benefits of EJB then don't use it. However, I would recommend that you separate your data and business layers from your servlets and JSPs. Have them be presentation only. That way you could

Re: EJB vs Servlets

2000-10-11 Thread Kyle Cordes
Title: RE: EJB vs Servlets I agree that the standardness is a good argument in favor of CMP beans (as oppossed to another OR mapping tools); I was just making the point that there are plenty of mapping tools and they work fine with servlets, they worked fine before servlets... I think

RE: EJB vs Servlets

2000-10-10 Thread Frank Eggink
Here is what we are at ... By the mere fact we are using Swing we can't use Servlets. I'm working on an application that we will run as a webservice. That is, you will be able to enter/retrieve data in a Swing applet. We choose for the Swing route, because using HTML/ASP/JSP doesn't give you

RE: EJB vs Servlets

2000-10-10 Thread Frank Eggink
Here is what we are at ... By the mere fact we are using Swing we can't use Servlets. I'm working on an application that we will run as a webservice. That is, you will be able to enter/retrieve data in a Swing applet. We choose for the Swing route, because using HTML/ASP/JSP doesn't give you

RE: EJB vs Servlets

2000-10-10 Thread Peter Delahunty
partioning at the component level. If you model all your Data and business logic at the EJB level then you create yourself a reuseable component layer. This way you can connect to this EJB layer from any clients, (Java) Servlets, (Java) jsp , (java) desktop client , (java) mobile client, (VB

RE: EJB vs Servlets

2000-10-10 Thread Robert Krueger
level. EJB gives you distinct partioning at the component level. If you model all your Data and business logic at the EJB level then you create yourself a reuseable component layer. This way you can connect to this EJB layer from any clients, (Java) Servlets, (Java) jsp , (java) desktop client

Re: EJB vs Servlets

2000-10-10 Thread Sven van 't Veer
(Of course w/o the benefit of transactions in MySql. 3) Caching of database objects: Pretty easy to implement 4) Failover/load-balancing: As Kevin mentioned, works very nicely for servlets. Sure all this can be easilly implemented, but why should you? The guys at Orion, Inprice, IBM etc already did

RE: EJB vs Servlets

2000-10-10 Thread BSmith
for vendors of these tools to write plugins for expanding the functionality of EJB. (Although there is a Weblogic specific version of Toplink that allows for very sophisticated OR mappings) Also, EJBs and servlets are not mutually exclusive. While you don't always need both, as Russ White pointed out

RE: EJB vs Servlets

2000-10-10 Thread bradley mclain
how smart (and remember, the smarter something is, the slower). as to transactional support, we use jts or the db transaction services. no problems.. as to servlets, we use exactly one per application, mereley to take the requests and to control everything--everything else is plain old java

Re: EJB vs Servlets

2000-10-10 Thread Rafael Alvarez
Hello Reddy, I agree with you in some points. Yes, complex OR mapping is solved in 2.0, but as you said is a draft. I won't risk put it into production right now (we have to finish the project by Octuber 17). About SQL, again I agree with you. I was using BMP EJB until I found out that Orion

EJB vs Servlets

2000-10-09 Thread Duffey, Kevin
tedious to develop, as well as the end result was slower than just using Servlets. I ask this because it appears to me that the servlet engine (at least with 2.2) being able to be failed over, load-balanced, etc, seems to be quite as capable for scalability and fault-tolerance as the ejb engine used

RE: EJB vs Servlets

2000-10-09 Thread Hani Suleiman
Title: RE: EJB vs Servlets I've considered using EJB's a number of times for various projects I'm involved in, but every time, I have to admit to myself that it's more for the fun and coolness factor, than any real 'need' to use EJB's. In every case, I was able to implement a solution using

RE: EJB vs Servlets

2000-10-09 Thread Russ White
tool for creating very useful EntityBeans from a GUI. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Duffey, Kevin Sent: Monday, October 09, 2000 1:22 PM To: Orion-Interest Subject: EJB vs Servlets Hey all, I know this is a little off-topic

Re: EJB vs Servlets

2000-10-09 Thread Troy Echols
Might there be some benefit to using EJBs over servlets alone if you want to support various modes of connectivity to your business logic (e.g., standalone clients using JMS/CORBA/RMI in addition to web clients). Just my two cents worth. Troy Hani Suleiman wrote: I've considered using

RE: EJB vs Servlets

2000-10-09 Thread Duffey, Kevin
EJB than those that have logic in their servlets. -Original Message- From: Russ White [mailto:[EMAIL PROTECTED]] Sent: Monday, October 09, 2000 11:32 AM To: Orion-Interest Subject: RE: EJB vs Servlets You should read up on J2EE so you can understand what separation of data/logic/pres

Re[2]: EJB vs Servlets

2000-10-09 Thread Rafael Alvarez
Fakade Pattern, I don't have the URL rigth now). The second issue is being solved by using a home made automated tool that generates the required classes. Anyway, EJB vs Servlets is a topic for a lng discusion. - Best Regards Rafael Alvarez mailto:[EMAIL

RE: EJB vs Servlets

2000-10-09 Thread Russ White
actually have some servers running some EJBs, and other servers other EJBs. HTH Russ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Duffey, Kevin Sent: Monday, October 09, 2000 3:01 PM To: Orion-Interest Subject: RE: EJB vs Servlets Actually, I know all

RE: EJB vs Servlets

2000-10-09 Thread Russ White
]]On Behalf Of Duffey, Kevin Sent: Monday, October 09, 2000 3:03 PM To: Orion-Interest Subject: RE: EJB vs Servlets You are talking about legacy support. I agree there. I haven't read the full spec of EJB, and I heard EJB 2.0 is even better. I would agree that overall its probably a better way to go

RE:[RE: EJB vs Servlets]

2000-10-09 Thread Alexandre POLOZOFF  
it. Especially in the maintenance phase where the original programmers are no longer around and no-one knows just where that insert/update/delete is happening... d) Learning EJB is not that big a deal. We put together a large website all EJB based (with servlets and JSPs to round out MVC) in less than 3

Re: EJB vs Servlets

2000-10-09 Thread Matt Brunner
I would say that using J2EE architecture and EJB is most useful if you don't have specific performance needs. When you don't have leeway on performance you have to bite the bullet and use whatever gives you the performance you need. Obviously EJB2.0 OR mapping is a huge key, this allows the

RE: [RE: EJB vs Servlets]

2000-10-09 Thread Duffey, Kevin
Hi, I think what we have is a case of fear, uncertainty and doubt. My experience with EJBs has been so good I'm going back to rewrite some of my personal-hobby-related sites into EJBs. That is how impressed I am with EJB. I think your exactly right. I bought an EJB book and started

Re: EJB vs Servlets

2000-10-09 Thread Miles Daffin
: "Russ White" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Monday, October 09, 2000 8:32 PM Subject: RE: EJB vs Servlets You should read up on J2EE so you can understand what separation of data/logic/presentation is all about. I would recommend any of

RE: EJB vs Servlets

2000-10-09 Thread Mike Cannon-Brookes
Title: RE: EJB vs Servlets I use EJBs in a high volume environment and have had no problems with scalability or speed yet. I have to say once you know EJBs well enough, dev't is definitely faster than with servlets. The sheer volume of JDBC code and debugging required in a servlet

RE: Re[2]: EJB vs Servlets

2000-10-09 Thread Reddy Krishnan
[mailto:[EMAIL PROTECTED]] Sent: Monday, October 09, 2000 1:11 PM To: Orion-Interest Subject: Re[2]: EJB vs Servlets I'm currently developing a big project using EJBs,a backend for a one-hour delivery company. In fact, I'm using CMP EJB for the data and a fakade object for processing.There were few

RE: EJB vs Servlets

2000-10-09 Thread Duffey, Kevin
in what it offers for a free package. Did I compare Struts to EJB? I didn't mean to in terms of performance. -Original Message- From: Mike Cannon-Brookes [mailto:[EMAIL PROTECTED]] Sent: Monday, October 09, 2000 4:12 PM To: Orion-Interest Subject: RE: EJB vs Servlets I have

RE: EJB vs Servlets

2000-10-09 Thread Duffey, Kevin
Couldn't agree more! -Original Message- From: Russ White [mailto:[EMAIL PROTECTED]] Sent: Monday, October 09, 2000 1:15 PM To: Orion-Interest Subject: RE: EJB vs Servlets Why do you have the idea the EJBs yield slower performance? This is false. Your site sounds to small

Re EJB vs Servlets

2000-10-09 Thread van Geel, Leo
-Original Message- From: Rafael Alvarez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 10, 2000 9:11 AM To: Orion-Interest Subject: Re[2]: EJB vs Servlets I'm currently developing a big project using EJBs,a backend for a one-hour delivery company. In fact, I'm using CMP

Re: Re EJB vs Servlets

2000-10-09 Thread Damian Guy
"van Geel, Leo" wrote: -Original Message- From: Rafael Alvarez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 10, 2000 9:11 AM To: Orion-Interest Subject: Re[2]: EJB vs Servlets I'm currently developing a big project using EJBs,a backend for a one-hou

SV: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-05 Thread Klaus . Myrseth
can compare with IIS. And in that case Orion is more stable :)After what i have experienced. Klaus -Opprinnelig melding- Fra: Stanislav Maximov [mailto:[EMAIL PROTECTED]] Sendt: 5. oktober 2000 14:19 Til: Orion-Interest Emne: RE: Using Orion As a Plugin to IIS for Servlets/JSPs

Re: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-05 Thread Kyle Cordes
Yes IIS is fast providing you use only static content, but when you use dynamic content, you get problems, and the reason IIS is fast for static content is because they hooked the server into the kernel of windows (smart). Same thing is coming to linux kernel pretty soon (the unstable

Re: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-04 Thread Kyle Cordes
Title: RE: Using Orion As a Plugin to IIS for Servlets/JSPs Not to disparage Orion (a great product!), but it's extremely unlikely that Orion will approach IIS's speed of serving HTML pages. IIS is highly optimized using native NT APIs to perform this task extremely quickly

Re: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-04 Thread Kyle Cordes
Ps: Orion is faster than IIS, so is most other webservers.. IIS is full of memory leaks and other stuff that make it bend when the load is really hard, and over time. Check the benchmarks on orion page, its done with microsofts own benchmark utility so :) In my experiance, for serving static

Re: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Dale Bronk
ng Orion As a Plugin to IIS for Servlets/JSPs Hello, I think it is not possible - Orion isn't a plug-in, it is a server. If you wish to use another web-server (rather than Orion), you'll also need to use another JSP/Servlet engine, like Resin or something, and use Orion as a app server on

Re: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Kyle Cordes
I have a question..why would you not be able to use Orion as the web server? It actually serves HTML pages as fast (if not faster) than IIS does. Its very easy to set up. Not to disparage Orion (a great product!), but it's extremely unlikely that Orion will approach IIS's speed of serving

RE: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Robert Krueger
At 16:32 03.10.00 , you wrote: Not to disparage Orion (a great product!), but it's extremely unlikely that Orion will approach IIS's speed of serving HTML pages. IIS is highly optimized using native NT APIs to perform this task extremely quickly. Does anyone have any benchmarks?

SV: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Klaus . Myrseth
have to do to orion. It would be the same as to claim Apache has to get an isapi filter for IIS to serve php for IIS. Ok mention JRun that is a servlet engine and not a webserver, that one would ofcourse have a filter to run jsp and servlets inside IIS (or do a invis redirect) but thats

Re: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Dale Bronk
- Original Message - From: [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 10:30 AM Subject: SV: Using Orion As a Plugin to IIS for Servlets/JSPs Ofcourse it works, install suns com-rmi bridge and youre off.. But it will not work with isapi

RE: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Nirav Dani
:[EMAIL PROTECTED]]On Behalf Of Dale Bronk Sent: Tuesday, October 03, 2000 5:33 PM To: Orion-Interest Subject: Re: Using Orion As a Plugin to IIS for Servlets/JSPs Why shouldn't be possible? WebLogic is an app server, not a plug-in and works quite nicely with IIS

RE: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-03 Thread Kirby, Nathaniel
-Original Message- From: Nirav Dani [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 03, 2000 3:25 PM To: Orion-Interest Subject: RE: Using Orion As a Plugin to IIS for Servlets/JSPs you guys may want to check an article by on JavaWorld.com, about how to make work JSP on IIS

Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-02 Thread John McGarett
Hi, Our business requirements dictate that Orion be used in conjunction with other web servers, e.g. IIS. Orion will be our servlet/JSP engine and App Server. That is, all requests will be directed to IIS and it will treat Orion as a plug-in, by sending it Servlet and JSP requests for

RE: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-02 Thread Duffey, Kevin
To: Orion-Interest Subject: Using Orion As a Plugin to IIS for Servlets/JSPs Hi, Our business requirements dictate that Orion be used in conjunction with other web servers, e.g. IIS. Orion will be our servlet/JSP engine and App Server. That is, all requests will be directed to IIS

RE: Using Orion As a Plugin to IIS for Servlets/JSPs

2000-10-02 Thread Stanislav Maximov
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of John McGarett Sent: Tuesday, October 03, 2000 2:18 AM To: Orion-Interest Subject: Using Orion As a Plugin to IIS for Servlets/JSPs Hi, Our business requirements dictate that Orion be used in conjunction with other web servers, e.g

Re: Reloading servlets, XSLT, AS/400 ?

2000-09-21 Thread Vitaly Lipovetsky
- Original Message - From: "Will Glozer" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: 20 ÓÅÎÔÑÂÒÑ 2000 Ç. 17:10 Subject: RE: Reloading servlets, XSLT, AS/400 ? Yes, the company I work for runs Orion on the AS/400. If you search the archives

Reloading servlets, XSLT, AS/400 ?

2000-09-20 Thread Vitaly Lipovetsky
1. Does Orion support reloading servlets without restart server ? 2. Does Orion support XSLT ? 3. Has anyone tried to run Orion on AS/400 ?

Re: Reloading servlets, XSLT, AS/400 ?

2000-09-20 Thread Robert Krueger
At 10:59 20.09.00 , you wrote: 1. Does Orion support reloading servlets without restart server ? yes 2. Does Orion support XSLT ? yes 3. Has anyone tried to run Orion on AS/400 ? no idea (-) Robert Krüger (-) SIGNAL 7 Gesellschaft für Informationstechnologie mbH (-) Brüder-Knauß-Str. 79

Re: Reloading servlets, XSLT, AS/400 ?

2000-09-20 Thread DMoy
cc: server.comSubject: Reloading servlets, XS

RE: Reloading servlets, XSLT, AS/400 ?

2000-09-20 Thread Will Glozer
it works quite well and we are shipping production code that uses it. Regards, Will -Original Message- From: Vitaly Lipovetsky [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 20, 2000 12:59 AM To: Orion-Interest Subject: Reloading servlets, XSLT, AS/400 ? 1. Does Orion support

Re: Reloading servlets, XSLT, AS/400 ?

2000-09-20 Thread Claudio Miranda
Robert Krueger wrote: At 10:59 20.09.00 , you wrote: 3. Has anyone tried to run Orion on AS/400 ? no idea I think that whenever exists a jvm required by a product (this case Orion) this platform will support this product. I don't known if as/400 has a jvm required by

Running servlets/jsps with security restrictions

2000-09-19 Thread Vlad Petric
Is Orion able to run jsp pages/servlets in threads with security restrictions (different permission, maybe a different SecurityManager)? My idea was to somehow change the generated servlet code for a JSP and remove permissions at the beginning and put them back at the end Vlad

Debugging servlets

2000-08-23 Thread Stanislav Bernatsky
Could anyone explain me how to debug servlets in Kawa+Orion? When I debug ejb's its all works fine. Best regards, Stanislav Bernatsky

Debugging servlets

2000-08-23 Thread Stanislav Bernatsky
Could anyone explain me how to debug servlets in Kawa+Orion? When I debug ejb's its all works fine. Best regards, Stanislav Bernatsky

Re: Debugging servlets

2000-08-23 Thread Dave Smith
It is very similar to debugging EJBs as described on www.orionsupport.com, but you need to have the directory under which the servlets are deployed in your classpath. Stanislav Bernatsky wrote: Could anyone explain me how to debug servlets in Kawa+Orion? When I debug ejb's its all works fine

RE: Debugging servlets

2000-08-23 Thread J.T. Wenting
read the FAQ. It's there... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Stanislav Bernatsky Sent: 23 August 2000 15:48 To: Orion-Interest Subject: Debugging servlets Could anyone explain me how to debug servlets in Kawa+Orion? When I

Setting up a separate tier for servlets and ejbs.

2000-08-16 Thread Kevin Duffey
Hi, I am wondering how would you set up two separate tiers, each having their own farm. One would be for the front-end web server and servlets, while the other would be for the ejb tier. Each would have a cluster of servers. The front-end would be for session fail-over (load-balanced somehow

Debugging JSPs/servlets on Orion

2000-07-16 Thread Kirk Kalvar
these are jsp files translated to Servlets but not yet compiled. Internally when Orion is running I can see in the jvm files like _jspPage0_Main_jsp, which I suspect is a compiled version of Main.jsp. Question is: It there a way to associate the jsp in ./persistence with the compiled code in the jvm

Re: Debugging EJB's/Servlets

2000-07-15 Thread Christian Sell
is there a difference between netbeans and forte community edition? -Original Message- From: Martin Mavrov [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Date: Freitag, 14. Juli 2000 23:13 Subject: Re: Debugging EJB's/Servlets Hi all, I have seen many questions about

Re: Debugging EJB's/Servlets

2000-07-14 Thread Martin Mavrov
Hi all, I have seen many questions about debugging servlets and EJBs under Orion (or other appservers). The open sourced (now ;) NetBeans provides very nice graphical debugger, which can attach to running JVMs, and is really nice in debugging EJBs/servlets. It can be downloaded from

Re: Debugging EJB's/Servlets

2000-07-14 Thread hanasaki
have seen many questions about debugging servlets and EJBs under Orion (or other appservers). The open sourced (now ;) NetBeans provides very nice graphical debugger, which can attach to running JVMs, and is really nice in debugging EJBs/servlets. It can be downloaded from www.netbeans.org

  1   2   >