Skip to main content

Posts

Receiving and processing a SOAP header

The basic steps to receiving and processing a SOAP header are: Create a class deriving from SoapHeader representing the data passed in the SOAP header. Add a member to the XML Web service class or XML Web service client proxy class of the type created in step 1. Apply a SoapHeaderAttribute to the XML Web service method or the corresponding method in the proxy class, specifying the member created in step 2 in the MemberName property. Within the XML Web service method or XML Web service client code, access the MemberName property to process the data sent in the SOAP header. [from msdn ]

This project is not supported by this type of installation.

Hi, Have you ever got this error "This project is not supported by this type of installation" while try to create a new project in VS 2008. If you have got this then here is simple solution (to try ) which would solve the issue. From the Start - > Run type devenv /ResetSkipPkgs and press enter. Now you see a new instance of VS 2008 IDE opened without any error. So what was the issue? While you open the VS 2008, it might have failed to load the necessary packages which are required to open some project templates. When you use the above mentioned switch it actually finds a package which was new / not loaded previously and load that packages and the error doesn't appear now. :)