- IIS6 Deploy... In the environment WebService( Deploy virtual directory )
-
- First , open IIS Manager ,
- Deploy a website or use the default website
- Right click the website and select new virtual directory
- Input WebService Another name for
- choice WebService File path
- Set the permissions
- Click finish
- You can right-click the virtual directory and click properties to set related properties , For example, port 、.Net Version, etc.
- IIS7 Deploy... In the environment WebService( Deployment website )
-
- open IIS Manager
- New website , Set the site name 、 Application pool and physical address
- Modify the connection to a specific user
- Modify the port 80 Is the default site port , The host name is the computer name of this machine or it is empty
- Editing authority , Add security properties Everyone
- Test browsing
- Follow the error prompts to debug ( modify ASP.NET Language 、 Enable directory browsing )
Deploy WebService More articles about
- stay IIS6 Upper Department WebService
stay IIS6 Upper Department WebService 2016-12-07 Catalog : 1 establish web service project 2 Deploy WebService3 Browse page 1 establish web service project return use Visual ...
- Web Server stay iis Upper Department webservice be based on oracle
stay iis Upper Department webservice be based on oracle Common mistakes and solutions : reason : Install first .netframework After the installation iis Caused by the : Solution : 1.C:\Windows\Microsoft.NET ...
- Deploy WebService A small problem with the service
In the deployment WebService Service to IIS After that , I found that I can't access it in the browser asmx file , Always hint 404 or 403 error . When prompted for the currently accessed file, the script file . 1. First of all, I checked that IIS Upper Department WebService ...
- Window Server IIS6.0 Deploy webservice The request call indicates that the request failed
At one window server 2003 There's one deployed on the machine webservice,iis by 6.0, Strangely enough . Call locally on the server webservice succeed , But in other client The call failed . What's the reason ...
- How to use in engineering axis2 Deploy webservice
One of the easiest ways is to put axis2.war As Web Project The basis of , To develop . But for a better understanding of how to work in an existing Web Project Embedded in axis2, Then configure it manually . Roughly divided into ...
- Put the source code into the server deployment webservice Call error MVC C#
C# WebService It's OK to call locally , When the same code is distributed to the server, the call always reports the following error Server Error in '/' Application. The resource cannot be f ...
- Win7 in IIS7 Deploy WebService
I've been busy with a Web Of Bug correct , It's something written by our ancestors , The architecture is simple , A front-end project , One WebService Project , And some backstage dll. I've always rejected this product , Because it can't start , I don't remember when I could run ...
- Deploy webservice FAQ summary
Question 1 from http://blog.csdn.net/xingxing513234072/article/details/38615997 The handler “WebServiceHandlerFactory- ...
- iis Deploy webservice Question set
One . Add a website Specific steps : Open the control panel , Choose management tools , Open management tools . After opening the management tool , Open the second internet information service (iis) Manager . The screen opens as follows : Right click on the website , After adding a website , eject “ Add a website ” Options ...
Random recommendation
- poj1328 greedy radar , land , Island problem
Radar Installation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 60381 Accepted: 13 ...
- 【 Network flow 24 topic 】No.19 Load balancing issues ( Cost stream )
[ The question ] G Company has n It's a circular warehouse along the railway transportation line , The quantity of goods stored in each warehouse varies . How to use the least carrying capacity to make n The inventory quantity of each warehouse is the same . When carrying goods , It can only be moved between adjacent warehouses . Sample input file input ...
- Apple Strictly control Java It's not human
from :http://www.cdtarena.com/javapx/201307/9115.html Apple In order to get a better reputation in system security , For those that are more likely to cause system vulnerabilities Java It's under strict control , And from ...
- .NET All kinds of questions
1.i++ And ++i The difference between using System; class TestApp { public static void Main() { int i = 8; int count = ++i;/ ...
- Find... Quickly ARP The source of the virus
The first move : Use Sniffer Grab the bag Run packet capture software on any host in the network , Capture all packets that arrive on the machine . If you find one of them IP Keep sending request packets , So this computer is usually the source of the virus . principle : Whatever it is ARP Virus variants , There are two ways of behaving ...
- deeplearning.ai In homework Python Common commands
1. print Dafa test = Hello World print ("test:" + test) 2. math and numpy The difference between :math Only for a single element ,numpy Meeting bro ...
- H5 Live escape guide
This article is from " Little time tea house (Tech Teahouse)" official account Author's brief introduction : Wenhe ,2015 Joined tencent in 2004 , Worked as a front-end development engineer Q The game guild , The game center , Penguin E-sports and so on , With rich mobile terminals ...
- scheme Realize the most basic operation under natural number
Copyright notice : This article is the blogger's window (Colin Cai) original , Welcome to repost . If you want to a quote , The original address must be indicated http://www.cnblogs.com/Colin-Cai/p/9123363.html author : The window Q ...
- Python How to output text with color
We are using python In the process of operation, maintenance and development , It is often necessary to print and display all kinds of information . Massive amounts of information piled up in the console , It will cause all kinds of information to be displayed together , Reduces the readability of important information . Now , If you can add different font colors to important information , then ...
- python Common modules -01
1. A simple understanding of modules Every one of them py Files are all a module . There are also some modules that we've been using buildins Built-in module . print, input random It's mainly about random content random() ...