[JBoss-user] [Remoting] - Using JBoss Remoting with Sateful session beans

2006-05-28 Thread yair.zaslavsky
Good day, I would like to know if it is possible to write a JBoss remoting client that will address a sateful session bean. Thanks, Yair View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3947263#3947263 Reply to the post : http://www.jboss.com/index.html?mod

[JBoss-user] [JBossWS] - JBoss WS and JBoss remtoing question

2006-05-30 Thread yair.zaslavsky
Good day all, My organization is considering using of JBoss remoting. We will have a jboss remoting client that will address a jboss remoting server component. What will we need to do in order to provide this server component a web services interface? we understand that in the future, JBossWS wi

[JBoss-user] [Management, JMX/JBoss] - JBoss thread pool

2006-05-30 Thread yair.zaslavsky
Good day all. I'm trying to figure out how to use JBoss BasicThreadPool - we would like to use a thread pool at our application. I looked for some source code, but in vein. What is the proper way to use this MBean? (we're intrested in having several tasks that will be "pooled") Thanks Yair V

[JBoss-user] [Management, JMX/JBoss] - More on thread pool MBean...what am I doing wrong?

2006-05-30 Thread yair.zaslavsky
Good day. I deployed the EJB3 trailblazer (JBoss 4.04 RC1) including the calculator MBean and managed to write a client that activates the calculator. Now, I decided to take one step futher. In my tester class i wrote a static class called MyTask that implements Runnable and Serializable and look

[JBoss-user] [Management, JMX/JBoss] - Re: More on thread pool MBean...what am I doing wrong?

2006-05-30 Thread yair.zaslavsky
Thank you for the comment, but besides this, is my code correct? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3947920#3947920 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3947920

[JBoss-user] [Management, JMX/JBoss] - More on using the thread pool - some progress and a question

2006-05-31 Thread yair.zaslavsky
Good day, I managed to created an MBean that creates an instance of the thread pool and uses it. Here is the code: @Service (objectName="trail:service=TestThreadPool") @Management(TestThreadPool.class) @Depends ("jboss.system:service=ThreadPool") public class TestThreadPoolMBean implements TestTh

[JBoss-user] [Management, JMX/JBoss] - Re: More on thread pool MBean...what am I doing wrong?

2006-05-31 Thread yair.zaslavsky
Ok, I fixed the code @Service (objectName="trail:service=TestThreadPool") @Management(TestThreadPool.class) @Depends ("jboss.system:service=ThreadPool") public class TestThreadPoolMBean implements TestThreadPool { static public class MyTask implements Runnable { p

[JBoss-user] [Management, JMX/JBoss] - A question about the scheduler

2006-06-01 Thread yair.zaslavsky
Hi, I want to write a JMX service that upon the activation of its "test" method, a perioudic job will begin. I added the following lines to the jboss-service.xml: I then wrote the interface of the service: @Local @Remote public interface TestTimer { public void test(); } And t

[JBoss-user] [JBossWS] - Does JBoss-WS support EJB3?

2006-06-28 Thread yair.zaslavsky
Good day all, Currently we're working with JBoss 4.04 RC1 When we develop a web service, we still develop it using "J2EE/EJB 2.1" style - What I mean is that we define an interface for the endpoint, that extends RMIRemote, we also write a stateless session bean , we right a remote and remote-hom

[JBoss-user] [JBossWS] - A question about developing a client to jsr-181 web service

2006-06-28 Thread yair.zaslavsky
Good day all, I'm new to JBoss and especially to JBoss 4.04GA. I read the link from jboss-wiki that explains about developing web services using JBossWS. I followed the example of JSR-181. What I fail to understand is - how do I generate the WSDL file from the service code? what kind of xml confi

[JBoss-user] [JBossWS] - How can I generate a WSDL using WSTOOLS and JSR181 web servi

2006-06-28 Thread yair.zaslavsky
Hi all, I folllowed the example for JSR181 web service as written at the jboss wiki, however, I fail to understand how can I generate a WSDL from the interface of the service? Preior to JSR181 , when developing web services with interface that extends Remote, I used WSCOMPILE for this. What shou

[JBoss-user] [JBossWS] - A question about a deployed JSR181 web service and the WSDL

2006-06-29 Thread yair.zaslavsky
Hi all, I developed a JSR181 web service, and deployed it. I then looked inside my jboss application server directories and saw that the deployment generated a wsdl file (the WSDL is generated in sever\default\default\tmp\jbossws How can I control on the directory where the WSDL is deployed? I lo

[JBoss-user] [Beginners Corner] - A question about developing a JSR181 web service (newbie que

2006-06-29 Thread yair.zaslavsky
Hi all, I developed a web service using jsr-181 that looks like this (i actually took most of the code from jboss wiki). @WebService(name = "EndpointInterface", targetNamespace = "http://org.jboss.ws/samples/jsr181ejb";, serviceName = "TestService")