RuntimeServicePostProcessInstanceComment Method |
Namespace: Advantys.Workflow.Web.Services.Processes.Runtime
Format: int
Optional Parameters.
These parameters can be used in the query string or as parameters of the SOAP headers (see examples for more information).
delegateUsername (string) | Specifies the delegator username for delegation mode. |
tag (string) | Specifies the tag value for additional information. |
geoLocationLatitude (double) | Specifies the GeoLocation latitude. |
geoLocationLongitude (double) | Specifies the GeoLocation longitude. |
geoLocationAltitude (double) | Specifies the GeoLocation altitude. |
- Post a new comment to request #1: http://yourserver:port/wfgen/ws/ProcessesRuntime.asmx/PostProcessInstanceComment?processInstanceId=1&message=Hello World!<br /> - Post a new comment to request #1 with tag and geolocation data: http://yourserver:port/wfgen/ws/ProcessesRuntime.asmx/PostProcessInstanceComment?processInstanceId=1&message=Hello World!&tag=H34GMW921&geoLocationLatitude=12.34&geoLocationLongitude=56.78&geoLocationAltitude=910.1112<br /> - Post a new comment to request #1 with delegation security access from wfgen_admin: http://yourserver:port/wfgen/ws/ProcessesRuntime.asmx/PostProcessInstanceComment?processInstanceId=1&message=Hello World!&delegateUsername=wfgen_admin
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { // Variables System.Net.HttpWebRequest httpWebReq = null; // Http web request object System.Net.HttpWebResponse httpWebResp = null; // Http web response object System.IO.StreamReader myReader = null; // To read response stream string url = string.Empty; // URL of the web method of the API string response = null; // string used to display response // Call the Web Service API method (replace yourserver and port with your hostname) url = "http://yourserver:port/wfgen/ws/ProcessesRuntime.asmx/PostProcessInstanceComment?processInstanceId=1&message=Hello World 2!"; // Prepare the request httpWebReq = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(url); httpWebReq.Method = "GET"; httpWebReq.Credentials = System.Net.CredentialCache.DefaultCredentials; httpWebReq.ContentType = "text/xml; charset=utf-8"; // Gets the stream associated with the response httpWebResp = (System.Net.HttpWebResponse)httpWebReq.GetResponse(); myReader = new System.IO.StreamReader(httpWebResp.GetResponseStream()); response = myReader.ReadToEnd(); httpWebResp.Close(); // Display the XML in the console Console.Write(response); } } }
using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Net; using System.Xml; using System.Xml.Xsl; using com.mycompany.www; <br /> public partial class _Default : System.Web.UI.Page { protected RuntimeService myRuntimeService = null; <br /> protected void Page_Load(object sender, EventArgs e) { ProcessInstanceCommentHeader myProcessInstanceCommentHeader = null; <br /> // Settings and parameters myProcessInstanceCommentHeader = new ProcessInstanceCommentHeader(); myProcessInstanceCommentHeader.Tag = "H34GMW921"; myProcessInstanceCommentHeader.GeoLocationLatitude = 12.34; myProcessInstanceCommentHeader.GeoLocationLongitude = 56.78; myProcessInstanceCommentHeader.GeoLocationAltitude = 910.1112; // Set NetworkCredentials with the credentials of the current connected user myRuntimeService = new RuntimeService(); myRuntimeService.ProcessInstanceCommentHeaderValue = myProcessInstanceCommentHeader; myRuntimeService.Credentials = CredentialCache.DefaultCredentials; <br /> // Call the Web Service API method TextBox1.Text = myRuntimeService.PostProcessInstanceComment(1, "Hello World 3!").ToString(); } } <br />