Soap Header Problem Programming Software Development by aju982007 … help me... give me the C# code for accessing this javawebservice Re: How to Enable MTOM on Asp.Net Website Programming Web Development by AjayChigurupati I am not able to view the property RequireMTOM when created proxy for the Javawebservice. Even i configured using WSE 3.0. Could any one help me in how can i get the property Require.MTOM visible for the proxy created. Re: Soap Header Problem Programming Software Development by mcriscolo The .NET Framework, in conjunction with Visual Studio has a facility to generate a proxy class for a WSDL-based SOAP web service. First, can you reference the WSDL of the service? You should be able to get to it with HTTP syntax like: [icode]http://www.somesite.com/someservice?WSDL[/icode] That will differ from site to site, but if you … Re: Soap Header Problem Programming Software Development by aju982007 [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using TestingWebservice.CustomerDetails; namespace TestingWebservice { public partial class LookUpForm : Form { public LookUpForm() { InitializeComponent();… Re: Soap Header Problem Programming Software Development by nrrbalaji I saw your code. I too have the same problem. But in .Net soap web services, the producer will defined the headers so consumer can set the value for that headers. Up to my knowledge until unless producer defined the soap headers the consumer cant set the value for that soap headers. The following is the C# code sample for producing and consuming …