473,287 Members | 1,463 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,287 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 1901
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...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
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)...

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.