473,769 Members | 7,388 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Urgent --- Please help - How to deploy WS in 2003 server????

Hi,
I create my Webservice in 2003 VS and test in Windows 2000 and Windows XP
Pro without any problem. When I deploy it over Windows 2003 server, It fails
to connect to the WS. I got Anonymous access check, and integerated Windows
authentication check.

My client, WinCE 4.2 device, still cannot access the web service. I got a
WebException return to WinCE.

The same setting is always work in Windows 2000/XP Pro.

What else I have to do to make it pass the secruity checking ?

Thanks for any comment
May 10 '06 #1
2 1569
You need to set the credentials for accessing the web service.

wsWebService.Cr edentials = New System.Net.Netw orkCredential(l swsUser,
lswsPassword, lswsIP)

Note these might be the same user credentials under which the asp.net site
is running.

You might also need to check that the web service uses integrated windows
authentication, set fro IIS.

"hulinning" wrote:
Hi,
I create my Webservice in 2003 VS and test in Windows 2000 and Windows XP
Pro without any problem. When I deploy it over Windows 2003 server, It fails
to connect to the WS. I got Anonymous access check, and integerated Windows
authentication check.

My client, WinCE 4.2 device, still cannot access the web service. I got a
WebException return to WinCE.

The same setting is always work in Windows 2000/XP Pro.

What else I have to do to make it pass the secruity checking ?

Thanks for any comment

Jun 13 '06 #2
Hi,

While deploying a Webservice in Windows 2003, you can use either application
pool or provide the default credentials.

We face issues many times while deploying a webservice, if we miss a single
step.

Below are the steps that we follow for deploying a webservice without
Application Pool:

1. Install the WEbservice.
2.if it is a new Virtual folder or a website, open the properties dialog
box.
3. Under Directory Security Tab, select Anonymous Access editing option.
4. Under Anonymous Authentication, select the IUSR_<MachineNa meas the
default user
5. LEt the IIS maintain the password.

TRy running the webservices now.

If any other user is selected for providing the credentials, then, the user
should have integrated access to the database which the webservice accesses.
The user should also be given permissions for Temp folder, and other
processes involved.

Application pool to would follow the same steps except that an Application
pool can be reused for multiple websites or virtual folders.

"MACH II" <ma***********@ hotmail.comwrot e in message
news:47******** *************** ***********@mic rosoft.com...
You need to set the credentials for accessing the web service.

wsWebService.Cr edentials = New System.Net.Netw orkCredential(l swsUser,
lswsPassword, lswsIP)

Note these might be the same user credentials under which the asp.net site
is running.

You might also need to check that the web service uses integrated windows
authentication, set fro IIS.

"hulinning" wrote:
>Hi,
I create my Webservice in 2003 VS and test in Windows 2000 and Windows
XP
Pro without any problem. When I deploy it over Windows 2003 server, It
fails
to connect to the WS. I got Anonymous access check, and integerated
Windows
authenticati on check.

My client, WinCE 4.2 device, still cannot access the web service. I got
a
WebException return to WinCE.

The same setting is always work in Windows 2000/XP Pro.

What else I have to do to make it pass the secruity checking ?

Thanks for any comment

Jul 13 '06 #3

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

Similar topics

3
1658
by: Peter | last post by:
I have asp.net code using C# that will convert tif file into jpg and then it display them. The program works on my machine and Dev machine with Window XP professional. When I deploy the program on test machine (window 2003 server) I get error: Argument Exception Invalid parameter used" The code that causes the error is: byte imgbyte;
2
1783
by: Chris | last post by:
Hi, I developed a COM+ Server application on my XP machine. It works excellent. I exported as server application and then installed it in a windows 2003 server. I then exported it as a Proxy Client from the Windows 2003 server and installed the proxy client on 2 xp machines and it works fine. When I try to install the proxy client to our windows 2000 adv server SP4 (production box) I get the error "Error 1928. Error registering COM+...
1
1393
by: mg | last post by:
I get the message "server is not running ASP.NET version 1.1" when I try to deploy a WebForm app to Windows Server 2003. In the past, the same deploy to Windows Server 2000 was completely successful. But, ASP.NET 1.1 is part of the OS, right out of the box. Can you suggest what I need to do to deploy to Windows Server 2003?
1
1322
by: Andrew | last post by:
Hi, friends, I am following the "MS IIS 6.0 Deployment Guide" to deploy my asp.net application. However, I got completely lost in the session "Enabling Client Access IIS 6.0". It says: Enable client access to the ASP.NET applications on the Web server by completing the following steps: 1. Create the appropriate Domain Name System (DNS) entries for the ASP.NET
16
2965
by: | last post by:
Hi all, I have a website running on beta 2.0 on server 2003 web sp1 and I keep getting the following error:- Error In: http://www.mywebsite.org/WebResource.axd?d=5WvLfhnJp5Lc8WhQSD4gdA2&t=632614619884218750 -------------------------------------------------------------------------------- System.Security.Cryptography.CryptographicException: Padding is invalid and cannot be removed. at...
2
1697
by: Peter | last post by:
Is GDI+ part of frame work in window 2003? How can I find out if GDI+ is installed on 2003 server? When I delpoy asp.net application on window 2003 I get Arugment exception error. If I deploy the project in XP professional machine it works fine. The code that causes the error is System.Drawing.Image.FromStream(memStream);
3
4959
by: Gianluca Carucci | last post by:
Hi all, i compiled a simple Hello World console application (Console project wizard) with c++/cli. I use /clr compiler option for compile mixed managed and unmanaged code. When i start application on Windows 2003 Server i received a message box with error: "The application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem". I receive the same error when i try open...
0
1056
by: Ralph Hulslander | last post by:
What has to be set in order to using a Windows 2003 server to deploy CliclOnce? I am sure there has to be something set to allow setup.exe to be run. I have succesfully deploy with a W2K server but it doesn't work on 2003. So I fugure there is some default lockdown that has to be changed. I don't know 2003 at all. Thanks for the help.
2
1933
by: Code Monkey | last post by:
I'm about to deploy a program that prints out Word documents. However, due to licensing issues, we don't actaully have Word 2003 or Office 2003 installed on the machine - only the free Word Viewer (Microsoft Office Word Viewer 2003). I'm just wondering if the following should be possible, because it doesn't appear to work: assuming with have <code>
0
9589
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
10216
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
10049
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...
0
9865
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...
1
7413
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
5310
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
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3965
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
3
2815
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.