Re: WML and JSP

2000-02-01 Thread Magnus Björkman
Simon Jakesch wrote: > hi, > > has anyone experince with generating WML sites with JSP. it sould be a > problem making the sites and the content but the problem is... i need > WML as an extension for the WAP site and the JSP enignie doesn't pick up > anything else than .JSP to interpret it >

Internationalization

2000-01-26 Thread Magnus Björkman
In a servlet it is possible to create the PrintWriter the way I want but how do I set the PrintWriter in JSP 0.92 to: PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), "UTF-8"), true); Is it possible? /Magnus ==

Re: C:\CoolProgs\Pretty Park.exe

1999-10-20 Thread Magnus Björkman
Warning, could be PrettyPark worm. http://www.symantec.com/avcenter/venc/data/prettypark.worm.html /Magnus === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://

Re: RequestDispatcher().include() problem

1999-09-01 Thread Magnus Björkman
I have two servlets, test1 and test2. test1 writes a line and calls test2 with the RequestDispatcher.include() on return from test2 test1 writes a last line. This should result in: before: test2 test2 after: but I get: before: after: Why? I am using JRun 2.3.1 build 145 with servlet API 2.1 and

JRun build 152 doesn't compile

1999-07-14 Thread Magnus Björkman
After upgrading my JRun 2.3.2 build1 to build 152 I get this message when I try to run/compile a new .jsp page: javax.servlet.ServletException: This version of JSP does not support compilation. at java.lang.Throwable.fillInStackTrace(Native Method) at java.lang.Throwable.fillInSta

Re: using encodeURL

1999-06-11 Thread Magnus Björkman
Tommy Berglund wrote: > > page1.jsp > > > > > > <% > test.setStreng("write it"); > String encurl = response.encodeURL("http://xxx.xxx.xxx/test/page2.jsp"); > > out.println("Link"); If something like "http://xxx.xxx.xxx/test/page2.jsp?sessionid=0989809898" is displayed in the client browser

Re: session scoped beans without cookies

1999-06-09 Thread Magnus Björkman
Tommy Berglund wrote: > Hi everyone, > > how would I rewrite these so > they would work for browsers without cookie-support... > > page1.jsp <%@ page import=javax.servlet.http.* %> > > > HttpServletResponse. encodeUrl(String url); > > Link Something like this would rewrite the URL, eg. htt