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
0
votes
1 answer

Resin's Custom Authentication

I'm glad stackoverflow exists at least there is traffic. Sorry for asking these here but posting a question in caucho forums takes weeks to appear apparently. I was fallowing a guide to have a custom login form for my service, but the guide was…
jigzat
  • 3,498
  • 1
  • 21
  • 23
0
votes
2 answers

Can't remove resin web server

From the day i installed resin in my ubuntu,i couldn't b able install any packages nor i could be able to remove it.I'm getting the similar error in both the cases $sudo apt-get remove resin Reading package lists... Done Building dependency tree …
0
votes
2 answers

Resin Server Exception

What would be the possible causes for the below exception on resin server restart? 500 Servlet Exception conf/resin.conf:168: java.lang.StackOverflowError Resin Professional 3.0.21 (built Thu, 10 Aug 2006 12:17:46 PDT)
Java Guy
  • 3,391
  • 14
  • 49
  • 55
0
votes
0 answers

how to set X-Frame-Options and X-XSS-Protection header in Caucho Resin web server

I have caucho Resin web server, I need set X-Frame-Options and X-XSS-Protection header for security, But I can not find any document to explain how to do it I want to get the correct resin.xml , which include X-XSS-Protection and X-Frame-Options
wgzhao
  • 560
  • 5
  • 5
0
votes
1 answer

Calling remote Java method that takes java.lang.Object as argument in Resin

I'm using resin in one project. So far so good except for one little issue? I created a generic method that takes any Object as the only argument but when I call the method it looks for the method name but with a different argument type, of course…
jigzat
  • 3,498
  • 1
  • 21
  • 23
0
votes
1 answer

How to deploy Railo 3.2.3 on Resin 4.0.15?

I've just discovered that all the install guides for railo+resin assume you're installing the obsolete 3.1.2 bundle (railo-3.1.0.012-resin-3.1.2-without-jre.zip). I have Resin 4 installed now, what is the process for deploying the Railo WAR / JAR's…
SpliFF
  • 38,186
  • 16
  • 91
  • 120
0
votes
2 answers

package com.x.y.z does not exist

I'm trying to run old servlet under resin. I have deployed it as a war file. After starting resin there is a dir ic. It contains Webcontent dir with WEB-INF/lib/ic.jar (fatjar), jsp etc. While extracting this ic.jar I see there package com/x/y/z but…
0
votes
1 answer

How do you execute cleanup code on shutdown in Resin?

Is there a way to register a function in Resin so that it runs whenever Resin is shut down? I know you can init servlets on startup, but I need to make sure that all of my exec()'ed processes are terminated when the server is shutdown.
Phoebe
  • 2,774
  • 3
  • 22
  • 27
0
votes
1 answer

Wrong Java version on Resin

In our project, we are using Resin as the production server. On my local machine, I was using Jetty but I've faced some differences in the application's behavior on different servers. That's why I am trying to add configuration to Intellij IDEA…
I.R.
  • 442
  • 1
  • 7
  • 16
0
votes
1 answer

Resin configure can't find openssl on mac

Can't find OpenSSL during the installation of Resin 4.0.64 on command ./configure. Log: checking build system type... x86_64-apple-darwin19.4.0 checking host system type... x86_64-apple-darwin19.4.0 checking target system type...…
I.R.
  • 442
  • 1
  • 7
  • 16
0
votes
1 answer

resin memory issue

I started the resin 3.0.28 using the jvm parameter : -Xms6300M -Xmx6300M -Xss128k -XX:ThreadStackSize=256 -XX:MaxPermSize=128M -XX:PermSize=128M -verbose:gc -XX:+PrintGCDetails -XX:+UseParallelGC -XX:+PrintGCTimeStamps but the memory…
0
votes
2 answers

Is that a good way to make webservice work with resin?

I asked a question yesterday Question about the framework or tools dealing with webservice in java, I am appreciate the answers. I tried some ways and I decide to use axis for the client and JAX-WS for the server side. But i am confusing that is…
Danyun Liu
  • 3,072
  • 24
  • 22
0
votes
1 answer

Setting context root for EAR application (Resin)

I have a EAR application with following structure: app.ear |-- app.war `-- META-INF `-- application.xml application.xml
user219882
  • 15,274
  • 23
  • 93
  • 138
0
votes
1 answer

Cannot Reset JSESSIONID After Authentication

I'm trying to reset JSESSIONID after login, but I cannot. I have tried the following: ... HttpSession ghostSession = request.getSession(false); ghostSession.invalidate(); request.getSession(true); ... // some more manipulations of the ghostSession…
gye
  • 1,374
  • 3
  • 16
  • 27
0
votes
0 answers

How to upgrade servlet 2.5 to 3.0 on Resin 3.1 pro

I try to make spring project with STS and resin 3.1. but it has problem. Ex: " java.lang.NoSuchMethodError: javax.servlet.http.HttpServletResponse.getStatus() " "getStatus()" is required servlet 3.0 but resin 3.1 supports servlet 2.5. so How can i…
Bard
  • 1