0 Replies Latest reply on Oct 1, 2004 5:58 PM by boris3

    RMI over HTTP - container configuration

    boris3

      Hi,

      We are trying to deploy our beans such that communication between the EJB client and the EJB server would happen using http transport, instead of rmi.

      We started with a fully working system configured for rmi, and then tried to follow the article at

      http://nemesisit.rdsnet.ro/opendocs/simplearch/simplejboss.html

      The problem that we have is with this jboss-container.xml:

      <container-configurations>
      <container-configuration extends="Standard Stateful SessionBean">
      <container-name>HTTP Session</container-name>
      <home-invoker>jboss:service=invoker,type=http</home-invoker>
      <bean-invoker>jboss:service=invoker,type=http</bean-invoker>
      </container-configuration>
      </container-configurations>

      The resulting jboss.xml does not validate against the DTD; we looked at the DTD and there is no mention of a "home-invoker" or "bean-invoker"; nor do I see anything in the DTD which would look relevant to invoker type.

      So my question is: where do I read about configuring the container to use HTTP as the transport for RMI?