Questions tagged [resin]

Resin is the Java Application Server for high traffic sites that require speed and scalability.

Resin weaves Java components to HTML with JavaScript and the Java Server Pages (JSP) interface. Resin conforms to the Servlet interface and can be used with the major web servers, including Apache. Amongst other features, it implements the bulk of ECMA-262, the EcmaScript standard, implements JavaScript 1.3 features, extends regular expressions with Perl 5 syntax and compiles scripts directly to JVM bytecodes.

http://caucho.com/

167 questions
1
vote
1 answer

Custom JSP Compiler in Tomcat 6 ?

I'm moving my application server from Resin to Tomcat 6. In the process I am facing lots of problems wrt to JSP compilation. (receive loads of JasperExceptions due to syntax errors). My JSP's using JSTL 1.1 compile and run smootly in Resin . Is…
Reinwald
  • 11
  • 1
1
vote
2 answers

Problem with loading XML Schema document in Resin and Spring-WS

I am getting following exception when trying to load a XML Schema file in Resin 3.0.25 container. The schema file does not refer anything external besides XML Schema namespace (http://www.w3.org/2001/XMLSchema). The XML Schema file is valid and…
Juha Syrjälä
  • 33,425
  • 31
  • 131
  • 183
1
vote
1 answer

Does the appserver need a bounce everytime the database is bounced?

I have my app server resin and oracle database connected. If the db is bounced for any reason, I have to bounce my app server as well to clear the bad connections. Is there any way to get around this? Any property set to the datasource? Other than…
Java Guy
  • 3,391
  • 14
  • 49
  • 55
1
vote
1 answer

How to configure resin4 to save the session to redis

How to configure resin4 to save the session to redis,like tomcat? 120 4096
panjun
  • 11
  • 1
1
vote
1 answer

Resin server error "500 Servlet Exception", seems to have some error on jdk or something

I'm suffering from opening jsp page on resin server. It actually didn't work on jetty too, but I moved to resin after my prof told me that jsp would work better on resin. I installed jdk version 1.8.0_65 and set the directory in environment…
Yeongchan Jeon
  • 499
  • 3
  • 18
1
vote
1 answer

resolving session fixation bug fix in resin app server

I am using resin app server request.getSession.invalidate();reguest.getSession(true) is not working properly and its not resetting session ID while using Resin. Also I am not able to use request.changeSessionId() as the resin version is not able to…
dreambigcoder
  • 1,859
  • 4
  • 22
  • 32
1
vote
1 answer

Where is the "caucho.com" new Maven2 repository address?

I add the "http://caucho.com/m2" or "http://caucho.com/m2-snapshot" repository address but is error .Message is Unable to update index for caucho release repository|http://caucho.com/m2: Resource nexus-maven-repository-index.properties does not…
EdwardLau
  • 1,139
  • 4
  • 20
  • 26
1
vote
1 answer

In JSTL/EL, how exactly are enum-to-string comparisons supposed to work?

Given a JSP page, and some object bound to a request attribute called "foo", I can refer to "foo" with: ${foo} If the value of "foo" has a bean property called, say, "type", and the type of "type" is some enum class, then to make comparisons I…
Pointy
  • 405,095
  • 59
  • 585
  • 614
1
vote
3 answers

Mapping Resources in dispatcher servlet (Resin Server)

This is my dispacter-servlet.xml file. When i deploy the project on resin pro 4.0.36 it loads my index page and the content BUT FAILS to load css files and images stored under the staticresources folder
user2522497
  • 137
  • 2
  • 15
1
vote
0 answers

Caused by: java.lang.StackOverflowError at org.springframework.util.ObjectUtils.nullSafeEquals(ObjectUtils.java:246)

I'm getting this Exception in my program, it looked like a endless loop. org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.StackOverflowError at…
fanfan
  • 11
  • 2
1
vote
0 answers

Can't share a link on Facebook of a file that is hosted on Resin Server

I'm having a problem while trying to share a link to the following file: My Title
1
vote
1 answer

Converting from Clob to String in JSP/JSTL sometimes leads to a closed connection exception

I have this JSP code which performs a very simple SQL query. The query returns a Clob which has to be converted to a String. I am using Oracle for the database, Resin for the server. The JSP works just fine most of the time but sometimes it throws…
casolorz
  • 8,486
  • 19
  • 93
  • 200
1
vote
2 answers

Is it possible to run a ZF2 application on Resin with Quercus?

I am attempting to set up a very basic Zend Framework 2 application to run on Resin using Quercus as a proof of concept. I'm running into some issues, and I haven't been able to find any open source examples of a ZF2 application running on…
adamdunson
  • 2,635
  • 1
  • 23
  • 27
1
vote
0 answers

Resin Server - Can't install into Eclipse kepler

I'm using CentOS 6.4. I have downloaded Resin server from the this official website. I have the folder in /home/admin/. I followed this site for adding resin server into Eclipse. but couldn't able to see resin option. Is there any way to add resin…
Sabapathy
  • 1,613
  • 3
  • 18
  • 30
1
vote
0 answers

Resin JSP compiler error

I'm getting such error while compiling JSPs during resin server start up. [null] Exception in thread "main" com.caucho.java.JavaCompileException: : error: getJspBody() has protected access in SimpleTagSupport…