• hessian
  • quercus/php
  • resin 3.0
  • resin 3.1
  • resin 4.0

  • changes
  • configuration
  • examples
  • installing
  • overview
  • starting

  • guide: admin
  • admin
  • amber
  • bam
  • caching
  • clustering
  • comet
  • database
  • deployment
  • ejb 3.0
  • embedding
  • filters
  • ioc
  • jsf
  • jsp
  • logging
  • messaging
  • quercus
  • remoting
  • security
  • resources
  • servlets
  • third-party
  • troubleshooting
  • virtual host
  • watchdog
  • webapp
  • HOME
  • ABOUT
  • ARTICLES
  • WORKSPACE
  • NEWS
  • PROJECTS
  • PRODUCTS
  • STORE
resin

Hessian now supports a JNDI "hessian:" URL.

Context ic = new InitialContext(); Bean bean = (Bean) ic.lookup("hessian://localhost:8080/hessian/bean");

jndi-link no longer requires the <factory>. Now it can be used as a symbolic link to another JNDI name.

<web-app xmlns="http://caucho.com/ns/resin"> <jndi-link jndi-name="java:comp/env/stock-service" foreign-name="hessian://foo.com:8080/service/stock"/> </web-app>

A new standard ThrottleFilter has been added. The filter restricts the number of requests from the same IP, defaulting to 2 (the HTTP spec limit.) The ThrottleFilter is useful to limit some parallel download programs that can use more threads than they should.

<filter filter-name="throttle" filter-class="com.caucho.filters.ThrottleFilter"> <init> <max-concurrent-requests>2</max-concurrent-requests> </init> </filter> <filter-mapping url-pattern="/*" filter-name="throttle"/>

The JNI has been updated to support 64-bit compilation on Solaris. The configuration looks like:

unix> ./configure --enable-64bit unix> make unix> make install unix> bin/httpd.sh -J-d64

  • See the changelog for more details.
  • Important bug fix for JNI keepalives on Win32.
  • Important misc memory and reload fixes

  • HOME |
  • CONTACT US |
  • DOCUMENTATION |
  • SALES |
  • WIKI
Copyright (c) 1998-2009 Caucho Technology, Inc. All rights reserved.
caucho® , resin® and quercus® are registered trademarks of Caucho Technology, Inc.
  • hessian
  • quercus/php
  • resin 3.0
  • resin 3.1
  • resin 4.0

  • changes
  • configuration
  • examples
  • installing
  • overview
  • starting

  • guide: admin
  • admin
  • amber
  • bam
  • caching
  • clustering
  • comet
  • database
  • deployment
  • ejb 3.0
  • embedding
  • filters
  • ioc
  • jsf
  • jsp
  • logging
  • messaging
  • quercus
  • remoting
  • security
  • resources
  • servlets
  • third-party
  • troubleshooting
  • virtual host
  • watchdog
  • webapp
  • HOME
  • ABOUT
  • ARTICLES
  • WORKSPACE
  • NEWS
  • PROJECTS
  • PRODUCTS
  • STORE

Resin's buzzword compliance has been enhanced in 3.0.8. Instead of the old, boring "bean-style init" phrase, parts of the documentation have been upgraded to use the snazzier "dependency injection" buzzword. Since Resin's configuration is based on setters, the proper buzzword is "setter based dependency injection."

The upgraded, buzzword-compliant documentation includes:

  • Dependency Injection for the MovieFinder example
  • Dependency Injection for a servlet's DataSource
  • Dependency Injection for a PeriodicTask resource
  • Dependency Injection for a JMX client emitter/listener
  • Dependency Injection for Hessian Service configuration

The main documentation on Resin's bean-style init has not yet been upgraded to the new buzzwords, but provides more information on the configuration patterns.

MBeans now have a JNDI URL, "mbean:", which allows them to the used for bean-style init (Dependency Injection.)

The JNDI lookup will return the MBean's proxy interface if one is available.

If a MBean domain is included in the name, e.g. "mbean:foo:type=Bar", Resin will use the full MBean name. If only the attributes are used, e.g. "mbean:type=Bar", Resin will add the local JMX context name. In other words, Resin will add the web-app's properties. This allows the configuration to be independent of the web-app or host configuration block.

So "mbean:type=Bar", might be converted to the full MBean name "resin:Host=foo.bar,WebApp=/dir,type=Bar".

Since jndi:lookup can be used for dependency injection (bean-style init), you can use it to configure mbeans.

<web-app xmlns="http://caucho.com/ns/resin"> <resource mbean-name="type=Test" type="qa.Test"/> <resource jndi-name="t1" type="qa.T1"> <init> <test>${jndi:lookup("mbean:type=Test")}</test> </init> </resource> </web-app>

In the preceeding example, T1 has a setTest(TestMBean) method.

The persistent/distributed sessions have been changed because the old configuration had caused much confusion. (The old configuration still works for backward compatibility.)

