I have a WSDL: http://kinkom.dk/WCFAPP/SI_CreateSM_OB_7.wsdl (I have changed address location).
My code is for accessing data from SAP via WSDL; bind that to .NET control as well as sending data from .NET control to SAP via same WSDL.
The code is like below:
// instantiating web service method, web service name is : Webrefence_SM_New2
Webrefence_SM_New2.DT_CreateSM_CR ReqDT = new Webrefence_SM_New2.DT_CreateSM_CR();
Webrefence_SM_New2.DT_SM_Response RespDT;
// instantiate cookie to hold the session
CookieContainer cookie = new CookieContainer();
// Make a proxy of webservice
Webrefence_SM_New2.SI_CreateSM_OBService _proxy1 = new Webrefence_SM_New2.SI_CreateSM_OBService();
_proxy1.Credentials = new NetworkCredential("xxx", "xxx"); // use credential to acess to the SAP system
_proxy1.CookieContainer = cookie;
// binding user input
ReqDT.B_Xn_Type = DDLBusinessTrnscType.SelectedValue;
ReqDT.BP_Function1 = "";
ReqDT.BP_Function2 = "";
ReqDT.BP_Function3 = "";
ReqDT.BP_Function4 = "";
// Error come here when I am assiging a string value
ReqDT.ResourceType[0].Val = "ab";
//The error is: Null Reference Exception {"Object reference not set to an instance of an object."}
// getting output from WSDL
RespDT = _proxy1.SI_CreateSM_OB(ReqDT);
// Presenting the output to GUI
Lblmessageresponse.Text = Convert.ToString(RespDT.Status);
On the other way, When I am binding data with .net control at from load event then there is a no problem.
The code is like below:
Webrefence_SM_New2.DT_SM_InputHelp_Request IncomingtypeReq = new Webrefence_SM_New2.DT_SM_InputHelp_Request();
Webrefence_SM_New2.DT_SM_InputHelp IncomingTypeResp;
// instantiate cookie to hold the session
CookieContainer cookie = new CookieContainer();
// Make a proxy of webservice
Webrefence_SM_New2.SI_CreateSM_OBService _proxy1 = new Webrefence_SM_New2.SI_CreateSM_OBService();
_proxy1.Credentials = new NetworkCredential("xxx", "xxx"); // use credential to acess to the SAP system
_proxy1.CookieContainer = cookie;
IncomingtypeReq.OptionalText = "op";
IncomingTypeResp = _proxy1.SI_GetInputHelp(IncomingtypeReq);
// Bind value to Drop down list
DDLStatus.DataSource = IncomingTypeResp.Status;
DDLStatus.DataTextField = "val";
DDLStatus.DataValueField = "val";
DDLStatus.DataBind();
It will be great if anyone can help me out how to fix the null reference error.
ReqDT.ResourceType = new DT_Value[10];. Use whatever size you need if not 10. Then for eachResourceTypeyou need to do something likeReqDT.ResourceType[0] = new DT_Value();. – John Saunders Mar 10 '11 at 18:05null, which gives youNullReferenceException. – John Saunders Mar 17 '11 at 18:08