This example will show you how to fetch data from SuccessFactor (oData V2 Message Protocal) with a specific page size. For example, if your data has 10,000 total records and each record consists of 20 child nodes (the result size is around 10MB), you can fetch data by 500 records per request by using Loop Process Call. # My integration process consists of 1. Content Modifier " Initial Data " which I declare property "fetchData". 2. Loop Process Call " Loop Fetch Data " which calls Local Integration Process " Fetch Data From SF ". 3. Groovy Script which writes data from property "fetchData" in an attachment format. This example will focus on step 2 - Loop Process Call & Local Integration Process. # Local Integration Process "Fetch Data from SF". How does it work? 1. Use Request Reply to call SuccessFactor to get data 500 records per request. 2. Use Groovy Script to get some fields and return in XML format. 3. Use XML to CS...
public String encriptStringByMD5(String input) { String output; //The encoder class used to convert strPlainText to an array of bytes Encoding enc = Encoding.GetEncoding("windows-874"); //Create an instance of the MD5CryptoServiceProvider class MD5CryptoServiceProvider md5Hasher = new MD5CryptoServiceProvider(); //Call ComputeHash, passing in the plain-text string as an array of bytes //The return value is the encrypted value, as an array of bytes Byte[] hashedDataBytes = md5Hasher.ComputeHash(enc.GetBytes(input)); output = Convert.ToBase64String(hashedDataBytes,0,hashedDataBytes.Length ); //output = BitConverter.ToString(hashedDataBytes); return o...
Step1. Add "htmltooltip.js" into <head> tag in your HTML See "htmltooltip.js" source code here Step2. Insert this stylesheet script in <head> tag in your HTML <style type="text/css"> div.htmltooltip { position: absolute; /*leave this and next 3 values alone*/ z-index: 1000; left: -1000px; top: -1000px; background: #EEEEEE; border: 2px solid black; color: black; padding: 3px; width: 250px; /*width of tooltip*/ } </style> In <body> tag. Add your tooltips text to <div class="htmltooltip"></div>. Example. <a href="#" rel="htmltooltip"> Displaying My tooltip text </a> <div class="htmlt...