[jboss-user] [Remoting] - Re: How to unregister a ServerInvoker?

2006-08-23 Thread cnbs
Sorry for a stupid question but how can i do this: [EMAIL PROTECTED] wrote : ... that gets called when your app is undeployed... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966924#3966924 Reply to the post :

[jboss-user] [Remoting] - Re: How to unregister a ServerInvoker?

2006-08-22 Thread cnbs
i mean JBossAS :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966678#3966678 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3966678 ___ jboss-user mailing list

[jboss-user] [Remoting] - Re: question about connector.xml

2006-08-20 Thread cnbs
Thank you. It works ) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966363#3966363 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3966363 ___ jboss-user mailing list

[jboss-user] [Remoting] - question about connector.xml

2006-08-18 Thread cnbs
Should the connector.xml be in this place? - jboss-remoting.jar\jboss-remoting\org\jboss\remoting\transport It isn't there. Is it normal? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966040#3966040 Reply to the post :

[jboss-user] [Remoting] - Re: question about connector.xml

2006-08-18 Thread cnbs
I am talking about 2.0.0CR1 version.. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966048#3966048 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3966048 ___ jboss-user mailing

[jboss-user] [Remoting] - How to unregister a ServerInvoker?

2006-08-17 Thread cnbs
Hello. I'm using remoting shipped in Jboss-4.0.4. I have problems with deployment/undeployment. I deploy an application with remoting, create a Connector and test connectivity with client. After this i change my code, compile and redeploy application and when i try to create a connector i get

[jboss-user] [JBossWS] - Re: Reading cookies in a web service

2006-08-15 Thread cnbs
JBoss threw an exception when i tried to use this: @Resource WebServiceContext wsctx; Initially Jboss doesn't know anything about this interface, its library jbossws-client.jar is allocated in jboss/client directory.. I copied it in jboss/server/all/lib and it threw a NoClassDefFoundError error

[jboss-user] [JBossWS] - Re: Reading cookies in a web service

2006-08-15 Thread cnbs
cnbs wrote : JBoss threw an exception when i tried to use this: | @Resource | WebServiceContext wsctx; | | Initially Jboss doesn't know anything about this interface, its library jbossws-client.jar is allocated in jboss/client directory.. I copied it in jboss/server/all/lib and it threw

[jboss-user] [JBossWS] - ServiceLifecycle problem.

2006-08-14 Thread cnbs
Hello I'm having problem with getting ServletEndpointContext. I implement ServiceLifecycle in my WebService and try to get ServletEndpointContext in implemented init() method but that method is never called. Using JBoss 4.0.4 and JSR-181 Webservice.. View the original post :

[jboss-user] [Beginners Corner] - Re: HELP: javax.naming.NameNotFoundException: comp not bound

2006-08-11 Thread cnbs
ashahashah wrote : cnbs wrote : anonymous wrote : The env-entry-name element contains the name of an enterprise bean's | | | environment entry. The name is a JNDI name relative to the | | | java:comp/env context | | I don't have this java:comp/env context to which all my

[jboss-user] [Beginners Corner] - Re: HELP: javax.naming.NameNotFoundException: comp not bound

2006-08-11 Thread cnbs
I just resolve it. :) Not the comp not bound but the @Resource and @TimerService not working problem. I always tried to work with TimerService or SessionContex in a constructor and got the NPE. All i had to do is to try this in a method not in the constructor :) View the original post :

[jboss-user] [JBossWS] - How to get URL of a client?

2006-08-10 Thread cnbs
Hello. I need to resolve clients URLs in my WebService, each time they call a @WebMethod. How can i do this? Thank you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3964334#3964334 Reply to the post :

[jboss-user] [Beginners Corner] - Re: org.jboss.xb.binding.JBossXBException: Failed to parse s

2006-08-10 Thread cnbs
yongjun_jiao wrote : Maybe you should put the namespace in your schema locaotion attribute: | xsi:schemaLocation=ejb-jar_3_0.xsd -- | xsi:schemaLocation=http://java.sun.com/xml/ns/javaee ejb-jar_3_0.xsd | Sorry i posted wrong code.. the real one: ?xml version=1.0 encoding=UTF-8? |

[jboss-user] [Beginners Corner] - Re: HELP: javax.naming.NameNotFoundException: comp not bound

2006-08-07 Thread cnbs
I just need something like this: | | Ejb Module: MyAppEJB.jar | | | java:comp namespace of the MyBean bean | : | +- env (class: org.jnp.interfaces.NamingContext) | | | java: Namespace | +- XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory) | +-

[jboss-user] [Beginners Corner] - org.jboss.xb.binding.JBossXBException: Failed to parse sourc

2006-08-07 Thread cnbs
I'm getting this exception while deployng an EJB with ejb-jar.xml included: org.jboss.xb.binding.JBossXBException: Failed to parse source: 10:59:11,024 WARN [JBossEntityResolver] Trying to resolve systemId as a non-file URL: http://java.sun.com/xml/ns/javaee/javaee_web_services_client_1_2.xsd

[jboss-user] [Beginners Corner] - Re: HELP: javax.naming.NameNotFoundException: comp not bound

2006-08-07 Thread cnbs
jaikiran wrote : If thats what you want to have, then you will have to specify an env-entry for your bean. Have a look at the dtd of ejb-jar.xml at: | http://java.sun.com/dtd/ejb-jar_2_0.dtd | | Here's an extract: | | Thank you.. but I need an ejb ENC context, from where i want to

[jboss-user] [Beginners Corner] - Re: HELP: javax.naming.NameNotFoundException: comp not bound

2006-08-07 Thread cnbs
anonymous wrote : The env-entry-name element contains the name of an enterprise bean's | environment entry. The name is a JNDI name relative to the | java:comp/env context I don't have this java:comp/env context to which all my environment resources names (like env-entry) have to be

[jboss-user] [Beginners Corner] - HELP: javax.naming.NameNotFoundException: comp not bound

2006-08-04 Thread cnbs
Can't get java:comp namespace on JBoss 4.0.4 My application deploys without any exceptions, but its own namespace isn't created. When i try to execute something like this : ctx.lookup(java:comp/env/..); i get this: javax.naming.NameNotFoundException: comp not bound What can i try to do with