RequestDispatcher -> Request Parameters lost

2002-03-16 Thread FuernissOliver
ookies are disabled the "hello"-parameter is not set (getParameter("hello") returns null), but all the other Parameters from the origin request are set correctly. Any ideas? Is this an bug in the orion server? Thanks in advance,   Oliver

global servlet initialization parameters?

2002-02-18 Thread Mark Weaver
is there any way to specify inititialization parameters in orion so that 2-3 different related web applications can all access them with ServletConfig.getInitParameter() or ServletContext.getInitParamter()? tomcat appears to allow this through the use of a default context, but i can't

Re: finder parameters

2001-09-19 Thread Eddie
MAIL PROTECTED]> Sent: Wednesday, September 19, 2001 4:04 PM Subject: finder parameters > Please help me!!! > > Is there any possibility to pass order direcrtion as parameter > of a finder? That is parameter string ("asc" or "desc") is

RE: finder parameters

2001-09-19 Thread The elephantwalker
mailto:[EMAIL PROTECTED]]On Behalf Of sergey Sent: Wednesday, September 19, 2001 7:04 AM To: Orion-Interest Subject: finder parameters Please help me!!! Is there any possibility to pass order direcrtion as parameter of a finder? That is parameter string ("asc" or "desc") is a

finder parameters

2001-09-19 Thread sergey
Please help me!!! Is there any possibility to pass order direcrtion as parameter of a finder? That is parameter string ("asc" or "desc") is added to the end of SQL? Ex.: findAllSortedByState("asc"); In orion-ejb-jar.xml: Some

Re: ejb-jar.xml --> orion-ejb-jar.xml bug? finder parameters

2001-07-08 Thread Jeff Hubbach
n include it in your ejb.jar. Just remember that the only time this file gets copied over is on initial deployment. Jeff. On Sun, 08 Jul 2001 17:13:47 -0500 Kit Cragin <[EMAIL PROTECTED]> wrote: >I have discovered that when creating a finder with 2 parameters, the >resulting orion-ejb-

ejb-jar.xml --> orion-ejb-jar.xml bug? finder parameters

2001-07-08 Thread Kit Cragin
I have discovered that when creating a finder with 2 parameters, the resulting orion-ejb-jar.xml that gets generated by Orion outputs instead of for the finder example below. Single-parameter finders seem to generate the correct query. Has anyone experienced this problem? Is there a work

RE: Where to put application parameters?

2001-04-06 Thread Peter Neil
e to put application parameters? Try this: String path = "your-relative-path.xml" InputStream ins= null; try { ins = getClass().getClassLoader().getResourceAsStream(path); } catch (Throwable ex) { com.amaio.util.sys.prn("Error getting XML resource"+ex); }

RE: Where to put application parameters?

2001-04-06 Thread Toth [EMAIL PROTECTED], Adam \(E-mail\)
that I can't change the component's code. [freesrc vs "component based off-the-self" etc etc] The reason I'm asking for help is to put this parameter somehow to somewhere in the app's config files, so the customer doesn't have to care about orion's starting pa

Re: Where to put application parameters?

2001-04-05 Thread Petr Podsednik
rom: Toth [@FREEMAIL], Adam (E-mail) <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Sent: Thursday, April 05, 2001 5:12 PM Subject: Where to put application parameters? > Hi, > > We're using a component in our sw, and that needs a config XML file. >

Where to put application parameters?

2001-04-05 Thread Toth [EMAIL PROTECTED], Adam \(E-mail\)
Hi, We're using a component in our sw, and that needs a config XML file. The following method is used currently: java -Dsomeparam=path-to.xml -jar orion.jar We don't have to source, and it's working ok I''ve tried to put this into web-inf/web.xml (into EAR in WAR of course) like this: [..]

RE: Servlet Parameters

2001-03-26 Thread Arved Sandstrom
L PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Hani Suleiman Sent: Friday, March 23, 2001 11:16 AM To: Orion-Interest Subject: RE: Servlet Parameters No i isn't a bug, the servlet spec explicitly disallows servlets from being mapped to / On Fri, 23 Mar 2001, Chuck Butkus wrote: > I just

RE: Servlet Parameters

2001-03-23 Thread Chuck Butkus
Then the orion primer ought to be updated since "hello-planet-pkg.zip" has a web.xml file that uses a servlet mapping of "/" -Original Message- From: Hani Suleiman [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 10:16 AM To: Orion-Interest Subject: RE: Servl

RE: Servlet Parameters

2001-03-23 Thread Hani Suleiman
No i isn't a bug, the servlet spec explicitly disallows servlets from being mapped to / On Fri, 23 Mar 2001, Chuck Butkus wrote: > I just wanted to post that I found the problem. I was using a servlet > mapping with a url pattern of "/". For some reason the servlet pa

RE: Servlet Parameters

2001-03-23 Thread Chuck Butkus
I just wanted to post that I found the problem. I was using a servlet mapping with a url pattern of "/". For some reason the servlet parameters don't come through with this servlet mapping. When I changed the servlet mapping from "/" to "/servlet", everythi

Servlet Parameters

2001-03-15 Thread Chuck Butkus
I am having a problem with servlet parameters. My servlets gets parameters when I put Orion in debug mode and put it directly under the "/orion/default-web-app/WEB-INF/classes/" directory, but the parameters don't come through when I put it in a web application. Has anyone

CGI problem handling parameters

2001-02-07 Thread Andy Freeman
Hello all, I am having problems with the CGI handling functionality of orion, when trying to include a site search (webinator from Thunderstone). The problem is as follows:- To get to the site search screen, you have to enter the url: http://www.mysite.com/texis.cgi/webinator/search/ The above

RE: Best way to redirect root "/" URL to servlet with parameters

2001-01-19 Thread Johnson, Robert
rvlet with parameters You could put in the default.jsp. Jeff >-Original Message- >From: Johnson, Robert [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 18, 2001 8:52 PM >To: Orion-Interest >Subject: Best way to redirect root "/" URL to servlet with parame

SV: Best way to redirect root "/" URL to servlet with parameters

2001-01-19 Thread Niklas Uhrberg
t "/" URL to servlet with parameters >Is there an easy way with orion to redirect the root URL to a servlet. For >example: > >www.mysite.com => www.mysite.com/c?param=1 (/c is mapped to a servlet) > >I could do it with a HTML redirect but I don't want the intermedi

RE: Best way to redirect root "/" URL to servlet with parameters

2001-01-19 Thread Jeff Schnitzer
You could put in the default.jsp. Jeff >-Original Message- >From: Johnson, Robert [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 18, 2001 8:52 PM >To: Orion-Interest >Subject: Best way to redirect root "/" URL to servlet with parameters > > >

Best way to redirect root "/" URL to servlet with parameters

2001-01-18 Thread Johnson, Robert
Is there an easy way with orion to redirect the root URL to a servlet. For example: www.mysite.com => www.mysite.com/c?param=1 (/c is mapped to a servlet) I could do it with a HTML redirect but I don't want the intermediate page to show up. I also thought about just mapping "/" to a servlet th

Request parameters not getting passed through in form based authentication?

2000-10-30 Thread Markus Holmberg
Has anyone successfully requested a protected resource with request parameters and had them getting passed through to the protected page with the login form intervening? Markus -- Markus Holmberg | Give me Unix or give me a typewriter. [EMAIL PROTECTED] | http

unicode parameters[2]

2000-10-17 Thread Savotchkin Egor
Hi all! I have problem handling unicode strings in the form of %u (from javascript's escape function). Say url is: http://localhost/foo/foo.jsp?param=%u0455&p=%0020 in the jsp we have: QueryString=param=%u0455&p=%0020 so far so good, but getParameterValues returns: name=p; value=20 name=

unicode parameters

2000-10-16 Thread Savotchkin Egor
Hi all, I send an encoded (in unicode by some javascript function from IE ) string of parameters to orion server from an applet. Each character of the string is substituted with its unicode value in the form %u, where X is a hex digit on the client side. On the server side

Re: Servlet parameters

2000-10-11 Thread Lauren Commons
TECTED]> > To: "Orion-Interest" > <[EMAIL PROTECTED]> > Sent: Tuesday, October 03, 2000 2:55 PM > Subject: Servlet parameters > > > > Howdy. I submitted this question last week, but > I'm > > hoping it got lost in the multiple-delivery stor

Re: How to pass parameters to JVM

2000-10-11 Thread Klaus Thiele
Dumitru Sbenghe wrote: > > How to config orion to pass parameters to java.exe. > > Example from jserv config > wrapper.bin.parameters=-mx128m -Dapp.config=c:/windows/etc/app.conf try java -Xmx128m _and_other_java_parms_ -jar orion.jar java -? or java -X

Re: How to pass parameters to JVM

2000-10-11 Thread Robert Krueger
At 17:54 11.10.00 , you wrote: >How to config orion to pass parameters to java.exe. > >Example from jserv config > wrapper.bin.parameters=-mx128m -Dapp.config=c:/windows/etc/app.conf > >I haven't found this in orion documentation. > >Thanks just pass them, wh

RE: How to pass parameters to JVM

2000-10-11 Thread Dumitru Sbenghe
No need for answer. I found it in an old message. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Dumitru Sbenghe Sent: Wednesday, October 11, 2000 5:55 PM To: Orion-Interest Subject: How to pass parameters to JVM How to config orion to pass

How to pass parameters to JVM

2000-10-11 Thread Dumitru Sbenghe
How to config orion to pass parameters to java.exe. Example from jserv config wrapper.bin.parameters=-mx128m -Dapp.config=c:/windows/etc/app.conf I haven't found this in orion documentation. Thanks

Re: Servlet parameters

2000-10-03 Thread Daniel C. DiCesare
Have you correctly deployed the servlet? Also, try making the html page a jsp. Your syntax looks correct. - Original Message - From: "Lauren Commons" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, October 03, 2000 2:5

Servlet parameters

2000-10-03 Thread Lauren Commons
Howdy. I submitted this question last week, but I'm hoping it got lost in the multiple-delivery storm, and not that y'all are ingoring me ;-) I have a web page which calls a servlet, and passes parameters. I know he servlet is called (I see it running), but it doesn

Servlet not getting request parameters

2000-09-28 Thread Lauren Commons
I have a web page which calls a servlet, and passes parameters. The servlet is called (I see it running), but it doesn't recieve any parameters. Infact the query string is null. Any suggestions? Heres a link in the html page: Heres some of the code from the servlet: public void

How to send parameters to the underlying JDBC driver?

2000-07-27 Thread Klaus . Myrseth
I have defined a datasource that works, but i want to send hostname and applicationname to the database server aswell... My problem is that it just wond to that, i noticed in the XML docs that you have the possibility to add description and property to the data-source definition but not how, so m

PARAMETERS

2000-07-18 Thread David Sierra Fernandez
I'm looking for code examples or a guide where I cuold find how get the init parameters, context parameters, resources references, an so on from the enterprise beans, JSPs and servlets. - David Sierra Fern

Configuring default web deployment parameters

2000-06-04 Thread Anthony Glenning
er behaves correctly - however these edits are lost when redployment occurs. Is this a deployment bug in Orion or am I not configuring the default deployment parameters correctly? Thanks, Tony

orion 0.9.1b: flushes existing request parameters

2000-03-01 Thread Philippe Renon
Hi, When using the tag in a forward or an include, the existing request parameters get "forgotten". Page1.jsp would contain something like that If I use an URL like ".../Page1.jsp?param1=hello", then Page2.jsp only gets param2 and not param1. Now if I remove

Re: Orion-Interest JSP Parameters

2000-02-10 Thread Bond - James D.
Is there any reason the the setProperty * function of JSPs doesn't work in Orion (.8 or .9) like it does in all other JSP 1.0 or 1.1 implementations I've tried. Here's the code that won't work specifically in Orion: To get it to work in Orion

RE: System parameters

1999-12-14 Thread Colin Burroughs
Hi, >I'm not quite sure what you mean by non-standard system parameters - so I'll >leave that for someone else. ermmm this kind of thing... java.util.Properties prop = System.getProperties(); java.util.Enumeration en = prop.propertyNames(); for (int i=0; en.hasM

RE: System parameters

1999-12-14 Thread Mike Cannon-Brookes
I'm not quite sure what you mean by non-standard system parameters - so I'll leave that for someone else. To start a Java class at startup, make it a servlet and set it to autoload. This way you can also govern the startup order (see the docs for details) if you want to startup many

System parameters

1999-12-13 Thread Colin Burroughs
Hi, Is there a quick and easy way of setting non-standard system parameters under the Orion environment. I have a need to setup Java deployment parameters which I can access from Java, .jsp etc... Can this be done through the .xml setup files? Is there a way of starting a Java class on Orion