views:

180

answers:

3

I'm trying to use the desktop class in client/server application.

I want the default browser to open on the client side when the client clicks on a button. What happens is that the browser opens on the server. How can I fix it?

Thanks

A: 

Its browser specific,

Fiddle with the following setting, in IE:

Change the settings in IE to open a new window. As you pointed out the settings is available in

Tools->Internet Options->Advanced->Reuse Windows for shortcuts
Suraj Chandran
A: 

Its browser specific,

Fiddle with the following setting, in IE:

Change the settings in IE to open a new window. As you pointed out the settings is available in

Tools->Internet Options->Advanced->Reuse Windows for shortcuts

Check this answer

Suraj Chandran
That doesn't have anything to do with the question as far as I see.
Joachim Sauer
A: 

If you call any Desktop method on the server, then of course the reaction will occur on the server.

If you want a window to pop up on the client, then call the method on the client.

What kind of client are you using?

If you're using a rich Java client, then that change should be relatively easy.

Joachim Sauer
I have an application that run in JBoss, and clients use throught internet (by IP). When client use the application this should run in client machine and not in server machine.
Duarte
@Duarte: what client are you using? Did you write that yourself? Is the client using a web browser?
Joachim Sauer
yes, it was write for me! For access to client you use an link that download a "*.jnlp" from server and run the application.
Duarte