[JBoss-user] [Installation Configuration] - Re: ServiceBindingManager multiple jboss same machine using

2005-04-10 Thread dannyb23
In the clustering webinar there was an example of running two nodes on same 
machine and all they did there was updating the ServiceBindingManager and its 
with ports-01 , wasnt this supposed to be working??

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873354#3873354

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873354


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: ServiceBindingManager multiple jboss same machine using

2005-04-10 Thread anguyen
You're right. 
http://docs.jboss.org/jbossas/admindevel326/html/ch10.html#d0e21029.

I've always just modified the configs for each service directly, but it looks 
like you can use the ServiceBindingManager to override individual service 
config values all from one central config.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873374#3873374

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873374


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: ServiceBindingManager multiple jboss same machine using

2005-04-10 Thread tomerbd2
So is this a bug?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873376#3873376

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873376


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: ServiceBindingManager multiple jboss same machine using

2005-04-10 Thread anguyen
Looks like someone forgot to update 
docs/examples/binding-manager/sample-bindings.xml with entries for the 
PooledInvokerHA (new in 4.0?)

Anyways, it's easy fix to add the required entry for ports-01. Here is a diff 
that adds the binding entry for the pooledha invoker in all service binding 
configurations:

  | *** docs/examples/binding-manager/sample-bindings.xml.dist  Sun Apr 10 
12:38:17 2005
  | --- docs/examples/binding-manager/sample-bindings.xml   Sun Apr 10 12:41:16 
2005
  | ***
  | *** 92,97 
  | --- 92,104 
  |binding port=/
  | /service-config
  |   
  | +   service-config name=jboss:service=invoker,type=pooledha
  | +  
delegateClass=org.jboss.services.binding.AttributeMappingDelegate
  | +  
  | +  delegate-config portName=ServerBindPort/
  | +  binding port=4446/
  | +   /service-config
  | + 
  |   
  | !-- * iiop-service.xml ** --
  |   
  | ***
  | *** 309,314 
  | --- 316,328 
  |binding port=4544/
  | /service-config
  |   
  | +   service-config name=jboss:service=invoker,type=pooledha
  | +  
delegateClass=org.jboss.services.binding.AttributeMappingDelegate
  | +  
  | +  delegate-config portName=ServerBindPort/
  | +  binding port=4546/
  | +   /service-config
  | + 
  |   
  | !-- * iiop-service.xml ** --
  |   
  | ***
  | *** 530,535 
  | --- 544,556 
  |binding port=4644/
  | /service-config
  |   
  | +   service-config name=jboss:service=invoker,type=pooledha
  | +  
delegateClass=org.jboss.services.binding.AttributeMappingDelegate
  | +  
  | +  delegate-config portName=ServerBindPort/
  | +  binding port=4646/
  | +   /service-config
  | + 
  |   
  | !-- * iiop-service.xml ** --
  |   
  | ***
  | *** 748,753 
  | --- 769,781 
  |
  |delegate-config portName=RMIObjectPort/
  |binding port=4744/
  | +   /service-config
  | + 
  | +   service-config name=jboss:service=invoker,type=pooledha
  | +  
delegateClass=org.jboss.services.binding.AttributeMappingDelegate
  | +  
  | +  delegate-config portName=ServerBindPort/
  | +  binding port=4746/
  | /service-config
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873380#3873380

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873380


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: ServiceBindingManager multiple jboss same machine using

2005-04-09 Thread anguyen
I would start with this:
anonymous wrote : java.lang.Exception: Port 4446 is already in use

If you want to run both nodes on the same machine, you need to change the port 
assignments for the second node.  I would consult the wiki on what ports are 
being used and where they're configured: 
http://www.jboss.org/wiki/Wiki.jsp?page=UsingJBossBehindAFirewall

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873324#3873324

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873324


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user