Request forwarding to a specific target frame?

2002-07-25 Thread Andreas Schlegel
Hi, does anyone know how to forward a request to a specific frame? I use: dispatcher = getServletContext().getRequestDispatcher( "/servlet/MyServlet" ); dispatcher.forward( request, response ); Is there any way to define a target frame (TARGET='myFrame') in such a request forwarding? Greetin

German character problem

2002-07-18 Thread Andreas Schlegel
Hi, we have a strange problem and don't know the reason nor how to solve it. May be someone has an idea. A Java application (Tomcat 4.0.3, Postgresql 7.2.1, JDBC: PostgreSQL 7.2 JDBC2) runs well on W2k, also on Linux (Suse 7.2) but on SOLARIS OS (Sparc) we have the following problem: All spec

Re: OT: Question to hardware requirements

2002-04-11 Thread Andreas Schlegel
Bernhard Wraase wrote: > This is difficult question which may be the reason why nobody has answered yet. I thought that every experienced developer who handles servlets must have some experience concerning the requirements > > >From my experience with it I give a guess: > > 1) 1000 MHz, 512MB

OT: Question to hardware requirements

2002-04-09 Thread Andreas Schlegel
Hi, I have a question to some experienced servlet or Tomcat users. I need to know what may be the hardware requirements (RAM, Mhz, how many disks ...) for the application as described below. The features of the application are the following: - lightweight HTML pages (no images) - frames (we nee

Limit of HTML input fields in a form?

2002-02-15 Thread Andreas Schlegel
Hi, does anyone know if there is a limit for the HTML input fields in one form? We have a dynamically created form that contains a lot of input fields (most of them have the type hidden or checkbox). Having between 110 and 140 input fields we got the following message and error: Message: Conne

OT: can't compile java servlet example with Fop-0.20.1

2002-02-13 Thread Andreas Schlegel
Hi, has anybody a piece of code that works like the example code should (generate a PDF with xml and xsl and fop). This well known code does not compile with Fop-0.20.1 I am sure if is not the right mailing list but I couldn't find a list that matches that topic. I get the errors: Error #: 300

Re: OT: Spaces in URL using xalan

2002-02-12 Thread Andreas Schlegel
Problem solved. I modified the xsl file and everything works fine :-) -- Andreas Andreas Schlegel wrote: > Hi, > > I have the following problem. May be someone has an idea how to solve > it or find a workaround. > > I create the following URL which has a space after

OT: Spaces in URL using xalan

2002-02-12 Thread Andreas Schlegel
Hi, I have the following problem. May be someone has an idea how to solve it or find a workaround. I create the following URL which has a space after ... nodeId=A2 and create an element with the URL as content. termin.addContent( new Element( "contact_url").addContent( "/test/servlet/com.test

Re: AW: Charset Problem?

2001-04-26 Thread Andreas Schlegel
Stefan Busse wrote: > yep, i posted about this problem some days ago, with no reply. > obviously a bug in the connector, which (by mistake) expects > a Unicode-Charset. If it is clear that is a Tomcat bug is it also a known bug? I tried to have a look on the bug database. But I was confused abou

Re: Encoding URL fails

2001-04-26 Thread Andreas Schlegel
Thanks for help. It is running now :-) Greetings, Andreas Wolle wrote: > hello, > you could make a workaround. > simple useurl = encodeURL("url") + "¶meter=bla"; > > Greetings, > WOlle > > Andreas Schlegel wrote: > > > Hi, > > >

Charset Problem?

2001-04-26 Thread Andreas Schlegel
Hi, does anyone know this problem. Having an HTML form the user may type words like 'Köln' (ö -> special german character). In one case the server receives the parameter 'Köln', in the other case it receives only 'K'. On the other hand the server has no problem to build + send HTML pages that co

Encoding URL fails

2001-04-23 Thread Andreas Schlegel
Hi, I have a problem encoding a string containing the character '&' and put it as param in an URL If I encode A&P the URLEncoder.encode(value) returns A%26P. But if I put this result string as parameter in an URL, the URL contains A&P. So what can I do to have the encoded value in the URL? I am

Can't start app with 3.2.1

2001-02-06 Thread Andreas Schlegel
Hi, I have an app that runs fine with Tomcat 3.1 After updating to 3.2.1 I receive the error 404. I put my libs, conf files .. as I did it in 3.1 Would is so different in these versions that it won't find my classes. Any idea? Greetings, Andreas -

Re: Delay in invoking first servlet

2001-01-30 Thread Andreas Schlegel
Hi Paul, in your answer toRachel you mention a "load-on-startup servlet". Do you have/know an example how to write and implement such a servlet? Greetings, Andreas Paul FitzPatrick wrote: > I'm not sure, but I've heard on the list that there is an expensive random > number seeding process tha

Load own classes when Tomcat starts?

2001-01-30 Thread Andreas Schlegel
Hi, is there any way to load own classes as permission objects and other stuff of my application when Tomcat starts up? Greetings, Andreas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROT