XML Logging: Difference between revisions

96 bytes removed ,  22 February 2019
m
add syntax highlighting
m (add syntax highlighting)
m (add syntax highlighting)
Line 38: Line 38:
First you define your service (and get it running on IIS):
First you define your service (and get it running on IIS):


  Object oLogSample is a cWebService<br />
<source lang="dataflex">
  Object oLogSample is a cWebService
   { Published = True  }
   { Published = True  }
   { Description = "Interface for sending something to the system" }
   { Description = "Interface for sending something to the system" }
   Procedure  SendSomething tSomeDocumentType Doc<br />
   Procedure  SendSomething tSomeDocumentType Doc
       <span style="color:green;">// Code that actually does stuff...</span><br />
       // Code that actually does stuff...
   End_Procedure  <span style="color:green;">// SendSomething</span><br />
   End_Procedure  // SendSomething
  End_Object  <span style="color:green;">// oLogSample</span><br />
  End_Object  // oLogSample
</source>


====Step 2: Create a Client====
====Step 2: Create a Client====