473,795 Members | 2,812 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

soap extension type incorrect

Hi. I have been having trouble getting one of a customer's production
servers to respond to a SOAP request the way the other server does
(properly, that is). After much cluelessness due to the lack of SOAP
knowledge, I have figured out how to get the actual error that is occuring:

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: <soapExtensionT ypes>
Line 29: <add type="Microsoft .Web.Services.W ebServicesExten sion,
Microsoft.Web.S ervices, Version=1.0.0.0 , Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" priority="1" group="0" />
Line 30: </soapExtensionTy pes>
Line 31: </webServices>

This type setting is identical to the other server. I am guessing that
Microsoft.Web.S ervices.WebServ icesExtension is a library and I am not
pointing to it correctly on this server. Is my guesswork right. How do I
determine the correct TYPE to use?

(Since I blew up this server this morning, my brain may not be fully
functional. Thanks for your patience.)

S
Nov 21 '05 #1
2 2646

"Stephanie Stowe" <No****@IWishIC ould.com> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Hi. I have been having trouble getting one of a customer's production
servers to respond to a SOAP request the way the other server does
(properly, that is). After much cluelessness due to the lack of SOAP
knowledge, I have figured out how to get the actual error that is occuring:
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: <soapExtensionT ypes>
Line 29: <add type="Microsoft .Web.Services.W ebServicesExten sion, Microsoft.Web.S ervices, Version=1.0.0.0 , Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" priority="1" group="0" />
Line 30: </soapExtensionTy pes>
Line 31: </webServices>

This type setting is identical to the other server. I am guessing that
Microsoft.Web.S ervices.WebServ icesExtension is a library and I am not
pointing to it correctly on this server. Is my guesswork right. How do I
determine the correct TYPE to use?

(Since I blew up this server this morning, my brain may not be fully
functional. Thanks for your patience.)


Microsoft.Web.S ervices.WebServ icesExtension is WSE (Web Services
Enhancements) 1.0. Do you have WSE 1.0 installed on the server?

Regards,
Sami

Nov 21 '05 #2

"Sami Vaaraniemi" <sa**********@p leasejippii.fi> wrote in message
news:#v******** ******@TK2MSFTN GP11.phx.gbl...

"Stephanie Stowe" <No****@IWishIC ould.com> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Hi. I have been having trouble getting one of a customer's production
servers to respond to a SOAP request the way the other server does
(properly, that is). After much cluelessness due to the lack of SOAP
knowledge, I have figured out how to get the actual error that is

occuring:

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: <soapExtensionT ypes>
Line 29: <add

type="Microsoft .Web.Services.W ebServicesExten sion,
Microsoft.Web.S ervices, Version=1.0.0.0 , Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" priority="1" group="0" />
Line 30: </soapExtensionTy pes>
Line 31: </webServices>

This type setting is identical to the other server. I am guessing that
Microsoft.Web.S ervices.WebServ icesExtension is a library and I am not
pointing to it correctly on this server. Is my guesswork right. How do I
determine the correct TYPE to use?

(Since I blew up this server this morning, my brain may not be fully
functional. Thanks for your patience.)


Microsoft.Web.S ervices.WebServ icesExtension is WSE (Web Services
Enhancements) 1.0. Do you have WSE 1.0 installed on the server?

Regards,
Sami


No I did not. Now I do. And the problem is solved. I had never seen anything
about SOAP and did not write the code that I was troubleshooting . So I had
never heard of WSE. Live and learn.

Thanks for the help.
Nov 21 '05 #3

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

Similar topics

0
2627
by: David | last post by:
Hi everyone, I wonder how is it possible to make PHP SOAP extension convert the returned complex type to an instance of one of my classes. Here I give you a short example: complexTest.wsdl: <?xml version="1.0" encoding="UTF-8"?>
0
2428
by: Doug Farrell | last post by:
Hi everyone, I'm trying to build a program to interface to a SOAP/XML interface provided by one of our vendors. This interface is built with MS SOAP Toolkit 3.0, so I'm guessig they are running a .NET server. I'm trying to build my program with Python as I've got to deploy on both Linux and Sun/Solaris platforms. I'm developing on RedHat Linux 8.0 using Python 2.2.1 and SOAPpy 0.10.2. My experimental program almost works, but it isn't...
2
9577
by: mkosca01 | last post by:
Hello, I have recently downloaded and installed the Soap Toolkit 3.0 from microsoft. I have successfully created the example web service DocSample1 and am able to run this from the command line using the following .vbs file. Option Explicit Dim soapClient3
1
5728
by: David C. allen | last post by:
I have created a simple Client-side SOAP Extension for a webclass that I have. When I apply the extension attribute to the the calling function in the proxy class I get an error 'Value cannot be null'. When the extension attribute is not applied it runs fine. The wierd thing is that it does not appear to be an error within the SOAP extension because I break-pointed it and when the proxy function gets called the SOAP extension runs fine....
4
6031
by: pepcag | last post by:
I used http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconalteringsoapmessageusingsoapextensions.asp as a template to create a very simple web method with soap extension. The code like this: public string HelloWorld() { return "Hello World.";
4
2662
by: Jit Prasad | last post by:
I have been consuming a IBM Websphere (Java) web service using .Net 1.0 front end writen in VB.NET. The proxy class submits a soap request and gets a soap response. When I migrated the front-end to .NET1.1, the response from the web service appears as null in the proxy class. This only happens with .NET1.1, .NET1.0 is ok and works fine. I have played around with the System.Web.Services.Protocols.SoapDocumentMethodAttribute, but no luck....
3
9796
by: parrot toes | last post by:
Summary: I have been trying to make requests of a web service provided by Axis using a dotnet client with code generated by wsdl.exe and have been getting exceptions when trying to process the response. As a result of seraching news groups I guessed that the SOAP response defines an array element in a way that causes the dotnet deserialization routines to put the content in a generic object array (object) BUT the content is supposed to...
4
6519
by: Ramon de Klein | last post by:
I have created a SOAP extension that can be enabled using a SoapExtensionAttribute. This attibute holds two additional properties that are used to configure the SOAP extension. This works fine, but I often want to use the SOAP extension from my web.config file and I have no idea how to configure it. The SOAP extension's GetInitializer method only receives the type of the webservice, but that isn't very useful for me. Adding the attribute...
0
4369
by: Matt Wood | last post by:
Hi, I have written a Web Service for a customer which expects a SOAP message with Document/Literal encoding, and uses RoutingStyle=SoapServiceRoutingStyle.RequestElement to route the SOAP body message to my Web Method. The Web Method expects a string as its parameter and then feeds that string to an XML deserializer which maps the XML elements contained within the string to my custom objects, then performs an insert/update on an SQL...
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10443
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10165
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10002
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9044
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7543
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6783
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5565
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.