[jboss-user] [Installation, Configuration DEPLOYMENT] - Exclude folder from deployment

2008-02-22 Thread abondi
Hello everybody,
how can I exclude a folder from being deployed?

I mean: I have a jar containing a folder named components. In this folder 
there are few jars which are automatically deployed when I copy my original jar 
in the deploy folder.
How can I prevent JBoss from doing this? I want to deploy the original jar but 
not my jars contained in the components folder inside the first jar.

Thank you very much!

Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4131498
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Exclude folder from deployment

2008-02-22 Thread abondi
I found something like the solution you propose in this forum.

The problem is that I'd like to do this without touching jboss-service.xml 
configuration file but only modifying my META-INF/jboss-app.xml file, inside 
the container jar.

Thank you very much for your interest!

Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4131509
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - Array as param type when invoking an MBean

2008-02-12 Thread abondi
Hello everybody,
I need to transfer a file using a byte array. How can I do this?

I mean, the MBean has a method:

public boolean fileUpload(byte[] bytes, String filename);

And I want to invoke this using:

boolean uploaded = (Boolean)(server.invoke(client, fileUpload, params, sign));

Where params is a {byte[]}, how do I fill sign[]?

Thank you!
Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128701
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - Re: Retrieve Root Path

2008-02-11 Thread abondi
Thank you for your interest,
I want to find the path of the directory where the MBean is deployed. The 
subdirectory of deploy in jboss.
I.E. if my MBean is example.ear it will deploy under 
jboss/server/default/deploy/example.ear/ and I want to retrieve the absolute 
path of this string.

Thank you
Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128281
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - Retrieve Root Path

2008-02-10 Thread abondi
Hi everybody,
I must retrieve the root path of my MBean. Is there any method to do this?

Thank you
Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128191
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - File Transfer using MBeans

2008-02-08 Thread abondi
Hello everybody,
I'm trying to develop ad MBean that can manage very simple file transfer over 
the net.

I don't need any standard protocol, only simple file transfer from a client, 
written in java, and a server, and I wanted to do this using MBeans.

Do you have any suggestion/example?

Thank you!
Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4127735
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - Re: File Transfer using MBeans

2008-02-08 Thread abondi
My idea is to open a ServerSocket when in the MBean is invoked one particular 
method, then connect from the client to this socket, transfer the file and 
close the ServerSocket.

Is there any better method to do this?

Thank you
Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4127750
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Local Deployment using JSP Servlet

2008-02-05 Thread abondi
I'm developing an application that must deploy ears using jsp and servlet.

It's like an installer for j2ee applications: receives the request to deploy a 
package (war or ear) and ask the application server where it's hosted to deploy 
the specified package.

I think it can be done using jsp, servlets and, maybe, MBeans.

Thank you very much!

Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126488
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - Jboss Remote Deploy using MBeans

2008-02-05 Thread abondi
I'm studying for remote deploying of ears using MBeans. I found the 
RemoteDeployer class.

Is there any example of remote deploy?

Thank you very much!

Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126485
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Confirmation of Deploy

2008-02-04 Thread abondi
I'm developing a deployer for J2EE applications.
I need to deploy applications composed by many ears and to be distributed in 
different computers. They are tightly linked and dependent, so order of deploy 
is important.

Is there a way to verify if one application is correctly deployed in one 
computer?

Where can I find more information about remote deploy of packages?

Thank you very much, is for my degree! :)

Bye
Andrea

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126261
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user