[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-27 Thread themuppeteer
I'm getting 'bean not bound' , guess I'll search on that first.
Does everything work for you now catalean ?
Can you do a create on your beans home without exceptions ?

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-27 Thread themuppeteer
IT WORKS!

Thanks a million catalean!

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-26 Thread catalean
I think You have to enable a HTTP detached invoker on your EJBs. You better search for 
more information about detached invokers in JBoss. I just found this example, i did't 
test it yet, but it seems to be the solution for your, and also, for my problem to. 
You have to modify your jboss.xml descriptor, and for each EJB you want to access over 
HTTP, specify the http detached invoker. Then you obtain the home interface of an EJB, 
looking up after the jndi name specified by the invoker binding, 
helloworld/HelloHTTP. Hope it helps.
?xml version=1.0 encoding=UTF-8?
  | !DOCTYPE jboss PUBLIC
  |-//JBoss//DTD JBOSS 3.2//EN
  |http://www.jboss.org/j2ee/dtd/jboss_3_2.dtd;
  | 
  | jboss
  |enterprise-beans
  |   session
  |  ejb-nameHelloWorld/ejb-name
  |  jndi-namehelloworld/Hello/jndi-name
  |  invoker-bindings
  | invoker
  |
invoker-proxy-binding-namestateless-http-invoker/invoker-proxy-binding-name
  | /invoker
  | jndi-namehelloworld/HelloHTTP/jndi-name
  |  /invoker-bindings
  |   /session  
  |/enterprise-beans
  | 
  |invoker-proxy-bindings  
  |   !-- A custom invoker for RMI/HTTP --
  |   invoker-proxy-binding
  |  namestateless-http-invoker/name
  |  invoker-mbeanjboss:service=invoker,type=http/invoker-mbean
  |  proxy-factoryorg.jboss.proxy.ejb.ProxyFactory/proxy-factory
  |  proxy-factory-config
  | client-interceptors
  |home
  |   interceptororg.jboss.proxy.ejb.HomeInterceptor/interceptor
  |   interceptororg.jboss.proxy.SecurityInterceptor/interceptor
  |   interceptororg.jboss.proxy.TransactionInterceptor/interceptor
  |   
interceptororg.jboss.invocation.InvokerInterceptor/interceptor
  |/home
  |bean
  |   
interceptororg.jboss.proxy.ejb.StatelessSessionInterceptor/interceptor
  |   interceptororg.jboss.proxy.SecurityInterceptor/interceptor
  |   interceptororg.jboss.proxy.TransactionInterceptor/interceptor
  |   
interceptororg.jboss.invocation.InvokerInterceptor/interceptor
  |/bean
  | /client-interceptors
  |  /proxy-factory-config
  |   /invoker-proxy-binding
  |/invoker-proxy-bindings
  | /jboss

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-26 Thread themuppeteer
Sorry for that Adrian,
I found this link by using google. I think the problem is more general then only JMS. 
Anyway, the solution to cataleans problem is the same as for my problem and thats why 
I'm on this thread.

Catalean,
I'll try this tonight and post the result. Hope it works.

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-26 Thread themuppeteer
hmm no succes... don't even find my bean.

Catalean, may I ask how you layed the connection to the detached http invoker from the 
'unknownHostException' ?
If I google on 'detached http invoker hostname' I get nothing.

Wouldn't there be a way to 'set' the ip correctely after we got the home interface ? 
So before calling the create we could correct the servers url ?
The client does know the ip of the server, so why can't he use it then ?


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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-26 Thread catalean
Little correction, sorry for that, the following is wrong:
invoker-bindings
  | invoker
  | 
invoker-proxy-binding-namestateless-http-invoker/invoker-proxy-binding-name
  | /invoker
  | jndi-namehelloworld/HelloHTTP/jndi-name
  | /invoker-bindings
This is correct:
invoker-bindings
  | invoker
  | 
invoker-proxy-binding-namestateless-http-invoker/invoker-proxy-binding-name
  | jndi-namehelloworld/HelloHTTP/jndi-name
  | /invoker  
  | /invoker-bindings
It also works, the bean's home is found looking up after helloworld/HelloHTTP.

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-25 Thread themuppeteer
Hello,

First of all sorry for my rude 'me too' post (didn't read the rules first..)

It is with great interest that I have followed this post, and I do have exactely the 
same problem. Only for me the solution doesnt work, I searched on it the whole evening 
last night but nothing seems to work. I must be doing something wrong.

Platform server:  Jboss3.2.3, on windows xp, I normally have zonealarm running but 
turn it of for the tests. I run Jboss integrated in Jbuilder x.

Problem: the same, my client can connect to jndi, but when it does the create on the 
home interface, I get an 'unknownhostexception' with my windows name.

I have use the http-invoker and have changed my 
deploy/http-invoker.sar/META-INF/jboss-service.xml file, putting the invokerurl 
(xxx.xxx.xxx.xxx:8080/...) in every mbean I could find there.
I also put my pc's name with its ip in the hosts file.

Could I please get a little more hints or explanation or the jboss-service.xml file or 
anything to work with ? 

thanks a lot.

Best regards,
themuppeteer

(btw, it seems like 2 posts are missing here ?)

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-25 Thread catalean
I was also thinking that setting the InvokerURL for every mbean in the 
http-invoker's jboss service descriptor will resolv all my problems; i think, now, the 
problem has nothing to do with messaging, this is clear now, JMS works over HTTP, but 
when invoking the create method on a found EJB home, the following error occurs, and 
as themuppeteer said, it is a lookup problem again, because the client, again, ends 
up trying to connect to the internal name of my server.
This is the entire error's stack trace:
java.lang.reflect.InvocationTargetException
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at java.lang.reflect.Method.invoke(Unknown Source)
  | at 
ro.citrusmedia.lims.base.ui.mirror.AbstractMirror.initialize(AbstractMirror.java:59)
  | at 
ro.citrusmedia.lims.base.ui.mirror.AbstractMirror.init(AbstractMirror.java:38)
  | at ro.citrusmedia.lims.base.ui.mirror.BaseMirror.init(BaseMirror.java:44)
  | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  | at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
  | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
  | at java.lang.reflect.Constructor.newInstance(Unknown Source)
  | at java.lang.Class.newInstance0(Unknown Source)
  | at java.lang.Class.newInstance(Unknown Source)
  | at 
ro.citrusmedia.lims.base.ui.mirror.MirrorRegistry.getMirror(MirrorRegistry.java:58)
  | at ro.citrusmedia.lims.base.ui.mirror.BaseMirror.getM(BaseMirror.java:57)
  | at 
ro.citrusmedia.lims.base.ui.cache.LocationsCache.initialize(LocationsCache.java:45)
  | at ro.citrusmedia.lims.base.ui.BaseModuleEntry.create(BaseModuleEntry.java:117)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at java.lang.reflect.Method.invoke(Unknown Source)
  | at 
com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:412)
  | at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
  | at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:818)
  | at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:791)
  | at 
