Unable to add soapExtensionTypes into web.config file
Hi,
I use Visual Web Developper 2005 beta. I have a class inherited from SoapExtension called AxisSoapExtension. This class is into my application App_Code folder.
I try to configure web.config file to declare this SoapExtension:
<?xml version="1.0"?>
<configuration>
...
<webServices>
<soapExtensionTypes>
<add type="AxisSoapExtension" priority="1" group="0"/>
</soapExtensionTypes>
</webServices>
</system.web>
</configuration>
When I start my app I have got this error:
Could not load type 'AxisSoapExtension' from assembly 'System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
If I try type="AxisSoapExtension,AxisSoapExtension" the AxisSoapExtension assemby could not be found.
In fact I don't know how to declare an assembly from a business object.
I wish not use a DLL.
I would appriciate any help.
Thanks,
Benjamin

