Delphi-Kylix
  Home arrow Delphi-Kylix arrow Page 2 - Internet Access: Client Service
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
DELPHI-KYLIX

Internet Access: Client Service
By: David Web
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2008-10-13

    Table of Contents:
  • Internet Access: Client Service
  • The service application code
  • Code Explained
  • To Install/Uninstall the service

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Internet Access: Client Service - The service application code


    (Page 2 of 4 )

    So far we have looked at what a service is and how it works. Now we will write the code to make our service active. Before we write the code, let's look at what we want our service to do.

    Basically we want it to see if the client application is running. If it is not, then we want it to start the application, otherwise we want it to do nothing. The service must check every couple of seconds or minutes (depending on your choice) to see if the client application is active.

    Below is the entire service application code. Note that I’ve now saved the unit as “icstarter.” I’ve also added a timer component. The following properties are set:


    Displayname: iCafeService

    Servicetype: stWin32

    Starttype: stAuto

    Interactive: True (for debugging purposes)


    unit icstarter;


    interface


    uses

    Windows, Messages, SysUtils, Classes, Graphics, Controls, SvcMgr, Dialogs,

    ExtCtrls,shellapi;


    type

    TService1 = class(TService)

    Timer1: TTimer;

    procedure Timer1Timer(Sender: TObject);

    procedure ServiceExecute(Sender: TService);

    private

    { Private declarations }

    public

    function GetServiceController: TServiceController; override;

    { Public declarations }

    end;


    var

    Service1: TService1;


    implementation


    {$R *.DFM}


    procedure ServiceController(CtrlCode: DWord); stdcall;

    begin

    Service1.Controller(CtrlCode);

    end;


    function TService1.GetServiceController: TServiceController;

    begin

    Result := ServiceController;

    end;


    procedure TService1.ServiceExecute(Sender: TService);

    begin

    //activate the client application here

    timer1.Enabled:=true;

    while not terminated do

    servicethread.ProcessRequests(true);

    timer1.Enabled:=false;

    end;


    procedure TService1.Timer1Timer(Sender: TObject);

    var

    handle,h: HWND;

    begin

    handle:= FindWindow('TForm1', 'iClient');

    if handle > 0 then

    begin

    showmessage('found it!');

    end

    else

    begin

    //startup the app here. Shellexec

    shellexecute(h,'open','c:\intertimer\client\iclient.exe',nil,nil,0);

    end;


    end;


    end.


    More Delphi-Kylix Articles
    More By David Web


     

    DELPHI-KYLIX ARTICLES

    - Loading an XML Document into the DOM
    - Delphi Wrapper Classes and XML
    - Delphi and the DOM
    - Delphi and XML
    - Internet Access: Client Service
    - Finishing the Client for an Internet Access ...
    - The Client for an Internet Access Control Ap...
    - User Management for an Internet Access Contr...
    - Important Procedures for an Internet Access ...
    - Server Code for an Internet Access Control A...
    - Constructing the Interface for an Internet A...
    - Building a Server Application for an Interne...
    - Building an Internet Access Control Applicat...
    - Client Dataset: Working with Data Packets an...
    - Using the Client Dataset in an N-Tiered Appl...







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek