Results 1 to 2 of 2

Thread: Access Java Spring service w/ .NET client

  1. #1
    Join Date
    Dec 2008
    Posts
    1

    Default Access Java Spring service w/ .NET client

    I have a Java Spring service that I need to call from a C#/.NET client. We used Spring HttpInvoker when this was Java-to-Java, so I looked at Spring.NET. But there's no way to call Java Spring, unless I missed something. Could anybody recommend which technology to use?

    Thanks,
    David

  2. #2
    Join Date
    Jan 2009
    Location
    Huntington Beach, CA
    Posts
    718

    Default

    What about Hessian or Burlap. It is the same concept, and all you would have to change impl class in your xml from HttpInvoker Exporter and FactoryBean classes to Hessian or Burlap Exporters and FactoryBeans.

    The difference between the two is one is in binary and one is in plain text, but both serialize your object to xml and pass it back and forth. There is implementations of Hession and Burlap in .net too.

    Mark

Posting Permissions

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