Hi Pablo,
Thanks for the information. But still it is not working. I am
not sure where I am going wrong.
Now I do this :
<httpHandlers>
<add verb="*" path="*.ashx"
type="SOAPSERVEMON.HttpService,Microsoft.Web.Services2, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpHandlers>
Tha above I add in the <system.web> section.
and also I add the following to
<configSections>
<section name="microsoft.web.services2"
type="Microsoft.Web.Services2.Configuration.WebServicesConfiguration,Microsoft.Web.Services2,
Version=2.0.0.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35" />
</configSections> to the <configuration> section.
Some information on my class:
"HttpService" class which I defined in "SOAPSERVEMON" namespace is derived
from "Soapservice". "Soapservice" is found in
"Microsoft.Web.Services2.Messaging" namespace.
> Hi Kaush,
> You need to specify the fully qualified assembly name for that type. You had
[quoted text clipped - 39 lines]
> > Thanks,
> > kaush
Pablo Cibraro - 17 Oct 2005 20:16 GMT
I mean, you have to specify the assembly name for the type
"SOAPSERVEMON.HttpService". It's a custom type defined by you so it is not
included in the WSE assembly.
The configuration should look like this:
<httpHandlers>
<add verb="*" path="*.ashx"
type="SOAPSERVEMON.HttpService,YourAssembly"/>
</httpHandlers>
Regards,
Pablo Cibraro
http://weblogs.asp.net/cibrax
> Hi Pablo,
>
[quoted text clipped - 71 lines]
>> > Thanks,
>> > kaush