<persistent-store> configures the persistent/distributed store in the <server> level for all persistent store types: jdbc, cluster (tcp), and file. The <server> level is required because the persistent-store needs to communicate with other servers in the cluster to notify about updates.

Each <web-app> needs to enable persistent store for its session-config individually. The use-persistent-store attribute of the <session-config> enables the persistent-store.

As usual, you can use <web-app-default> to enable configuration for all web-apps.

<resin xmlns="http://caucho.com/ns/resin"> <server> <cluster> <srun server-id="a" port="6810" index="1"/> <srun server-id="b" port="6811" index="2"/> </cluster> <persistent-store type="jdbc"> <init data-source="jdbc/session"/> </persistent-store> <web-app-default> <session-config use-persistent-store="true"/> </web-app-default> <host id=''> <web-app id='/'/> </host> </server> </resin>

The client configuration for the cluster is now configurable (e.g. for load balancing and distributed sessions).

<resin xmlns="http://caucho.com/ns/resin"> <server> <cluster> <client-live-time>60s</client-live-time> <client-dead-time>15s</client-dead-time> <client-read-timeout>10s</client-read-timeout> <client-write-timeout>15s</client-write-timeout> <srun .../> </cluster> ... </server> </resin>

Added read-timeout and write-timeout for http and srun .

<http host="localhost" port="8080"> <read-timeout>120s</read-timeout> <write-timeout>60s</write-timeout> </http>

web-apps configured with web-app-deploy can now be custom configured in the resin-conf using <web-app> inside the web-app-deploy. In particular, the <web-app> can define a <context-path> different from the default value given by the .war name.

The web-apps are matched using the <document-directory> as a unique identifier.

... <web-app-deploy path="webapps"> <web-app context-path="/foo" document-directory="bar"/> </web-app-deploy> ...

Application redeployment is now controllable through the web-app web.xml and through JMX.

The startup-mode has three values: "automatic", "lazy", and "manual".

  • automatic - starts the web-app on server start (default)
  • lazy - starts the web-app on the first request
  • manual - waits for JMX to start the web-app.

The redeploy-mode has two values: "automatic", and "manual".

  • automatic - restarts the web-app when modified (web.xml, *.class, *.war, etc).
  • manual - waits for JMX to restart the web-app when changes occur.

The WebAppMBean has three new methods:

  • start() - starts the application
  • stop() - stops the application
  • restart() - restarts the application

If the archive-name for log rotation ends in ".gz", then Resin will use GZip to compress the log when it's rotated. See the log configuration.

<log name="" level="warning" path='log/error.log' archive-format="%Y-%m-%d.error.log.gz" rollover-period="1D"/> <access-log path="log/access.log" archive-format="access-%Y%m%d.log.gz" rollover-period="1D"/>

With JDK 1.5, the <ping> resource will check the JDK to detect deadlocks and will automatically log the deadlocked threads and restart the JDK when deadlocks are detected.

The ServletServerMBean adds clearCache() and clearCacheByPattern().

Resin's Portlet support provides a generic library package for application to use the portal/portlet design pattern.

The portlet support is currently in Beta.

Resin can use Groovy scripts as Java classes or even as servlets

.

Full Groovy support is waiting for an important bug fixes from Groovy. See the Groovy Bug Report 375 and vote on it.

To enable Groovy support, put the groovy*.jar and the asm-*.jar in resin/lib. Then add a <compiling-loader> entry to the <class-loader> configuration.

<web-app xmlns="http://caucho.com/ns/resin"> <class-loader> <compiling-loader path="WEB-INF/groovy" compiler="groovyc" source-extension=".groovy"/> </class-loader> </web-app>

Once you've done that, you can drop in groovy source files in WEB-INF/groovy and use them like Java beans from your Java classes.

package test; public class MyBean { public String toString() return { "groovy[]"; } }

PHP support has been fixed in 3.0.8. The full configuration doc is in thirdparty/php.

<web-xml> <servlet servlet-name="php" servlet-class="com.caucho.servlets.FastCGIServlet"> <init> <server-address>localhost:8002</server-address> </init> </servlet> <servlet-mapping url-pattern="*.php" servlet-name="php"/> </web-xml>

Hessian 1.0.1 has been released. Hessian 1.0.1 clarifies the non-normative naming conventions for the meta-info protocol and the object names.

The new object name uses query string of "?id=XXX" to avoid dependency on EJB.

The new meta-info attributes for _hessian_getAttribute(attrName) are:

attributedescription.
java.api.classReturns the java API interface for this URL.
java.home.classReturns the java API interface for the factory/home URL, i.e. stripped of the "?id=XXX".
java.object.classReturns the java API interface for the object instances URL, i.e. those which have query string "?id=XXX".
  • HOME |
  • CONTACT US |
  • DOCUMENTATION |
  • SALES |
  • WIKI
Copyright (c) 1998-2009 Caucho Technology, Inc. All rights reserved.
caucho® , resin® and quercus® are registered trademarks of Caucho Technology, Inc.