Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Web Services / October 2005

Tip: Looking for answers? Try searching our database.

Configuration error in web.config while accessing SOAP webservice

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Kaush - 16 Oct 2005 01:26 GMT
Hi all,

        I am creating a webservice to accept SOAP messages, parse the
message and send a SOAP response back to the client accessing my web service
using WSE-2 in ASP.NET.
        I am creating a class which derives from "SoapReceiver" class and
do the processing here. To register this class by using the HTTP protocol, I
am editing the "web.config" file. I am adding an "add" element to this config
file as follows:
        <httpHandlers>
             <add verb="*" path="MyReceiver.ashx"
type="CodeService.HttpService"/>
        </httpHandlers>

Here "HttpService" is the class I have created in "CodeService" namespace.
Also I am adding a "configSections" element to the "configuration" section of
the "web.config" file to add microsoft.web.services2 configuration section.

When I try accessing this webservice from a browser say like
"http://localhost/CodeService/CodeWebService.asmx", I get an error

Parser Error Message: Could not load type CodeService.HttpService from
assembly System.Web, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a.

Could anyone please let me know where I am going wrong?

Thanks,
kaush
Peter Kelcey - 17 Oct 2005 18:01 GMT
The type field needs the assembly name as well as the namespace and
class name

Try

<add verb="*" path="MyReceiver.ashx" type="CodeService.HttpService,
myassemblyname"/>  (change myassemblyname to whatever your assemblies
name is)

Peter Kelcey
Kaush - 17 Oct 2005 18:12 GMT
Hey Peter,

                  Thanks for the information. But still not working.  I
changed the "add" element section as follows:

<add verb="*" path="*.ashx"
type="SOAPSERVEMON.HttpService,Microsoft.Web.Services2, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

Not sure where I am going wrong.
Some more information on my "HttpService" class. I have defined it in
"SOAPSERVEMON" namespace. The class derives from the WSE's "SoapService"
class which is found in "Microsoft.Web.Services2.Messaging".

Any clue where I am going wrong.

kaushik

> The type field needs the assembly name as well as the namespace and
> class name
[quoted text clipped - 6 lines]
>
> Peter Kelcey
Peter Kelcey - 17 Oct 2005 19:20 GMT
Kaush

You need to specify your assembly, not the Microsoft assembly

Example

I create a new class called HttpService, derive it from the
Microsoft.Web.Services2.Messaging.SoapReceiver class.
My new class is in namespace SOAPSERVEMON.
The project that I've got this class in is configured to create an
assembly called asynctest.dll (You can check your assembly name by
right clicking on the project, selecting properties and looking at the
"general" section under the "common properties" folder.

Now, in order to use this class,  I would add the following section to
my web.config

<httpHandlers>
<add verb="*" path="mytest.ashx" type="SOAPSERVEMON.HTTPService,
asynctest"/>
</httpHandlers>

As you can see, you need to specific the assembly that contains your
new class, not the existing Microsoft assembly that holds the Services2
classes.

The only thing you need to watch for at this point is that your project
doesn't have a root namespace. If it does, then you will need to
include that root namespace in you web.config as well.

Example

<httpHandlers>
<add verb="*" path="mytest.ashx"
type="projectrootnamespace.SOAPSERVEMON.HTTPService, asynctest"/>
</httpHandlers>

If done this in a quick little application I through together and it
compiles and runs fine.

Hope that helps.

Peter Kelcey
Kaush - 17 Oct 2005 19:35 GMT
Hi Peter,

               Thanks a lot. That was really helpful. And it worked. I am
very new to Web Service. So bit struggling.

Thanks again.
kaush

> Kaush
>
[quoted text clipped - 39 lines]
>
> Peter Kelcey

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.