OK, but you need to reference your assemblies in your web.config file.
I am having trouble understanding how to reference my web service assembly
because I don't know what its namespace or assembly name is.
The referenced namespace for WSE2 is Microsoft.Web.Services2
These are the key configs in your *.config file for WSE2.0
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<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>
<system.web>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services2.WebServicesExtension,
Microsoft.Web.Services2, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>
</system.web>
<microsoft.web.services2>
hth.

Signature
Thank you very much
Warmest Regards,
Softwaremaker
Architect | Evangelist | Consultant
+++++++++++++++++++++++++++++++++
> OK, but you need to reference your assemblies in your web.config file.
>
[quoted text clipped - 140 lines]
> > > > > > > > >
> > > > > > > > > pit.
SA - 29 Aug 2004 03:06 GMT
Yes, OK, but that's not what I meant.
I want to create web services with a custom security token manager, so I
need to know the namespace and assembly name of my own web service project,
something that doesn't seem readily available in VS 2005 (nor is it
configurable)?
How do you get around that?
It seems that you're the only one who gets this to work, so some guidance
would be really helpful, AFAICT.

Signature
Sven
> The referenced namespace for WSE2 is Microsoft.Web.Services2
>
[quoted text clipped - 176 lines]
> > > > > > > > > >
> > > > > > > > > > pit.