error while executing SSIS package with web servic

2019-03-03 19:10发布

Description: An error occurred with the following error message: "Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebserviceTaskException: The Web Service threw an error during method execution. The error is: Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'. The request failed with the error message: -- IIS 7.5 Detailed Error - 500.24 - Internal Server Error

Server Error in Application "DEFAULT WEB SITE"

Internet Information Services 7.5

Error Summary

HTTP Error 500.24 - Internal Server Error

An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

Detailed Error Information

2条回答
一纸荒年 Trace。
2楼-- · 2019-03-03 19:54

change your web.config like this:

<system.webServer> 
<validation validateIntegratedModeConfiguration="false" /> 
</system.webServer>
查看更多
We Are One
3楼-- · 2019-03-03 20:03

Change your application pool properties to:

.NET Framework Version
-- .NET Framework *version*

Pipeline Mode
-- Classic
查看更多
登录 后发表回答