[jboss-user] [Installation, Configuration DEPLOYMENT] - SAR and classpath

2008-01-02 Thread lzap
Hello, I need to deploy a MBean service which depends on classes from our EAR application (theproject.jar + many libraries). The application will be also deployed on the server. Is it possible to create such a dependency that will allow execution of the service and enterprise app with common

[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
I have studied JBoss-IIOP but it seems I cant use this JMX module for my purpose. I need to develop a CORBA-SOAP bridge for JBoss using DSI/DII interfaces and I am not sure how to do the CORBA side. Should it be an JMX module or other component? View the original post :

[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
Yes this is very good idea, I would like to reuse JBoss ORB. Ok I will look at the corba naming service but I still have a questions: a) should I develop JMX module or EJB stateless session bean with only one instance allowed? the second option is giving portability to other EJB servers... b)

[jboss-user] [EJB/JBoss] - Minimal configuration with IIOP

2007-07-11 Thread lzap
Hello, I would like to have the minimal server configuration with JBoss IIOP JMX module. It depends on Naming service according to the deployment descriptor but I am getting NoClassDefFoundException: javax.ejb.spi.HandleDelegate. What JMX modules should I install to have the minimal

[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
I mean enterprise application client instead of EJB stateless session bean. EJB bean cannot include corba services because is created by the client... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4062858#4062858 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
Oh it seems the JMX module is the only way to create services under JBoss. Sorry for my strange posts... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4062882#4062882 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062882

[jboss-user] [JBossWS] - Re: WebService that catches all requests

2007-07-10 Thread lzap
Am I able to add new handler from the code? If not, how to add the handler that will be able to catch some requests without breaking the whole JBoss installation? I am searching through the documentation and I cannot find any information about this config file. View the original post :

[jboss-user] [EJB/JBoss] - CORBA DSI server under JBoss

2007-07-10 Thread lzap
Hello, I need to create a component that will serve via DSI. Reading all these tutorials about expossing EJBs via CORBA I did not find any information about creating my very own Invoker. Could anyone give me some tips where to start? Thanks. View the original post :

[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-10 Thread lzap
It seems I will have to create my own JMX module with CORBA server... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4062522#4062522 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062522

[jboss-user] [JBossWS] - Re: WebService that catches all requests

2007-07-10 Thread lzap
So everything I need is to insert new endpoint-config tag and provide implementation of the class? Looks good. In what order are handlers called? I need to have my handler first. Thanks for help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4062538#4062538

[jboss-user] [JBossWS] - WebService that catches all requests

2007-07-04 Thread lzap
Hello, we are developing a module that will dynamicaly translate SOAP calls to CORBA calls and back in JBoss. I would like to create some special handler or something that will catch all WS requests for given scope and pass them to CORBA. How to do that? Where to start? I am new to JBoss...