• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Problem wit UIL ??

 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am using JBoss 3.0.6, UIL
I have a machine in my lab that has nothing but a fresh OS installed recently. We have developed an application that runs fine on other machines but when run on this machine, the machine cant seem to send out asynchronous messages.
Lets call this machine X
Scenario:
---------
I want to run a Jboss server instance on X and send an asynchronous message to another Jboss server instance running on another machine say Y.
Note:
------
I have the localhost value in /etc/hosts to my network ip address and not 127.0.0.1

Likewise I have another machine say A that does exactly the reverse as X ..viz., it can send but cant recieve asynchronous messages. Plain Socket calls run perfect on both of these systems.
What are the config settings on machine A ?? I am not sure ? So we can leave that out. But machine X has nothing but clean OS installed.
** No firewalls on the network
** Machine X runs DHCP server, I tried turning it off but still no change.

Thanks in advance
Regards
Meka Toka
 
Ranch Hand
Posts: 1072
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The UIL (Unified Invocation Layer) is configured as an MBean, and supports all the attributes supported by the MBean for OIL(Optimized Invocation Layer)
OIL attibutes:
ServerBindPort-->att for defining the listen port on the server
BindAddress--> att used to define the listen address on the server
EnableTcpNoDelay--> indicats whether TcpNoDelay option should be used. If true TCP?IP packet will not be buffered
OIL also supports attributes of RMI Invocation Layer, whic are Invoker,ConnectionFactoryJNDIRef,XAConnectionFactoryJNDIRef,PingPeriod
Thus UIL support all the attributes above in definition of UIL setting are:
ServerBindPort-->8091
EnableTcpNoDelay--> true
XAConnectionFactoryJNDIRef-->UILXAConnectionFactory
ConnectionFactoryJNDIRef-->UILConnectionFactory
{JBoss' pre-configured file is jbossmq-service.xml in the \deploy directory of the default config set}
I am quoting this from jboss admin book of wrox. hope it helps
 
meka toka
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Thank You for the post. I have gone through those material.
The oddity here is that the application works on every other system in my network except that ?? At the end of the day we even used a network analyzer to see if the packets were going or not ?
We noticed that it is recieving JMS messages but cant send them out.
what could be the reason ?
Regards
Meka Toka
 
ersin eser
Ranch Hand
Posts: 1072
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I read that most of the JBossMQ subsystems are configured as MBeans services, and thus can efficiently monitored and administrered using JMX console. Did you try that?
 
meka toka
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, I tried all of that. I have the yearly susbcription to all the JBoss docs and also a couple of books (only available in market) on JBoss.
I cant understand why it would work on one system and why not on other ? Usually in such circumstances its a configuration issue. But the question is what am i missing ? Cuz I have other systems with same configuration (as faar as i can notice) and same OS.
???
I am totally confused here
Regards
Meka Toka
 
Do not threaten THIS beaver! Not even with this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic