answersLogoWhite

0

You can use the IP address of the computer that is hosting the website (i.e. http://192.168.1.5/), or for Windows, you can usually use the computer's "host name", such as http://www-server/. Finally, if you are running a domain (i.e. you have Windows 200x Server installed), you can use the FQDN of the server, such as (http://www-server.intranet.local/). Be sure the firewall on the computer you are hosting the service on allows incoming connections for port 80, or port 443 for SSL/TLS connections.

Several tools are available on Windows for the creation and maintenance of host names. See the related links.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is a HTML webpage?

A HTML Webpage is a page created on HTML. It runs on browser and co-ordinates with web.


Did Grace Hopper have any inventions?

she created a computer


Who created the hypertext document?

Dr. Douglas Engelbart, the inventor of the computer mouse (along with Bill English), had a team that gave us the "keys to the kingdom" in a number of areas where they worked in computer development. Doug and the crew brought us hypertext and did early work on networking and on the graphical user interface (GUI), which we "see through" today like it's not even there - which is about the highest tribute regarding the value of something we use. You should drop by the Wikipedia article on this remarkable man and check it out. Oh, and because this is WikiAnswers, we'll even pay the freight by providing a hyperlink.


Why was the plunger created?

The plunger was created to help clear clogs in plumbing systems, particularly in toilets and drains. Its design allows users to create a vacuum and pressure effect, dislodging blockages effectively. By providing a simple and efficient tool for addressing plumbing issues, the plunger has become an essential household item for maintaining sanitation and functionality in bathrooms and kitchens.


What is servlet cookies in java programming?

a small amount of information sent by a servlet to a Web browser, saved by the browser, and later sent back to the server. A cookie's value can uniquely identify a client, so cookies are commonly used for session management. A cookie has a name, a single value, and optional attributes such as a comment, path and domain qualifiers, a maximum age, and a version number. Some Web browsers have bugs in how they handle the optional attributes, so use them sparingly to improve the interoperability of your servlets. The servlet sends cookies to the browser by using the HttpServletResponse.addCookie(javax.servlet.http.Cookie) method, which adds fields to HTTP response headers to send cookies to the browser, one at a time. The browser is expected to support 20 cookies for each Web server, 300 cookies total, and may limit cookie size to 4 KB each. The browser returns cookies to the servlet by adding fields to HTTP request headers. Cookies can be retrieved from a request by using the HttpServletRequest.getCookies() method. Several cookies might have the same name but different path attributes. Cookies affect the caching of the Web pages that use them. HTTP 1.0 does not cache pages that use cookies created with this class. This class does not support the cache control defined with HTTP 1.1.