ro.citrusmedia.lims.system.ModuleController.registerAndStartModules(ModuleController.java:295)
  | at 
ro.citrusmedia.lims.system.ModuleController.loadModules(ModuleController.java:191)
  | at ro.citrusmedia.lims.system.Application$1.run(Application.java:146)
  | at java.lang.Thread.run(Unknown Source)
  | Caused by: java.rmi.ConnectIOException: Exception creating connection to: 
192.168.0.77; nested exception is: 
  | java.net.SocketException: Network is unreachable: connect
  | at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
  | at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
  | at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
  | at sun.rmi.server.UnicastRef.invoke(Unknown Source)
  | at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source)
  | at 
org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:135)
  | at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:96)
  | at 
org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
  | at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:45)
  | at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:173)
  | at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
  | at $Proxy1.create(Unknown Source)
  | ... 29 more
  | Caused by: java.net.SocketException: Network is unreachable: connect
  | at java.net.PlainSocketImpl.socketConnect(Native Method)
  | at java.net.PlainSocketImpl.doConnect(Unknown Source)
  | at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
  | at java.net.PlainSocketImpl.connect(Unknown Source)
  | at java.net.Socket.connect(Unknown Source)
  | at java.net.Socket.connect(Unknown Source)
  | at java.net.Socket.init(Unknown Source)
  | at java.net.Socket.init(Unknown Source)
  | at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
  | at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown Source)
  | ... 41 more
I just hope, Adrian, or some else could help us out on this problem, even if probably 
this is not the right forum to ask these questions.

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

Reply to the post : 

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-25 Thread themuppeteer
Another night of searching, still no progress...
I have modified my deploy/http-invoker.sar/META-INF/jboss-service.xml like this:

?xml version=1.0 encoding=UTF-8?
!DOCTYPE server
!-- $Id: jboss-service.xml,v 1.1.4.6 2003/01/03 21:39:21 starksm Exp $ -- 


!-- The HTTP invoker service configration
--

