SSIS web service task cannot execute web service
I have a web service that is being called from my ssis.
Used to work in test mode, when you move to live environment I get the error:
[Web Service Task] Error: An error occurred with the following error message: "Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebserviceTaskException: Web method failed. Error: Object reference not set to object instance .. on Microsoft .SqlServer.Dts.Tasks.WebServiceTask.WebMethodInvokerProxy.InvokeMethod (DTSWebMethodInfo methodInfo, String serviceName, object connection) at Microsoft.SqlServer.Dts.Tasks.WebServicepenfoTask.WebServiceTaskUtil.WebServicepenfoTask.WebServiceTaskUtil.Variable at Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebServiceTask.executeThread () ".
We use a proxy to access the network. Could this be a proxy problem. how to solve?
thanks
a source to share
To help diagnose this, you can try using a script task and add a service link or a web link to a web service. Call the service in a try / catch block and write ex.ToString () if you get an exception. This way you will be sure to get all the details and you can post them here when you edit your question.
a source to share
