I have researched all MSDN information on SoapHeaders and have built the solution the way Microsoft says to. That actually happens to be my problem. What they suggest is that you create a class derived from the SoapHeader class and include a string member to hold the value for the header. The problem is that the SoapHeader class creates the tag from the name of your derived class and then creates another tag off of your variable name within that class. I need something different, some other answer. Below is an example:
#public __gc class HostArea : public SoapHeader
{
public: String * Value;
};#
Bookmarks