473,698 Members | 2,090 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Howto: WebService without IIS and ASP.NET

Hello!
How to create WebService without IIS and ASP.NET?
For example, create WebService for smart device client without ASP.NET/IIS
techology.
Without ASP.NET and IIS - is a key question!!

May somebody knows where can i get information or examples for current
subject....
Thank you.
Nov 23 '05 #1
5 5393
Hi Alexander,

In most cases, the calling device never needs IIS or a web server of any
kind. On the receiving side, some kind of HTTP handler is required since
today SOAP is bound in most cases to HTTP. Microsoft provides you two
hosts for web services, one in IIS, and the other in a custom HTTP/TCP
listener that is a part of the WSE 2.0 tools. Again, you don't need these
on the callers side.

In the simplest case, the client needs to be able to make an HTTP request.
This means it needs network connectivity, and the ability to open a TCP/IP
connection to a remote port, and create an HTTP request packet and then
wait on the response on the same connection. Once you can do that, you
need to be able to mix HTTP and XML in the same request message, and be
able to locate the SOAP XML response (or fault).

If you don't have the Compact Framework, you may have to write your own
tools or use a XML DOM (most DOM's can post an HTTP message). Your HTTP
request needs to be SOAP compliant, so if you are rolling your own tools,
you should become very familiar with the SOAP specification. If you are
using a mobile device for which there are good SOAP or XML tools, you'll
save a ton of time over rolling your own (and spare your potential service
partners a world of headache debugging your packets) if you adopt a
commercial toolset that is tested and supported.

I hope this helps

Dan Rogers
Microsoft Corporation
--------------------
Reply-To: "Topper" <al************ ****@bix.ru>
From: "Topper" <al************ ****@bix.ru>
Subject: Howto: WebService without IIS and ASP.NET
Date: Tue, 7 Dec 2004 12:34:53 +0300
Lines: 13
Organization: BIX
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Message-ID: <#T************ **@TK2MSFTNGP10 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: ts12-a122.moscow.dia l.rol.ru 195.46.161.122
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTFE ED02.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 0
.phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7937
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

Hello!
How to create WebService without IIS and ASP.NET?
For example, create WebService for smart device client without ASP.NET/IIS
techology.
Without ASP.NET and IIS - is a key question!!

May somebody knows where can i get information or examples for current
subject....
Thank you.

Nov 23 '05 #2
Hello Topper,
There is a free implementation called Cassini. Also check out

http://msdn.microsoft.com/msdnmag/is...n/default.aspx

HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
http://www.geniant.com
Hello!
How to create WebService without IIS and ASP.NET?
For example, create WebService for smart device client without
ASP.NET/IIS
techology.
Without ASP.NET and IIS - is a key question!!
May somebody knows where can i get information or examples for current
subject....

Thank you.

Nov 23 '05 #3
Topper wrote:
Hello!
How to create WebService without IIS and ASP.NET?
For example, create WebService for smart device client without ASP.NET/IIS
techology.
Without ASP.NET and IIS - is a key question!!

May somebody knows where can i get information or examples for current
subject....


There was a good article along these lines in MSDN Magazine this month:

http://msdn.microsoft.com/msdnmag/is...erviceStation/

:)
--
Danny Tuppeny
Nov 23 '05 #4
Hello!
Thank You for link, but this solution work with Win XP SP2 or WS2k3 - it is
a limitation for me.

Thank You again.

"Danny Tuppeny" <da***@nospam.o ops> wrote in message
news:41******** **************@ ptn-nntp-reader02.plus.n et...
Topper wrote:
Hello!
How to create WebService without IIS and ASP.NET?
For example, create WebService for smart device client without ASP.NET/IIS techology.
Without ASP.NET and IIS - is a key question!!

May somebody knows where can i get information or examples for current
subject....


There was a good article along these lines in MSDN Magazine this month:

http://msdn.microsoft.com/msdnmag/is...erviceStation/

:)
--
Danny Tuppeny

Nov 23 '05 #5
Hello!
Yes, i check this solution - it is what i need.
Thank You.

"Dilip Krishnan" <dk*******@NOSP AM.geniant.com> wrote in message
news:26******** *************@m snews.microsoft .com...
Hello Topper,
There is a free implementation called Cassini. Also check out

http://msdn.microsoft.com/msdnmag/is...n/default.aspx

HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
http://www.geniant.com
Hello!
How to create WebService without IIS and ASP.NET?
For example, create WebService for smart device client without
ASP.NET/IIS
techology.
Without ASP.NET and IIS - is a key question!!
May somebody knows where can i get information or examples for current
subject....

Thank you.


Nov 23 '05 #6

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

Similar topics

4
3844
by: Logan | last post by:
Several people asked me for the following HOWTO, so I decided to post it here (though it is still very 'alpha' and might contain many (?) mistakes; didn't test what I wrote, but wrote it - more or less - during my own installation of Python 2.3 on Fedora Core 1 Linux for a friend of mine). Anyway, HTH, L.
0
821
by: Kristof Thys | last post by:
This is what I do: I create a very simple webservice : new project -> Visual c++ projects -> ASP.Net web service. My old project was a c++ application, I change its properties to a dll. I build it, and add a reference to the web service -> Add reference -> ..NET -> browse for the dll Then I include the headerfile from the oldproject, where the functions
0
1086
by: Daniel | last post by:
hi ng, i have a webservice method that provides a object array that i would like to bind with a datalist on client side. the problem is that a datalist needs property fields to bind to, but webservice client side, the objects properties are recognized as public fields. And in the wsdl file, there is no difference between for example: public string Field1; and
3
1451
by: ProJee | last post by:
1. How to pass chr(1) (or another special char below 32) to a method in a webservice? It raises an exception when I try to pass it through webservice.htc 2. How to pass chr(255) It doesn't raise an exception, but another character comes to the server in some cases (different server= different results).. probably some
2
2405
by: dan | last post by:
hi ng. i have a asp.net application which is client of an asp.net webservice. now i want to configure a custom error page (in case the sewrvice throws an exception) that provides the soapexception detail property as text. but when defined in web.config, the error page doesn't provide access to the thrown exception anymore. i think that i somehow have to enter the http pipeline to catch the error, read the data and transfer to a error...
4
2848
by: Ray Dukes | last post by:
What I am looking to do is map the implementation of interface properties and functions to an inherited method of the base class. Please see below. '**************************************************************************** ' Issues '****************************************************************************
8
4187
by: Topper | last post by:
Hello. I have simple web folders structure: -ROOT - BIN WebService.dll WebService.asmx I need to use my WebService.dll not in bin folder - for example, in ROOT. How do i this? How can i do this without .config file only with some configuration
5
2936
by: Jonathan Kay | last post by:
Hi, I'd like to my WCF webservice to work both on SSL and without. Unfortunately searching has led to dead ends, references to changes that only work on the old previous beta versions and I admit I am rather confused and frustrated. That being said, I'd like some direction in how exactly I'm supposed to accomplish this. Thanks very much, JK
2
3479
by: =?Utf-8?B?TGFycnlLdXBlcm1hbg==?= | last post by:
Our WebDev team seems to have found a problem that exposes a bug in .NET 2.0. This problem can be shown when trying to access a WebService using SSL and through a proxy server after using the HttpWebRequest object. Under normal circumstances I am able to use the webservice without any problems. But after using an HttpWebRequest object to make a call to a website all subsequent attempts to use the WebService will fail with a 401...
0
8598
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9152
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...
0
9016
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
8887
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
8856
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
7709
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
4360
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4613
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3037
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.