Consuming a Web Service

288 Views Asked by At

I have been working on this for two weeks and cannot quite get the answer.

I need to get data from a web service into a gridview, using Visual Studio 2012. The wdls is here: https://home-c8.incontact.com/insidews/insidews.asmx I need the https://login.incontact.com/insidews/insidews.asmx?op=DataDownloadReport_Run method.

What i have so far is:

//created service reference called icContact

//Created Credentials
icContactSR.inCredentials cr = new icContactSR.inCredentials();
cr.busNo = xxxxxx;
cr.password = "xxxxxxx";
DateTime startDate = new DateTime(2013, 12, 27, 8, 00, 00);
DateTime endDate = new DateTime(2013, 12, 27, 9, 00, 00);

//create request
icContactSR.DataDownloadReport_RunRequest request = 
    new `DataDownloadReport_RunRequest(cr, reportnumber, startDate, endDate);`

//get response
icContactSR.DataDownloadReport_RunResponse response = new    
        icContactSR.DataDownloadReport_RunResponse();


//fill dataset with response
DataSet ds = (DataSet)response.DataDownloadReport_RunResult;



GridView1.DataSource = ds.ReadXml(response.ToString());
 GridView1.DataBind();

My current error: (ds.readXml(response.toString()); Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

I feel like i am soo close to finding the answer, but I dont know if it is simply not knowing how to fill the dataset from the response or if i am getting the response back at all. Every time I run it, my dataset is null. any help will be appreciated.

1

There are 1 best solutions below

0
On

You can try this

// object to InContact Web Service reference
var client = new icContactSR.inSideWS()
{
    inCredentialsValue = new icContactSR.inCredentials()
    {
        password = ******,
        busNo = ******,
        timeZoneName = "UTC"
    }
};

DateTime startDate = new DateTime(2013, 12, 27, 8, 00, 00);
DateTime endDate = new DateTime(2013, 12, 27, 9, 00, 00);

DataSet dsCallDetails = client.DataDownloadReport_Run(report_number, startDate.ToUniversalTime(), endDate.ToUniversalTime());

GridView1.DataSource = dsCallDetails.Tables[0];
GridView1.DataBind();