Results 1 to 3 of 3

Thread: Hessian releases

Hybrid View

  1. #1
    Join Date
    Feb 2005
    Posts
    17

    Default Hessian releases

    is there any special reason why spring still includes
    release 2.1.14? (should 3.x work too with spring?)

    are there any 'must-have' features in 3.x which 2.x has not?

    thanks
    fonz

  2. #2
    Join Date
    Aug 2004
    Location
    Montreal - Canada
    Posts
    46

    Default

    I just have a quick look at release 3.0.13 and found that
    a sendJavaType property has been added to CollectionSerializer.

    Code:
    public class CollectionSerializer extends AbstractSerializer {
      private boolean _sendJavaType = true;
    
      /**
       * Set true if the java type of the collection should be sent.
       */
      public void setSendJavaType(boolean sendJavaType)
      {
        _sendJavaType = sendJavaType;
      }
    
      /**
       * Return true if the java type of the collection should be sent.
       */
      public boolean getSendJavaType()
      {
        return _sendJavaType;
      }
    it may helps for Hibernate collection.
    Christophe

  3. #3
    Join Date
    Aug 2004
    Location
    Linz, Austria
    Posts
    391

    Default

    Well, the main reason why we still ship Hessian 2.x is JDK 1.3 compatibility. Hessian 3.x, like the entire Resin 3.x series, requires JDK 1.4.

    Hessian 3.x is nevertheless supported, of course. Our HessianServiceExporter even contains special checks to address API changes from Hessian 2.x to 3.x.

    Juergen

Similar Threads

  1. Transfer large files via Hessian
    By pwyngaard in forum JMS
    Replies: 2
    Last Post: Nov 7th, 2005, 04:33 PM
  2. Hessian and the request..
    By tonygiaccone in forum JMS
    Replies: 2
    Last Post: Sep 12th, 2005, 03:02 PM
  3. hessian JMX connector security
    By ndeloof in forum Container
    Replies: 3
    Last Post: Jul 14th, 2005, 12:22 AM
  4. Remote services and Hessian
    By templth in forum Remoting
    Replies: 11
    Last Post: Jan 31st, 2005, 01:39 PM
  5. Protocol Exceptions with Hessian & Burlap
    By dortman in forum Remoting
    Replies: 1
    Last Post: Sep 28th, 2004, 02:08 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •