Results 1 to 2 of 2

Thread: Spring and multiple application server

Hybrid View

  1. #1

    Default Spring and multiple application server

    Our customer has a very special request.

    He wants to have a functional development environment in which he can create, modify algoritimes. The algoritmes are developed on a desktop, and are running in a local user application server. So far nothing special.

    The algoritmes created by the end user, must also connect to other algoritmes and services that run on a central production application server.
    Some services that are running must be able to call algoritmes that are running on a local application server.

    When the user is satisfied about his algoritme he wants to deploy it on the central production server.

    What is the best approach to solve this client request?

  2. #2
    Join Date
    Aug 2004
    Location
    u.s.a
    Posts
    399

    Default

    If you are asking how Spring can help make this more tractable, perhaps the simplest thing is to use Spring Remoting. Each server has a spring context that, using proxies, remotly accesses beans in the other server.

    Once an algorithm (presented as a component bean) is complete, it is deployed on production server and the bean definition wherein it was a remote object, is changed so it isn't (not proxied).

Similar Threads

  1. Replies: 1
    Last Post: Dec 19th, 2007, 03:21 PM
  2. EJB3.0 without Spring :-)
    By josenyimi in forum EJB
    Replies: 11
    Last Post: Oct 30th, 2007, 03:12 PM
  3. Replies: 5
    Last Post: Oct 8th, 2006, 12:39 PM
  4. Replies: 2
    Last Post: Oct 10th, 2005, 05:12 PM
  5. Comparision JMX Spring
    By umeshs79 in forum Container
    Replies: 5
    Last Post: Jun 16th, 2005, 12:27 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
  •