Re: [Resin-interest] SAXParseException when using (jakarta's) JSTL in JSP (Resin 3.1)

2008-01-28 Thread Olaf Krische
version=1.0 encoding=UTF-8? 2: jsp:root xmlns=http://www.w3.org/1999/xhtml; xmlns:jsp=http://java.sun.com/JSP/Page; xmlns:c=http://java.sun.com/jsp/jstl/core; version=2.1 3: Erik Forkalsrud wrote: Olaf Krische wrote: 1. Download Resin 3.1 snapshot (resin-3.1.s080126) 2. Starting with java

Re: [Resin-interest] SAXParseException when using (jakarta's) JSTL in JSP (Resin 3.1)

2008-02-05 Thread Olaf Krische
Hello Erik, your idea to change the system properties did relax the error. Thank you! (I am unable to re-open the Bug or to submit a new bug, i dont get any email from Mantis. Grmbl.) Erik Forkalsrud wrote: It seems to work better if you use Rein's XML parser, i.e. add this to your

[Resin-interest] Resin 4, maven plugin complains about session-config

2010-08-19 Thread Olaf Krische
Hello, is anybody else using the maven plugin (4.0-SNAPSHOT) for resin? I have three problems right now, but i start with this one: The plugin gets confused by the line session-config in the web.xml: $ mvn -e resin:jspc WEB-INF/web.xml:245:

[Resin-interest] Resin 4, maven plugin can not find resin's own .tld

2010-08-19 Thread Olaf Krische
Hello everyone again :-) I continued to play around with the maven plugin from resin 4 $ mvn -e resin:jspc ... [INFO] com.caucho.jsp.JspLineParseException: A.jsp:1: 'http://java.sun.com/jstl/core' has no matching taglib-uri. Taglibs specified with an absolute URI must either be: 1) specified

Re: [Resin-interest] 4.0.21 release

2011-08-24 Thread Olaf Krische
Hello, i have a WAR accounts.war. I move it into webapps of a fresh installation of resin 4.0.21, and then i get this on a POST request (GET works) java.lang.UnsupportedOperationException: com.caucho.vfs.JniStream@2542880d

Re: [Resin-interest] Out of PermGen space

2012-04-24 Thread Olaf Krische
On 24.04.2012 22:54, Rick Mann wrote: When I'm making changes to the code of a webapp, Resin kindly reloads it for me. I can usually get a handful of reloads in before Resin complains about being out of PermGen space. Is there something I'm doing wrong in my app that it leaks like this?

Re: [Resin-interest] Out of PermGen space

2012-04-24 Thread Olaf Krische
Hello Chris, this actually makes me wonder: are enums eating so much space, especially when compared to those things, that you release with the classloader? Heard about this for the first time. Interesting. On 24.04.2012 23:41, Chris Pratt wrote: that, since Enumerations are guaranteed to

Re: [Resin-interest] Hoster moved hardware, now am unable to build mod_caucho.so

2012-06-10 Thread Olaf Krische
Salve, does the same appear when doing: ./configure --enable-64bit --with-apxs=/usr/bin/apxs2 ? On 10.06.2012 19:44, c.whalley wrote: I searched for this error and wound up installing libc-dev-i386 in response to a forum post, which felt wrong - why the 386? In any case, it made things

[Resin-interest] Why, oh why! Re: JSP encoding issues

2012-08-29 Thread Olaf Krische
On 29.08.2012 00:56, Rick Mann wrote: Why, oh why, did they standardize on iso-8859-1? Same good old question in all areas of computer stuff. :-) Why could they not foresee? But hey, JSP is pretty old, who would have thought, its still there? (It also took some time, before UTF-8 was

Re: [Resin-interest] servlet-3.0 annotation config

2012-12-13 Thread Olaf Krische
Did i just read 'Resin 7'? :-) Scott Ferguson f...@caucho.com schrieb: On 12/12/12 12:03 PM, Scott Ferguson wrote: On 12/12/12 11:05 AM, Rick Mann wrote: On Dec 12, 2012, at 10:07 , Scott Ferguson f...@caucho.com wrote: It sounds like a Resin bug that will be in the next release.

[Resin-interest] mod_caucho again with resin4

2013-02-13 Thread Olaf Krische
Hello again, working with: - resin-pro 4.0.34 (eval license), - two instances (app-0,app-1) - mod_caucho.so for loadbalancing on apache 2.2 prefork Lets start: - resin's /resin-admin: System Health is OK, i see both servers - apache's /caucho-status: i see both servers green as ok Now i

Re: [Resin-interest] mod_caucho again with resin4

2013-02-13 Thread Olaf Krische
Or in short: Whenever i disable or even stop a resin in a cluster, then i see a lot of 503 in apache's access.log. This should not happen. Why is that so? Why the other servers do not take over? And second: when i disable (not stop) a resin in a cluster, why caucho-status still shows it in

Re: [Resin-interest] custom component providers for injection

2013-02-27 Thread Olaf Krische
@caucho.com Betreff: Re: [Resin-interest] custom component providers for injection On 2/24/13 2:06 PM, Olaf Krische wrote: Hello, by the way, about injection, is there an tutorial out there on how to bind custom component providers to Resin's CDI? For example, i use picocontainer and i

Re: [Resin-interest] custom component providers for injection

2013-02-27 Thread Olaf Krische
Ole! 1) I get an exception: Can't find a bean for 'class ServiceService' Do i need to register the MyFactory anywhere manually? Yes. I have to put at least an empty beans.xml into META-INF of the jar to include. 2) I have a listener, that starts/stops the ComponentProvider

Re: [Resin-interest] difference between http request and forward()

2013-05-10 Thread Olaf Krische
Is writing your own filter no option, whose logic decides, what is external and what is internal? On 10.05.2013 13:35, Riccardo Cohen wrote: Is there any way to simply tell that path mapping should be applied only to external request and not to forward() calls ?

Re: [Resin-interest] difference between http request and forward()

2013-05-11 Thread Olaf Krische
... Is it possible to know if the file requested is from a http request or a forward() in a filter ? How do you do this ? Thanks On 10/05/13 15:04, Olaf Krische wrote: Is writing your own filter no option, whose logic decides, what is external and what is internal? On 10.05.2013 13:35, Riccardo