Connecting Tech Pros Worldwide Forums | Help | Site Map

Window Service Stopped

Newbie
 
Join Date: Jul 2008
Posts: 13
#1: Aug 5 '08
Greetings All,

This is my first time creating a Window Service and I am having this error message when I try to start my window service (currently known as Service1). Below is my code for Window Service and also the line which I suspected is the caused of the problem.

Expand|Select|Wrap|Line Numbers
  1. Protected Overrides Sub OnStart(ByVal args() As String)
  2.         Dim i As Integer
  3.         i = Shell("\\202.186.196.128\c$\Inetpub\wwwroot\WebAdmin\Rewards\print.exe", vbNormalFocus)
  4.         Dim fs As FileStream = New FileStream("c:\temp\mcWindowsService.txt", FileMode.OpenOrCreate, FileAccess.Write)
  5.         Dim m_streamWriter As StreamWriter = New StreamWriter(fs)
  6.         m_streamWriter.BaseStream.Seek(0, SeekOrigin.End)
  7.         m_streamWriter.WriteLine("BLPrinting Service: Service Started at " & Date.Now & Constants.vbLf)
  8.         m_streamWriter.Flush()
  9.         m_streamWriter.Close()
  10. End Sub
  11.  
  12. Protected Overrides Sub OnStop()
  13.         Dim fs As FileStream = New FileStream("c:\temp\mcWindowsService.txt", FileMode.OpenOrCreate, FileAccess.Write)
  14.         Dim m_streamWriter As StreamWriter = New StreamWriter(fs)
  15.         m_streamWriter.BaseStream.Seek(0, SeekOrigin.End)
  16.         m_streamWriter.WriteLine("BLPrinting Service: Service Stopped at " & Date.Now & Constants.vbLf)
  17.         m_streamWriter.Flush()
  18.         m_streamWriter.Close()
  19. End Sub
Above are the START and STOP functions for my Window Service, which I got it from some online tutorial. Since my window service is intended to call an EXE from a specific folder, hence I added in the 2 new lines, which I bolded. When I try to start my service again, it pops me this message:

The Service1 service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service.

For your information, my window service was working fine before I added in the 2 new lines of code. Maybe they way I'm supposed to call an EXE is incorrect. Please correct me if I'm wrong.

Thank you very much.

Best Regards
Gray d' Newbie

jhardman's Avatar
Moderator
 
Join Date: Jan 2007
Location: logan, utah
Posts: 2,690
#2: Aug 6 '08

re: Window Service Stopped


Is this ASP.NET (.aspx file extension) or classic ASP (.asp)?

Jared
Newbie
 
Join Date: Jul 2008
Posts: 13
#3: Aug 11 '08

re: Window Service Stopped


Hi jhardman,

Is merely an ASP page

Thank you very much

Best Regards
Gray d' Newbie
Reply


Similar ASP / Active Server Pages bytes