473,385 Members | 1,772 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,385 software developers and data experts.

ASp.NET 2.0 consumes ASp.NET 1.1 web service

GR
I have web services which was developed by third party. I Need to consume the
web services.

I am using ASP.NEt 2.0. But the web services are in 1.1.
So I developed in ASp.NET 1.1. I receive the error:
System.web.services.protocols.SoapException: Root element is missing.

I really need immediate help from any one in this forum.
1. Why I receive this Soap Exception error in 1.1?
2. How can I make compatible with 1.1 web services. Just I need to all 1.1
web services from 2.0.
3. Do I need to install 1.1 and 2.0 on the server? Does it affect any other
applications running 1.1?

Any suggestions would be appreciated.
Thank you very much
Sep 11 '06 #1
5 1424
"GR" <GR@discussions.microsoft.comwrote in message
news:99**********************************@microsof t.com...
>I have web services which was developed by third party. I Need to consume
the
web services.

I am using ASP.NEt 2.0. But the web services are in 1.1.
So I developed in ASp.NET 1.1. I receive the error:
System.web.services.protocols.SoapException: Root element is missing.
Why do you believe that this error is specific to 1.1?

John
Sep 12 '06 #2
I really need immediate help from any one in this forum.
1. Why I receive this Soap Exception error in 1.1?
Check the response. There's a problem in response... probably some fault!
2. How can I make compatible with 1.1 web services. Just I need to all 1.1
web services from 2.0.
There's nothing like 1.1 compatible or 2.0 compatible web services.
May be that the server-side users some extensions (WSE)...?
3. Do I need to install 1.1 and 2.0 on the server? Does it affect any
other
applications running 1.1?
Frankly speaking... it's impossible to guess from whatever you wrote.
Probably, you can provide the WSDL (put up on some website - just wsdl - for
us to see).

--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://www.edujinionline.com
http://articles.edujinionline.com/webservices
-------------------
Sep 13 '06 #3
But if IIS is running 1.1 and you are trying to use (configure 2.0) I have
run into the following error that shows up in my event log after a failed
call:

It is not possible to run two different versions of ASP.NET in the same IIS
process. Please use the IIS Administration Tool to reconfigure your server to
run the application in a separate process.

"Gaurav Vaish (www.EduJiniOnline.com)" wrote:
I really need immediate help from any one in this forum.
1. Why I receive this Soap Exception error in 1.1?

Check the response. There's a problem in response... probably some fault!
2. How can I make compatible with 1.1 web services. Just I need to all 1.1
web services from 2.0.

There's nothing like 1.1 compatible or 2.0 compatible web services.
May be that the server-side users some extensions (WSE)...?
3. Do I need to install 1.1 and 2.0 on the server? Does it affect any
other
applications running 1.1?

Frankly speaking... it's impossible to guess from whatever you wrote.
Probably, you can provide the WSDL (put up on some website - just wsdl - for
us to see).

--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://www.edujinionline.com
http://articles.edujinionline.com/webservices
-------------------
Sep 25 '06 #4
It is not possible to run two different versions of ASP.NET in the same
IIS
process. Please use the IIS Administration Tool to reconfigure your server
to
run the application in a separate process.
Not sure which version of IIS you are using.

I am working with IIS 5.1 on WinXP.
One application uses ASP.Net 1.1 and another one users ASP.Net 2.0
And they work wonderfully fine.
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://www.edujinionline.com
http://articles.edujinionline.com/webservices
-------------------
Sep 26 '06 #5
q
Sounds like you're trying to use .NET 1.1 assemblies in a .NET 2.0 app.
Get the source code and recompile. (or use reflector and recompile).

Other than that you can setup another website and have one 1.1 and the
other 2.0. Then you can interop anything you want. That's the entire
point of web services.
Kevin Burton wrote:
But if IIS is running 1.1 and you are trying to use (configure 2.0) I have
run into the following error that shows up in my event log after a failed
call:

It is not possible to run two different versions of ASP.NET in the same IIS
process. Please use the IIS Administration Tool to reconfigure your server to
run the application in a separate process.

"Gaurav Vaish (www.EduJiniOnline.com)" wrote:
I really need immediate help from any one in this forum.
1. Why I receive this Soap Exception error in 1.1?
Check the response. There's a problem in response... probably some fault!
2. How can I make compatible with 1.1 web services. Just I need to all 1.1
web services from 2.0.
There's nothing like 1.1 compatible or 2.0 compatible web services.
May be that the server-side users some extensions (WSE)...?
3. Do I need to install 1.1 and 2.0 on the server? Does it affect any
other
applications running 1.1?
Frankly speaking... it's impossible to guess from whatever you wrote.
Probably, you can provide the WSDL (put up on some website - just wsdl - for
us to see).

--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://www.edujinionline.com
http://articles.edujinionline.com/webservices
-------------------

Sep 26 '06 #6

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

Similar topics

1
by: Tom L | last post by:
Like the subject says, how do I figure out how much memory an object takes.. If I create an employees collection, which is a collection of employee objects, and I load up a handful of records, I...
9
by: Hardy Wang | last post by:
Hi all: I read an article from http://www.c-sharpcorner.com/Code/2003/Sept/InstallingWinServiceProgrammatically.asp about how to install a windows service programmatically. Based ont the code...
7
by: Mike | last post by:
I want to create a windows service that will monitor another window service. what i need for the service to do is, if a service is stopped I need it to start the service back up example: ...
9
by: SP | last post by:
Hi All, I wrote a windows service which is supposed to stop after specified amount of time. I am calling OnStop() after specified time. OnStop() methods executed but I dont see the service...
3
by: Jeremy S. | last post by:
On my dev machine (XP/Pro with VS.NET 2003) I have been developing a Windows Service and installing it on the local machine by opening the Visual Studio Command Prompt and then executing . Now I...
11
by: LordHog | last post by:
Hello, I recently wrote an application that is used for testing units in a burn-in chamber. It uses two external library that require the use of P\Invoke in order to work with them. There is a...
2
by: letibal | last post by:
Hello, I have written a windows service and created an installer for it. The service runs under the system accounts. When started, it launches a GUI. By default, the InteractiveProcess property...
4
by: kkt49 | last post by:
# vim: et sw=4 ts=8 sts from wxPython.wx import * import sys, os, time import pywintypes import win32serviceutil import win32service import win32event import win32process
0
jeffbroodwar
by: jeffbroodwar | last post by:
Hi, i'm currently working on a project that involves vb6 to consume java webservice... i had a problem figuring out how to establish the connection. Fortunately i was able to get this thing...
12
by: Tony | last post by:
Hi expert, I installed DB2 v8.2 server on Solaris 9 box. When I connect to DB2 using control centre or other applications(except command line), around 12 db2sysc processes pop up and each one...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...

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.