473,327 Members | 1,896 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

issue with Web.Config - where do classes live? (kinda multiposted to webservices. sorry)

Imagine that I had this

<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>

in the web.config for one of my projects (which I do). I see the add type
for hte soapExtensionTypes. The help says that this element

"Specifies the SOAP extensions to run with all XML Web services within the
scope of the configuration file. "

According to the <add help info, the first parameter is the class. Where do
I find the dll or whatever that is running on my system that this class is
referring to?

I am having an error:

Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The 'type' attribute must be set to a valid type name.

Source Error:
Line 27: <webServices>
Line 28: <soapExtensionTypes>
Line 29: <add type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
Line 30: </soapExtensionTypes>
Line 31: </webServices>
I cannot tell what a valid type name would be since I am not sure what the
current one is.

Any help would be greatly appreciated. I hope my customer does not boil me
in oil!

Thanks

Stephanie
Nov 18 '05 #1
5 1903
Well, I am thinking that Microsoft.Web.services assembly needs to be
deployed either into GAC or into the /bin directory of your application. I
am thinking that you have to install WSE (Web Services Enhancements) on that
box.

http://www.microsoft.com/downloads/d...displaylang=en

--
Girish Bharadwaj
http://msmvps.com/gbvb
"Stephanie Stowe" <No****@IWishICould.com> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Imagine that I had this

<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>

in the web.config for one of my projects (which I do). I see the add type
for hte soapExtensionTypes. The help says that this element

"Specifies the SOAP extensions to run with all XML Web services within the
scope of the configuration file. "

According to the <add help info, the first parameter is the class. Where do I find the dll or whatever that is running on my system that this class is
referring to?

I am having an error:

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The 'type' attribute must be set to a valid type name.
Source Error:
Line 27: <webServices>
Line 28: <soapExtensionTypes>
Line 29: <add type="Microsoft.Web.Services.WebServicesExtension, Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
Line 30: </soapExtensionTypes>
Line 31: </webServices>
I cannot tell what a valid type name would be since I am not sure what the
current one is.

Any help would be greatly appreciated. I hope my customer does not boil me
in oil!

Thanks

Stephanie

Nov 18 '05 #2
OK, how's this for an ignorant question. Where IS the GAC?

Thanks

S

"Girish Bharadwaj" <gi*****@mvps.org> wrote in message
news:eh**************@TK2MSFTNGP11.phx.gbl...
Well, I am thinking that Microsoft.Web.services assembly needs to be
deployed either into GAC or into the /bin directory of your application. I
am thinking that you have to install WSE (Web Services Enhancements) on that box.

http://www.microsoft.com/downloads/d...a94-2635-4d29-
a90c-28b282993a41&displaylang=en
--
Girish Bharadwaj
http://msmvps.com/gbvb
"Stephanie Stowe" <No****@IWishICould.com> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Imagine that I had this

<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>

in the web.config for one of my projects (which I do). I see the add type for hte soapExtensionTypes. The help says that this element

"Specifies the SOAP extensions to run with all XML Web services within the scope of the configuration file. "

According to the <add help info, the first parameter is the class. Where

do
I find the dll or whatever that is running on my system that this class is referring to?

I am having an error:

Description: An error occurred during the processing of a configuration

file
required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The 'type' attribute must be set to a valid type

name.

Source Error:
Line 27: <webServices>
Line 28: <soapExtensionTypes>
Line 29: <add

type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
Line 30: </soapExtensionTypes>
Line 31: </webServices>
I cannot tell what a valid type name would be since I am not sure what the current one is.

Any help would be greatly appreciated. I hope my customer does not boil me in oil!

Thanks

Stephanie


Nov 18 '05 #3
The GAC is usually in C:\WINNT\assembly

"Stephanie Stowe" wrote:
OK, how's this for an ignorant question. Where IS the GAC?

Thanks

S

"Girish Bharadwaj" <gi*****@mvps.org> wrote in message
news:eh**************@TK2MSFTNGP11.phx.gbl...
Well, I am thinking that Microsoft.Web.services assembly needs to be
deployed either into GAC or into the /bin directory of your application. I
am thinking that you have to install WSE (Web Services Enhancements) on

that
box.

http://www.microsoft.com/downloads/d...a94-2635-4d29-
a90c-28b282993a41&displaylang=en

--
Girish Bharadwaj
http://msmvps.com/gbvb
"Stephanie Stowe" <No****@IWishICould.com> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Imagine that I had this

<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>

in the web.config for one of my projects (which I do). I see the add type for hte soapExtensionTypes. The help says that this element

"Specifies the SOAP extensions to run with all XML Web services within the scope of the configuration file. "

According to the <add help info, the first parameter is the class. Where

do
I find the dll or whatever that is running on my system that this class is referring to?

I am having an error:

Description: An error occurred during the processing of a configuration

file
required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The 'type' attribute must be set to a valid type

name.

Source Error:
Line 27: <webServices>
Line 28: <soapExtensionTypes>
Line 29: <add

type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
Line 30: </soapExtensionTypes>
Line 31: </webServices>
I cannot tell what a valid type name would be since I am not sure what the current one is.

Any help would be greatly appreciated. I hope my customer does not boil me in oil!

Thanks

Stephanie



Nov 18 '05 #4
Thanks both.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:50**********************************@microsof t.com...
The GAC is usually in C:\WINNT\assembly

"Stephanie Stowe" wrote:
OK, how's this for an ignorant question. Where IS the GAC?

Thanks

Nov 18 '05 #5
In case anyone ever googles this... It was a simple case of WSE not being
installed.

Whew.

"Stephanie Stowe" <No****@IWishICould.com> wrote in message
news:Oe**************@tk2msftngp13.phx.gbl...
Imagine that I had this

<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services.WebServicesExtension,
Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>

in the web.config for one of my projects (which I do). I see the add type
for hte soapExtensionTypes. The help says that this element

"Specifies the SOAP extensions to run with all XML Web services within the
scope of the configuration file. "

According to the <add help info, the first parameter is the class. Where do I find the dll or whatever that is running on my system that this class is
referring to?

I am having an error:

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The 'type' attribute must be set to a valid type name.
Source Error:
Line 27: <webServices>
Line 28: <soapExtensionTypes>
Line 29: <add type="Microsoft.Web.Services.WebServicesExtension, Microsoft.Web.Services, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
Line 30: </soapExtensionTypes>
Line 31: </webServices>
I cannot tell what a valid type name would be since I am not sure what the
current one is.

Any help would be greatly appreciated. I hope my customer does not boil me
in oil!

Thanks

Stephanie

Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Robert | last post by:
I have a series of web applications (configured as separate applications) on a server. There is a main application at the root and then several virtual directories that are independant...
1
by: Sarge | last post by:
Hi all, tough question. Apologies for the cross posting but it is an interesting architectural problem and I think deserves a wide audience. What is the best way to extend web service proxy...
0
by: ambarishs | last post by:
Hi: We have a Flex Application hosted on IIS that uses .NET Web Services. Now the webserver is called "WebApp1". Under this site, have Webservices site called "Webservice1". Users log in using...
3
by: Joseph Geretz | last post by:
System.InvalidOperationException: WebServiceBindingAttribute is required on proxy classes. My environment: Visual Studio 2005, targeting FX 2.0; I've developed a Web Service which uses DIME to...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.