!-- Use a URL of the form http://:8080/invoker/EJBInvokerServlet
where  is InetAddress.getHostname value on which the server
is running.
--
!--
http://
:8080/invoker/EJBInvokerServlet
true
--
http://81.82.xxx.xxx:8080/invoker/EJBInvokerServlet



!-- Use a URL of the form http://:8080/invoker/EJBInvokerHAServlet
where  is InetAddress.getHostname value on which the server
is running.
--
!--
http://
:8080/invoker/EJBInvokerHAServlet
true
--
http://81.82.xxx.xxx:8080/invoker/EJBInvokerHAServlet


!-- Expose the Naming service interface via HTTP --

!-- The Naming service we are proxying --
jboss:service=Naming
!-- Compose the invoker URL from the cluster node address --
!--
http://
:8080/invoker/JMXInvokerServlet
true
--
http://81.82.xxx.xxx:8080/invoker/JMXInvokerServlet
org.jnp.interfaces.Naming



!-- Expose the Naming service interface via clustered HTTP. This maps
to the ReadOnlyJNDIFactory servlet URL
--

jboss:service=Naming
!--
http://
:8080/invoker/readonly/JMXInvokerServlet
true
--
http://81.82.xxx.xxx:8080/invoker/JMXInvokerServlet
org.jnp.interfaces.Naming




(found that on http://nemesisit.rdsnet.ro/opendocs/ejboverhttp_f.html)
With hostname the ipadres of my server, and port 8080. 
I also modified the jms/jbossmq-httpil.sar/META-INF/jboss-service.xml  as you said, 
to 81.82.xxx.xxx
8080

but I'm not using JMS so  I'm not sure if I have to.
Since my firewall has been put of, I can use the ip of my machine right ? I wouldn't 
know what else to use since this is a single pc at home.
Meanwhile, I can see in the log that the client tries to connect:
81.164.xxx.xxx - - [25/May/2004:21:57:58 +0100] GET /invoker/JNDIFactory HTTP/1.1 
200 1278
81.164.xxx.xxx - - [25/May/2004:21:57:58 +0100] POST /invoker/JMXInvokerServlet 
HTTP/1.1 200 2429
Waiting for your answer...

Best regards,
themuppeteer

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

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



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-21 Thread [EMAIL PROTECTED]
If you want to use all the services I guess you will have the same problem, yes.
Some are for EJB, https or readonly naming - read the comments.

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-20 Thread catalean
This is how things are looking from my point of view: i have a client application who 
want's to use JMS over HTTP; on the client side these jndi properties are used:
java.naming.factory.initial=org.jboss.naming.HttpNamingContextFactory
  | java.naming.provider.url=http://public_IP_address:8080/invoker/JNDIFactory
  | java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces

public_IP_address is the IP which is translated by the firewall into a internal IP 
address, so each call can reach my internal server. 
And a lookup after the HTTPXAConnectioFactory is made successfuly. When the actual 
topic connection is to be made the following error occurs:
javax.naming.CommunicationException: Operation failed [Root exception is 
java.net.UnknownHostException: LIMS]
  | at 
org.jboss.naming.interceptors.ExceptionInterceptor.invoke(ExceptionInterceptor.java:50)
  | at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:45)
  | at 
org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:55)
  | at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
  | at $Proxy0.lookup(Unknown Source)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:528)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
  | at javax.naming.InitialContext.lookup(InitialContext.java:347)
  | at 
ro.citrusmedia.lims.base.ui.commutil.JNDIManager.initJMS(JNDIManager.java:102)
  | at ro.citrusmedia.lims.base.ui.commutil.JNDIManager.init(JNDIManager.java:61)
  | at 
ro.citrusmedia.lims.base.ui.BaseModuleEntry.contactServer(BaseModuleEntry.java:243)
  | at ro.citrusmedia.lims.base.ui.BaseModuleEntry.create(BaseModuleEntry.java:110)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:412)
  | at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
  | at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:818)
  | at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:791)
  | at 
ro.citrusmedia.lims.system.ModuleController.registerAndStartModules(ModuleController.java:295)
  | at 
ro.citrusmedia.lims.system.ModuleController.loadModules(ModuleController.java:191)
  | at ro.citrusmedia.lims.system.Application$1.run(Application.java:146)
  | at java.lang.Thread.run(Thread.java:534)
  | Caused by: java.net.UnknownHostException: LIMS
  | at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:153)
  | at java.net.Socket.connect(Socket.java:452)
  | at java.net.Socket.connect(Socket.java:402)
  | at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
  | at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
  | at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
  | at sun.net.www.http.HttpClient.init(HttpClient.java:306)
  | at sun.net.www.http.HttpClient.init(HttpClient.java:267)
  | at sun.net.www.http.HttpClient.New(HttpClient.java:339)
  | at sun.net.www.http.HttpClient.New(HttpClient.java:320)
  | at sun.net.www.http.HttpClient.New(HttpClient.java:315)
  | at 
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:512)
  | at 
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:489)
  | at 
sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:560)
  | at org.jboss.invocation.http.interfaces.Util.invoke(Util.java:101)
  | at 
org.jboss.invocation.http.interfaces.HttpInvokerProxy.invoke(HttpInvokerProxy.java:102)
  | at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:96)
  | at 
org.jboss.naming.interceptors.ExceptionInterceptor.invoke(ExceptionInterceptor.java:42)
  | ... 23 more
Can you tell me, how does my client application end up trying to connect to LIMS 
(the internal host name of the server machine)? as i understand, the client 
application should try to connect to public_IP_address.


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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-20 Thread catalean
The error does't occur when the actual topic connection is to be made, but when the 
client application try to lookup after the topic's JNDI name.

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-20 Thread catalean
Sorry, i was wrong on the previous two posts, because it seems that the error is 
occuring when trying to lookup after the HTTPXAConnectionFactory; so it does't even 
get the connection factory. Is possible that the connection to be made is a HTTPS 
connection? the following debug appear in my log:
DEBUG [Util] httpsConnClass: class javax.net.ssl.HttpsURLConnection

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-20 Thread [EMAIL PROTECTED]
You have changed the httpilservice, but not the httpinvoker used by jndi over http.
See deploy/http-invoker.sar/META-INF/jboss-service.xml

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

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


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-19 Thread catalean
I can't get it working, i made the settings Adriand said; my HTTP IL JBoss service 
descriptor looks like this:
?xml version=1.0 encoding=UTF-8?
  | server
  | mbean code=org.jboss.mq.il.http.HTTPServerILService
  |  name=jboss.mq:service=InvocationLayer,type=HTTP
  | depends optional-attribute-name=Invokerjboss.mq:service=Invoker/depends
  | dependsjboss.web:service=WebServer/depends
  | attribute name=ConnectionFactoryJNDIRefHTTPConnectionFactory/attribute
  | attribute 
name=XAConnectionFactoryJNDIRefHTTPXAConnectionFactory/attribute
  | attribute name=PingPeriod0/attribute
  | attribute name=TimeOut60/attribute
  | attribute name=RestInterval0/attribute
  | attribute name=URLHostNamefirewall's IP/attribute
  | attribute name=URLPort8080/attribute
  |   /mbean
  | /server
  | 

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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-19 Thread catalean
As i said, i made the necessary configuration settings, but it seems that those 
settings have no effect on my server, it keeps responding back with his host name and 
not with the firewall's IP specified by the attribute URLHostName.


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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-19 Thread [EMAIL PROTECTED]
I have no idea what your post means.
Why would the settings have an affect on the server? 
It is the client behaviour you are trying to modify.

Post errors and TRACE logging.

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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-16 Thread themuppeteer
Hello, 
I'm having exactely the same problem (I'm searching on it since januari now :(( )
I've trie the 'UseHostName' to false , and all the other suggestions u gave but it 
still doesnt work. My client keeps getting

avax.naming.CommunicationException: Operation failed.  Root exception is java.n
et.UnknownHostException: ServerPCName
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:143)
at java.net.Socket.connect(Socket.java:425)
at java.net.Socket.connect( ...

(My client is a java application that wants to connect over the internet to my pc 
(windows XP with zonealarm))
All I want is that my pc sends back it ip and not its windows hostname..

Any help would be highly appreciated..

Best and desperate regards,
themuppeteer

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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-14 Thread [EMAIL PROTECTED]
Yes, and the information you want is on the WIKI
http://www.jboss.org/wiki/Wiki.jsp?page=ConfigHTTPIL
Did you READ THIS FIRST? :-(

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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-14 Thread catalean
Yes i have read that, but i did't get the ideea, and even now it's not realy clear to 
me: which attribute i need to configure, UseHostName? setted to false? this is all 
that is needed? Thanks very much for your response.

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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS over HTTP with server behind a firewall problem

2004-05-14 Thread [EMAIL PROTECTED]

  | attribute name=URLHostNamefirewall/attribute
  | attribute name=URLPortport open for forwarding/attribute
  | 

When you get it working, please add your example config to the WIKI
with a short explanation.
Of course you should obfuscate your host/port :-)

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

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


---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user