using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.Script.Serialization;
using System.Web.Script.Services;
using System.Web.Services;
using System.Web.Services.Description;
using System.Web.Services.Protocols;
using Newtonsoft.Json;
using System.Net;
using System.IO;
using System.Xml;
/// <summary>
/// Summary description for OCRW
/// </summary>
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
[SoapDocumentService(SoapBindingUse.Default)]
public class OCW : System.Web.Services.WebService {
public OCW ()
{
}
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public String getOCRWDataJSON(String inputurl)
{
try
{
...
Go to the complete details ...