|
From: Tested J. +ve <rak...@gm...> - 2009-02-16 09:05:17
|
Hi all, I have a RMI-Application,which runs fine as Standalone.But after starting the application as a service it start's the required exe's in process tree but not as a application. The Structure is a Client/Administrator will start a particular exe on a machine on which the Service is running. I have created the Service for the RMI-Server specific files using Wrapper. After starting the java.exe process the service starts the exes but in as process and doesn't pop up the application window. For eg:If I request to start a mspaint the process mspaint.exe starts but doesnot pop up the paint window... Can any one find the bottleneck in this Thanks in Advance -- View this message in context: http://www.nabble.com/Problem-in-running-the-Application-as-a-Service-tp21972495p21972495.html Sent from the Java Service Wrapper mailing list archive at Nabble.com. |
|
From: Leif M. <le...@ta...> - 2009-02-18 08:33:43
|
This could be getting caused by any number of things. I would need more information to say for sure. My first guess is that your service is not being run as an interactive service. That alone would explain why the GUI is not visible. See this page: http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html Cheers, Leif On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve <rak...@gm...> wrote: > > > Hi all, > > I have a RMI-Application,which runs fine as Standalone.But after starting > the application as a service > it start's the required exe's in process tree but not as a application. > > The Structure is a Client/Administrator will start a particular exe on a > machine on which the Service is running. > > I have created the Service for the RMI-Server specific files using Wrapper. > > After starting the java.exe process the service starts the exes but in as > process and doesn't pop up the > application window. > > For eg:If I request to start a mspaint the process mspaint.exe starts but > doesnot pop up the paint window... > > Can any one find the bottleneck in this > > Thanks in Advance |
|
From: Tested J. +ve <rak...@gm...> - 2009-02-18 09:25:02
|
Hi Leif, Thanks for the reply.. Hey Cheers its working Now! Environment:Windows Vista Ultimate I made the following changes to the config file. # Allow the service to interact with the desktop. wrapper.ntservice.interactive=true wrapper.ntservice.hide-console=false Now when I enter any command,I get a interactive desktop pop-up and I can work on the started exe. Can we somehow stop this pop-up and open the exe directly,without any pop-up Also I saw a strange process tree. Now their is no java process or any-thing related to java in the process tree after the service is started. Why is this? I am confused how its working !!!!!! without a java process ... Thanks Tested Java +ve wrote: > > > Hi all, > > I have a RMI-Application,which runs fine as Standalone.But after starting > the application as a service > it start's the required exe's in process tree but not as a application. > > The Structure is a Client/Administrator will start a particular exe on a > machine on which the Service is running. > > I have created the Service for the RMI-Server specific files using > Wrapper. > > After starting the java.exe process the service starts the exes but in as > process and doesn't pop up the > application window. > > For eg:If I request to start a mspaint the process mspaint.exe starts but > doesnot pop up the paint window... > > Can any one find the bottleneck in this > > Thanks in Advance > > -- View this message in context: http://www.nabble.com/Problem-in-running-the-Application-as-a-Service-tp21972495p22075087.html Sent from the Java Service Wrapper mailing list archive at Nabble.com. |
|
From: Leif M. <lei...@ta...> - 2009-02-18 10:05:18
|
I am not sure what you are referring to by the desktop pop-up? As for the process tree, what does your wrapper.log look like? My guess is that the Java and Wrapper processes are ending after your child EXE is launched. The Wrapper does not do anything to control child processes and if it is not killed by your java application, it will continue to run in the background. Cheers, Leif On Wed, Feb 18, 2009 at 6:24 PM, Tested Java +ve <rak...@gm...> wrote: > > Hi Leif, > > Thanks for the reply.. > > Hey Cheers its working Now! > > Environment:Windows Vista Ultimate > > I made the following changes to the config file. > > > # Allow the service to interact with the desktop. > wrapper.ntservice.interactive=true > wrapper.ntservice.hide-console=false > > Now when I enter any command,I get a interactive desktop pop-up and I can > work on the started exe. > > Can we somehow stop this pop-up and open the exe directly,without any pop-up > > Also I saw a strange process tree. > > Now their is no java process or any-thing related to java in the process > tree after the service is started. > > Why is this? I am confused how its working !!!!!! without a java process ... > > Thanks > > > Tested Java +ve wrote: >> >> >> Hi all, >> >> I have a RMI-Application,which runs fine as Standalone.But after starting >> the application as a service >> it start's the required exe's in process tree but not as a application. >> >> The Structure is a Client/Administrator will start a particular exe on a >> machine on which the Service is running. >> >> I have created the Service for the RMI-Server specific files using >> Wrapper. >> >> After starting the java.exe process the service starts the exes but in as >> process and doesn't pop up the >> application window. >> >> For eg:If I request to start a mspaint the process mspaint.exe starts but >> doesnot pop up the paint window... >> >> Can any one find the bottleneck in this >> >> Thanks in Advance |
|
From: Tested J. +ve <rak...@gm...> - 2009-02-18 10:58:53
|
Hi Lief, I just want to give you a high level feature of my application. My application starts a exe (for example notepad,silktest ..etc) on a system on which the Service is running,when a user enter's a command I am using Java-RMI technology to do it. What I meant by pop-up is : Now when I am entering a command to start a particular exe,I get a message of interactive services dialog detection and when I click it,it takes me to a screen where it shows the window of the exe opened by the application and prompts me to return to the desktop,after completing my tasks on the opened exe. Can we somehow block this pop-up message and open a exe directly with-out this dialog. I am using a Runtime.exe in my application to start the user command. Also I am using Apache Tomcat in the following way: It displays a page on which user enters the IP and command. I have stored all the specific class files required,for the application to start, do we need to store any kind of Wrapper Specific Files in tomcat's lib directory. Thanks .... Tested Java +ve wrote: > > > Hi all, > > I have a RMI-Application,which runs fine as Standalone.But after starting > the application as a service > it start's the required exe's in process tree but not as a application. > > The Structure is a Client/Administrator will start a particular exe on a > machine on which the Service is running. > > I have created the Service for the RMI-Server specific files using > Wrapper. > > After starting the java.exe process the service starts the exes but in as > process and doesn't pop up the > application window. > > For eg:If I request to start a mspaint the process mspaint.exe starts but > doesnot pop up the paint window... > > Can any one find the bottleneck in this > > Thanks in Advance > > -- View this message in context: http://www.nabble.com/Problem-in-running-the-Application-as-a-Service-tp21972495p22076397.html Sent from the Java Service Wrapper mailing list archive at Nabble.com. |
|
From: Tested J. +ve <rak...@gm...> - 2009-03-02 11:56:53
|
Hi Leif, Now I am able to see the GUI's. But I m caught in a another scenario.. I found out that the service running my application doesn't start any kind of java.exe or javaw.exe process. but it run's the client request. Also its mandatory for my application to start the exe without any User interaction. Because currently I have to select between the current desktop and interactive desktop which is being poped up by user request.In my case there will be no one to select between these options on the remote machine on which the service is running. How can we avoid this? Environment:Windows Vista Home Basic JRE : 6 Leif Mortenson-2 wrote: > > This could be getting caused by any number of things. I would need > more information to say for sure. > > My first guess is that your service is not being run as an interactive > service. That alone would explain why the GUI is not visible. > See this page: > http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html > > Cheers, > Leif > > On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve <rak...@gm...> > wrote: >> >> >> Hi all, >> >> I have a RMI-Application,which runs fine as Standalone.But after starting >> the application as a service >> it start's the required exe's in process tree but not as a application. >> >> The Structure is a Client/Administrator will start a particular exe on a >> machine on which the Service is running. >> >> I have created the Service for the RMI-Server specific files using >> Wrapper. >> >> After starting the java.exe process the service starts the exes but in as >> process and doesn't pop up the >> application window. >> >> For eg:If I request to start a mspaint the process mspaint.exe starts but >> doesnot pop up the paint window... >> >> Can any one find the bottleneck in this >> >> Thanks in Advance > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, > CA > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > -Strategies to boost innovation and cut costs with open source > participation > -Receive a $600 discount off the registration fee with the source code: > SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > > -- View this message in context: http://www.nabble.com/Problem-in-running-the-Application-as-a-Service-tp21972495p22286854.html Sent from the Java Service Wrapper mailing list archive at Nabble.com. |
|
From: Leif M. <lei...@ta...> - 2009-03-03 04:46:18
|
Windows Vista Handles Interactive services quite differently than previous versions of Windows. http://msdn.microsoft.com/en-us/library/ms683502.aspx For security reasons, it no longer allows interactive services to run along side other non-secure applications as they can access each other via their windows. To avoid this, the servicee is forced to display itself in an isolated desktop. I believe that is what you are seeing. I am going to do some more research on this and come up with a suggested way of handling this. Cheers, Leif On Mon, Mar 2, 2009 at 8:56 PM, Tested Java +ve <rak...@gm...> wrote: > > Hi Leif, > > Now I am able to see the GUI's. > > But I m caught in a another scenario.. > > I found out that the service running my application doesn't start any kind > of java.exe or javaw.exe process. > > but it run's the client request. > > Also its mandatory for my application to start the exe without any User > interaction. > > Because currently I have to select between the current desktop and > interactive desktop which is being poped up by user request.In my case there > will be no one to select between these options on the remote machine on > which the service is running. > > How can we avoid this? > > Environment:Windows Vista Home Basic > JRE : 6 > > > Leif Mortenson-2 wrote: >> >> This could be getting caused by any number of things. I would need >> more information to say for sure. >> >> My first guess is that your service is not being run as an interactive >> service. That alone would explain why the GUI is not visible. >> See this page: >> http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html >> >> Cheers, >> Leif >> >> On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve <rak...@gm...> >> wrote: >>> >>> >>> Hi all, >>> >>> I have a RMI-Application,which runs fine as Standalone.But after starting >>> the application as a service >>> it start's the required exe's in process tree but not as a application. >>> >>> The Structure is a Client/Administrator will start a particular exe on a >>> machine on which the Service is running. >>> >>> I have created the Service for the RMI-Server specific files using >>> Wrapper. >>> >>> After starting the java.exe process the service starts the exes but in as >>> process and doesn't pop up the >>> application window. >>> >>> For eg:If I request to start a mspaint the process mspaint.exe starts but >>> doesnot pop up the paint window... >>> >>> Can any one find the bottleneck in this >>> >>> Thanks in Advance |
|
From: Tested J. +ve <rak...@gm...> - 2009-03-10 12:22:36
|
Hi Leif & all, Were you able to find out something about the interactive stuff. Regards Rakesh Leif Mortenson-3 wrote: > > Windows Vista Handles Interactive services quite differently than > previous versions of Windows. > http://msdn.microsoft.com/en-us/library/ms683502.aspx > > For security reasons, it no longer allows interactive services to run > along side other non-secure applications as they can access each other > via their windows. To avoid this, the servicee is forced to display > itself in an isolated desktop. I believe that is what you are seeing. > > I am going to do some more research on this and come up with a > suggested way of handling this. > > Cheers, > Leif > > On Mon, Mar 2, 2009 at 8:56 PM, Tested Java +ve <rak...@gm...> > wrote: >> >> Hi Leif, >> >> Now I am able to see the GUI's. >> >> But I m caught in a another scenario.. >> >> I found out that the service running my application doesn't start any >> kind >> of java.exe or javaw.exe process. >> >> but it run's the client request. >> >> Also its mandatory for my application to start the exe without any User >> interaction. >> >> Because currently I have to select between the current desktop and >> interactive desktop which is being poped up by user request.In my case >> there >> will be no one to select between these options on the remote machine on >> which the service is running. >> >> How can we avoid this? >> >> Environment:Windows Vista Home Basic >> JRE : 6 >> >> >> Leif Mortenson-2 wrote: >>> >>> This could be getting caused by any number of things. I would need >>> more information to say for sure. >>> >>> My first guess is that your service is not being run as an interactive >>> service. That alone would explain why the GUI is not visible. >>> See this page: >>> http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html >>> >>> Cheers, >>> Leif >>> >>> On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve <rak...@gm...> >>> wrote: >>>> >>>> >>>> Hi all, >>>> >>>> I have a RMI-Application,which runs fine as Standalone.But after >>>> starting >>>> the application as a service >>>> it start's the required exe's in process tree but not as a application. >>>> >>>> The Structure is a Client/Administrator will start a particular exe on >>>> a >>>> machine on which the Service is running. >>>> >>>> I have created the Service for the RMI-Server specific files using >>>> Wrapper. >>>> >>>> After starting the java.exe process the service starts the exes but in >>>> as >>>> process and doesn't pop up the >>>> application window. >>>> >>>> For eg:If I request to start a mspaint the process mspaint.exe starts >>>> but >>>> doesnot pop up the paint window... >>>> >>>> Can any one find the bottleneck in this >>>> >>>> Thanks in Advance > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, > CA > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > -Strategies to boost innovation and cut costs with open source > participation > -Receive a $600 discount off the registration fee with the source code: > SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > > -- View this message in context: http://www.nabble.com/Problem-in-running-the-Application-as-a-Service-tp21972495p22433099.html Sent from the Java Service Wrapper mailing list archive at Nabble.com. |
|
From: rakesh c. <rak...@gm...> - 2009-03-10 12:13:28
|
Hi Leif, Were you able to find out some crack for the same. Thanks! Rakesh On Tue, Mar 3, 2009 at 10:16 AM, Leif Mortenson < lei...@ta...> wrote: > Windows Vista Handles Interactive services quite differently than > previous versions of Windows. > http://msdn.microsoft.com/en-us/library/ms683502.aspx > > For security reasons, it no longer allows interactive services to run > along side other non-secure applications as they can access each other > via their windows. To avoid this, the servicee is forced to display > itself in an isolated desktop. I believe that is what you are seeing. > > I am going to do some more research on this and come up with a > suggested way of handling this. > > Cheers, > Leif > > On Mon, Mar 2, 2009 at 8:56 PM, Tested Java +ve <rak...@gm...> > wrote: > > > > Hi Leif, > > > > Now I am able to see the GUI's. > > > > But I m caught in a another scenario.. > > > > I found out that the service running my application doesn't start any > kind > > of java.exe or javaw.exe process. > > > > but it run's the client request. > > > > Also its mandatory for my application to start the exe without any User > > interaction. > > > > Because currently I have to select between the current desktop and > > interactive desktop which is being poped up by user request.In my case > there > > will be no one to select between these options on the remote machine on > > which the service is running. > > > > How can we avoid this? > > > > Environment:Windows Vista Home Basic > > JRE : 6 > > > > > > Leif Mortenson-2 wrote: > >> > >> This could be getting caused by any number of things. I would need > >> more information to say for sure. > >> > >> My first guess is that your service is not being run as an interactive > >> service. That alone would explain why the GUI is not visible. > >> See this page: > >> > http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html > >> > >> Cheers, > >> Leif > >> > >> On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve <rak...@gm...> > >> wrote: > >>> > >>> > >>> Hi all, > >>> > >>> I have a RMI-Application,which runs fine as Standalone.But after > starting > >>> the application as a service > >>> it start's the required exe's in process tree but not as a application. > >>> > >>> The Structure is a Client/Administrator will start a particular exe on > a > >>> machine on which the Service is running. > >>> > >>> I have created the Service for the RMI-Server specific files using > >>> Wrapper. > >>> > >>> After starting the java.exe process the service starts the exes but in > as > >>> process and doesn't pop up the > >>> application window. > >>> > >>> For eg:If I request to start a mspaint the process mspaint.exe starts > but > >>> doesnot pop up the paint window... > >>> > >>> Can any one find the bottleneck in this > >>> > >>> Thanks in Advance > > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, > CA > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > -Strategies to boost innovation and cut costs with open source > participation > -Receive a $600 discount off the registration fee with the source code: > SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > |
|
From: Leif M. <le...@ta...> - 2009-03-10 16:20:27
|
Rakesh, Sorry, I have not yet found any way to do this. It appears that there are some calls to show simple popup dialogs to the user. But not a full blown GUI. What exactly does your application need to display? Anyone with any input on this would be appreciated as well. Cheers, Leif On Tue, Mar 10, 2009 at 9:13 PM, rakesh chaudhary <rak...@gm...> wrote: > Hi Leif, > Were you able to find out some crack for the same. > Thanks! > Rakesh > > On Tue, Mar 3, 2009 at 10:16 AM, Leif Mortenson > <lei...@ta...> wrote: >> >> Windows Vista Handles Interactive services quite differently than >> previous versions of Windows. >> http://msdn.microsoft.com/en-us/library/ms683502.aspx >> >> For security reasons, it no longer allows interactive services to run >> along side other non-secure applications as they can access each other >> via their windows. To avoid this, the servicee is forced to display >> itself in an isolated desktop. I believe that is what you are seeing. >> >> I am going to do some more research on this and come up with a >> suggested way of handling this. >> >> Cheers, >> Leif >> >> On Mon, Mar 2, 2009 at 8:56 PM, Tested Java +ve <rak...@gm...> >> wrote: >> > >> > Hi Leif, >> > >> > Now I am able to see the GUI's. >> > >> > But I m caught in a another scenario.. >> > >> > I found out that the service running my application doesn't start any >> > kind >> > of java.exe or javaw.exe process. >> > >> > but it run's the client request. >> > >> > Also its mandatory for my application to start the exe without any User >> > interaction. >> > >> > Because currently I have to select between the current desktop and >> > interactive desktop which is being poped up by user request.In my case >> > there >> > will be no one to select between these options on the remote machine on >> > which the service is running. >> > >> > How can we avoid this? >> > >> > Environment:Windows Vista Home Basic >> > JRE : 6 >> > >> > >> > Leif Mortenson-2 wrote: >> >> >> >> This could be getting caused by any number of things. I would need >> >> more information to say for sure. >> >> >> >> My first guess is that your service is not being run as an interactive >> >> service. That alone would explain why the GUI is not visible. >> >> See this page: >> >> >> >> http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html >> >> >> >> Cheers, >> >> Leif >> >> >> >> On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve <rak...@gm...> >> >> wrote: >> >>> >> >>> >> >>> Hi all, >> >>> >> >>> I have a RMI-Application,which runs fine as Standalone.But after >> >>> starting >> >>> the application as a service >> >>> it start's the required exe's in process tree but not as a >> >>> application. >> >>> >> >>> The Structure is a Client/Administrator will start a particular exe on >> >>> a >> >>> machine on which the Service is running. >> >>> >> >>> I have created the Service for the RMI-Server specific files using >> >>> Wrapper. >> >>> >> >>> After starting the java.exe process the service starts the exes but in >> >>> as >> >>> process and doesn't pop up the >> >>> application window. >> >>> >> >>> For eg:If I request to start a mspaint the process mspaint.exe starts >> >>> but >> >>> doesnot pop up the paint window... >> >>> >> >>> Can any one find the bottleneck in this >> >>> >> >>> Thanks in Advance |
|
From: Tested J. +ve <rak...@gm...> - 2009-03-11 12:00:19
|
Leif, Thanks for the response, Hey No need to apologize Mate, My Application starts a exe for example mspaint,notepad etc on the system on which the service is running.Now when I try to start the exe from a remote machine on windows XP it starts fine without any message,but Windows Vista gives a message of interactive desktop and when I click it,it takes me to a isolated desktop. Actually I want to start a enterprise level exe using this application and I can't work on it in a isolated environment,because I need other program's running on a system.For example I need to access the attributes from other programs to run the exe,which is not possible in a isolated desktop. Everything works fine on Xp,but the requirement is for Vista..thats where the problem arises.. Cheers! Rakesh Leif Mortenson-2 wrote: > > Rakesh, > Sorry, I have not yet found any way to do this. It appears that > there are some calls to show simple popup dialogs to the user. But > not a full blown GUI. What exactly does your application need to > display? > > Anyone with any input on this would be appreciated as well. > > Cheers, > Leif > > On Tue, Mar 10, 2009 at 9:13 PM, rakesh chaudhary <rak...@gm...> > wrote: >> Hi Leif, >> Were you able to find out some crack for the same. >> Thanks! >> Rakesh >> >> On Tue, Mar 3, 2009 at 10:16 AM, Leif Mortenson >> <lei...@ta...> wrote: >>> >>> Windows Vista Handles Interactive services quite differently than >>> previous versions of Windows. >>> http://msdn.microsoft.com/en-us/library/ms683502.aspx >>> >>> For security reasons, it no longer allows interactive services to run >>> along side other non-secure applications as they can access each other >>> via their windows. To avoid this, the servicee is forced to display >>> itself in an isolated desktop. I believe that is what you are seeing. >>> >>> I am going to do some more research on this and come up with a >>> suggested way of handling this. >>> >>> Cheers, >>> Leif >>> >>> On Mon, Mar 2, 2009 at 8:56 PM, Tested Java +ve <rak...@gm...> >>> wrote: >>> > >>> > Hi Leif, >>> > >>> > Now I am able to see the GUI's. >>> > >>> > But I m caught in a another scenario.. >>> > >>> > I found out that the service running my application doesn't start any >>> > kind >>> > of java.exe or javaw.exe process. >>> > >>> > but it run's the client request. >>> > >>> > Also its mandatory for my application to start the exe without any >>> User >>> > interaction. >>> > >>> > Because currently I have to select between the current desktop and >>> > interactive desktop which is being poped up by user request.In my case >>> > there >>> > will be no one to select between these options on the remote machine >>> on >>> > which the service is running. >>> > >>> > How can we avoid this? >>> > >>> > Environment:Windows Vista Home Basic >>> > JRE : 6 >>> > >>> > >>> > Leif Mortenson-2 wrote: >>> >> >>> >> This could be getting caused by any number of things. I would need >>> >> more information to say for sure. >>> >> >>> >> My first guess is that your service is not being run as an >>> interactive >>> >> service. That alone would explain why the GUI is not visible. >>> >> See this page: >>> >> >>> >> >>> http://wrapper.tanukisoftware.org/doc/english/prop-ntservice-interactive.html >>> >> >>> >> Cheers, >>> >> Leif >>> >> >>> >> On Mon, Feb 16, 2009 at 6:05 PM, Tested Java +ve >>> <rak...@gm...> >>> >> wrote: >>> >>> >>> >>> >>> >>> Hi all, >>> >>> >>> >>> I have a RMI-Application,which runs fine as Standalone.But after >>> >>> starting >>> >>> the application as a service >>> >>> it start's the required exe's in process tree but not as a >>> >>> application. >>> >>> >>> >>> The Structure is a Client/Administrator will start a particular exe >>> on >>> >>> a >>> >>> machine on which the Service is running. >>> >>> >>> >>> I have created the Service for the RMI-Server specific files using >>> >>> Wrapper. >>> >>> >>> >>> After starting the java.exe process the service starts the exes but >>> in >>> >>> as >>> >>> process and doesn't pop up the >>> >>> application window. >>> >>> >>> >>> For eg:If I request to start a mspaint the process mspaint.exe >>> starts >>> >>> but >>> >>> doesnot pop up the paint window... >>> >>> >>> >>> Can any one find the bottleneck in this >>> >>> >>> >>> Thanks in Advance > > ------------------------------------------------------------------------------ > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > > -- View this message in context: http://www.nabble.com/Problem-in-running-the-Application-as-a-Service-tp21972495p22453649.html Sent from the Java Service Wrapper mailing list archive at Nabble.com. |