473,626 Members | 3,325 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web services without IIS

Hello,
Is it possible for a web service to work without a web server. If yes, how
do you deploy the web service on a server and expose it on the Internet?
And, how the client applications can consume it?

This is because we don't have a web server but we would like to create web
services without the pain of installing and maintaining a web site only for
web services.

Thanks,
David.
Nov 21 '05 #1
4 6840
David,
You do need a web server to run web services.
Aleksey Nudelman
http://csharpcomputing.com

"David Gagné" wrote:
Hello,
Is it possible for a web service to work without a web server. If yes, how
do you deploy the web service on a server and expose it on the Internet?
And, how the client applications can consume it?

This is because we don't have a web server but we would like to create web
services without the pain of installing and maintaining a web site only for
web services.

Thanks,
David.

Nov 21 '05 #2
Yes, you will need IIS only because ASP.NET only supports the HTTP transport
protocol. Web services, in general using SOAP, doesn't require a web server
as it is designed to work with multiple transport protocols.

If you are only writing .NET Web services and clients, you might want to
look into .NET Remoting. I found this article documenting some of the
differences between Web services and .NET Remoting on Microsoft's site:

http://msdn.microsoft.com/library/de...tnetarch16.asp

--
Eric Cherng
MCP, MCDBA, MCSD
http://echerng.com
http://vertigosoftware.com
"David Gagné" <ga*********@sy mpatico.ca> wrote in message
news:OW******** ******@TK2MSFTN GP15.phx.gbl...
Hello,
Is it possible for a web service to work without a web server. If yes, how
do you deploy the web service on a server and expose it on the Internet?
And, how the client applications can consume it?

This is because we don't have a web server but we would like to create web
services without the pain of installing and maintaining a web site only
for
web services.

Thanks,
David.

Nov 21 '05 #3
You don't need a web server, but it is the easiest way. However, you can
use WSE to host .net webservices in a windows service, instead of in IIS
(for example). However, these do still need to listen to TCP/IP traffic,
just like a webserver. By far and away, installing IIS is the easiest way
to get started with webservices.

Here's an article on hosting WSE in COM+
http://weblogs.asp.net/cweyer/archiv...25/220627.aspx
"csharpcomputin g.com" <cs************ ****@discussion s.microsoft.com > wrote
in message news:92******** *************** ***********@mic rosoft.com...
David,
You do need a web server to run web services.
Aleksey Nudelman
http://csharpcomputing.com

"David Gagné" wrote:
Hello,
Is it possible for a web service to work without a web server. If yes,
how
do you deploy the web service on a server and expose it on the Internet?
And, how the client applications can consume it?

This is because we don't have a web server but we would like to create
web
services without the pain of installing and maintaining a web site only
for
web services.

Thanks,
David.

Nov 21 '05 #4
can also use Cassini. (see www.asp.net) It is a lightweight HTTP engine,
not for production use but can host ASPX and ASMX.
-D

"Philip Rieck" <ju**@mckraken. spamcom> wrote in message
news:ui******** ******@TK2MSFTN GP12.phx.gbl...
You don't need a web server, but it is the easiest way. However, you can
use WSE to host .net webservices in a windows service, instead of in IIS
(for example). However, these do still need to listen to TCP/IP traffic,
just like a webserver. By far and away, installing IIS is the easiest way
to get started with webservices.

Here's an article on hosting WSE in COM+
http://weblogs.asp.net/cweyer/archiv...25/220627.aspx
"csharpcomputin g.com" <cs************ ****@discussion s.microsoft.com > wrote
in message news:92******** *************** ***********@mic rosoft.com...
David,
You do need a web server to run web services.
Aleksey Nudelman
http://csharpcomputing.com

"David Gagné" wrote:
Hello,
Is it possible for a web service to work without a web server. If yes,
how
do you deploy the web service on a server and expose it on the Internet?
And, how the client applications can consume it?

This is because we don't have a web server but we would like to create
web
services without the pain of installing and maintaining a web site only
for
web services.

Thanks,
David.


Nov 21 '05 #5

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

Similar topics

0
3449
by: Amol Shambharkar | last post by:
Hello Everyone, I am hoping someone could help me out with this.I am using Visual Studio .NET 2003 to create a web application on a remote IIS 5.0 server using the File Share web access method.The problem is I get the following two errors everytime I try to create the application: Error 1: The web was created successfully, but an error occured trying to configure the application root of this web.Web projects may not operate correctly...
4
2187
by: bob garbados | last post by:
I'm new to web services and I'm trying to interface with a payment gateway for an online store. I'm trying to do this without Visual Studio and I'm stuck... I created my proxy class from the command line with the following statement: wsdl https://webservices.innovativegateway.com/igspaymentservice/igspaymentservice.asmx?WSDL /l:vb /n:ECommerce.PaymentGateway /o:ECommerce.PaymentGateway.vb I then compiled it into a dll along with some...
26
1887
by: Mr Newbie | last post by:
What do I need to run a web service on my PC ? I know I need the .NET Framework, but do I need IIS Running ?
4
3024
by: Greg | last post by:
Hi, I am developing Pocket PC application in VB.NET. Within the application we are using web services developed by outsourced team. They developed the services in C#. After adding a web reference to web services in my Pocket PC app, I am not able to compile Smart device solution. The same web services are used by web application and they work fine there.
11
4099
by: Peter Rietkerk | last post by:
I have a few questions regarding the referencing of web services using this toolkit. I am currently trying to reference a specific URL to WSDL that was generated on a local server. Does anyone know of any issues in regards to consuming WSDL for document-literal web services that define a lot of complex types and/or import any other WSDL schema? I suspect that our WSDL might be too sophisticated for the tool to handle. Maybe our use of the...
3
1213
by: JIM.H. | last post by:
Hello, I have an asp.net application developed by someone else and it seems it interacts with database through web services. What is the benefit of this? Any idea? Thanks,
4
8818
by: =?Utf-8?B?TWFyaw==?= | last post by:
Hi... Following the samples online, we implemented a windows service in .Net. Like most services, there's a worker thread actually doing stuff in the background. The problem we've run into is how to get the service to exit when the worker thread has a fatal error *and* get the SCM to invoke the auto-restart configuration? The worker thread can error out while the parent thread in the server process chugs along. We can set the exit...
2
1757
by: srinivasan.shanmugapillai | last post by:
Hi, I'm running a VB.NET windows applicatrion that is using the enterprise services transactions. While running this application without enterprise services support, a connection is established and data is retrieved sucessfully. when the class is configured to run inside enterprise services, it fails without proper error description.
5
2291
by: =?Utf-8?B?dmlzaHJ1dGg=?= | last post by:
This code works fine in Windows Application. In Windows Application, I am able to zip the image files properly and it totally contains 900MB My problem is the same code which I used in my Windows Application, does not work while I run it with Windows services. In my Windows application I am able to zip the whole 900Mb without any problems, but in my windows services I am not able to zip the whole 900Mb. In Windows Services it throws an...
0
8266
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
8638
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8365
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
8505
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
7196
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...
0
4198
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2626
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
1
1811
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1511
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.