java ee - What are good point and features for each protocol in jboss remote naming? -


jboss uses 3 different protocols can used calling remote ejb: remote, ejb http-remote. afaik there 1 more - jnp, abandoned. each shallow described in wildfly 10 documentation here: https://docs.jboss.org/author/display/wfly10/remote+jndi+reference https://docs.jboss.org/author/display/wfly10/remote+jndi+reference+update+draft

for me, interesting http-remoting comparing ejb. cannot find information http-remoting. interested in load balancing between servers, have same stateless bean deployed. protocol http-remoting uses http calls, right? mean can use external tool better distribute calls between servers.

  • http-remoting same remoting runs on http port of wildfly , uses http upgrade switch remoting
  • remoting binary protocol introduces in jboss 7 , can used compatibility or if want have remoting on port seperate http
  • ejb not protocol. need setup client differently use jndi prefix (described in links). tries save server call (i.e. jndi lookup) , @ same time support wildfly cluster

for detailed explanation of see https://docs.jboss.org/author/display/wfly10/ejb+invocations+from+a+remote+client+using+jndi


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -