Apache Iis Qa

Embed Size (px)

Citation preview

  • 7/28/2019 Apache Iis Qa

    1/5

    Apache Q & A

    What are "multiviews"?

    How does Apache compared to other servers?

    I've updated my apache web server from version 2.0.55 to 2.2.0, now all my pages are blank, any

    thoughts?

    How to use strings with whitespaces in RewriteRule's ENV flag?

    How to solve this error "User Operation is waiting for publishing Apache Geronimo v2.0 server at

    localhost....to complete

    What are "regular expressions"?

    I use IIS 6 and Apache 2.0.52 and I want to need connector IIS with tomcat. My tomcat using 8080 IIS

    using 80 my Apache application name is workspace and how can I use http://myserverip/workspace ?

    with isapi or anaother connector

    Why does Apache send a cookie on every response?

    IIS Q & A

    what is the difference between IIS 5.1 and IIS 6 administration?

    IIS 5.1 is for Windows XP

    IIS 6 is for Windows Server, We can create separate

    application pool with worker process for a separete website

    in IIS 6.0 only

    iis 5.1 it's work on Windows clint & Server

    IIs 6.0 ti's work on only server

    Can I run multiple websites with same port number and different IP address?

    Yes, We can use multiple websites with same port number and

    different IP address.

    how we can change a PSD file in a clipart to use in word or power point ?

  • 7/28/2019 Apache Iis Qa

    2/5

    What is App Pool and App Domain? What is the difference between the two.

    How to install our WebApplication In Web Server

    How to generate Random numbers without using Rnd() ?

    What are the different IIS authentication modes in IIS 5.0 and Explain?IIS 6.0 supports the following authentication methods:

    1. Anonymous authentication:

    This authentication method allows everyone access to

    the public areas of your Web sites, without asking for a user name or password.

    2. Basic authentication:

    This authentication method prompts the user for a user name

    and a password, also called credentials, which are sent unencrypted over the

    network.

    3. Digest authentication:This authentication method operates much like Basic

    authentication, except that passwords are sent across the network as a hash value

    for additional security. Digest authentication is available only on domains with

    domain controllers running Windows server operating systems.

    4. Integrated Windows authentication:

    This authentication method uses hashing

    technology to scramble user names and passwords before sending them over the

    network.

    5. NET Passport Authentication:

    This authentication method is a user-authenticationservice that lets Web site users create a single sign-in name and password for

    access to all .NET Passport?enabled Web sites and services. .NET

    Passport? enabled sites rely on the .NET Passport central server to authenticate

    users; .NET Passport?enabled sites do not host and maintain their own proprietary

    authentication systems.

    How do you remotely administer MS IIS?

    You can administer your server remotely by running IIS on

    an intranet or the Internet. You can use the following

    tools for this purpose:

    IIS Manager: You can use IIS Manager on your server to

    remotely connect to and administer an intranet server

    running IIS 5.0, IIS 5.1, or IIS 6.0 (IIS 3.0 and IIS 4.0

    are not supported).

    Terminal Services: Terminal Services does not require you

    to install IIS Manager on the remote client computer

    because, once connected to the server running IIS, you use

  • 7/28/2019 Apache Iis Qa

    3/5

    IIS Manager on the Web server as if you are logged on to

    the server locally.

    Remote Administration (HTML) Tool: You can use the Remote

    Administration (HTML) tool to administer your IIS Web

    server from any Web browser on your intranet. This version

    of the Remote Administration (HTML) tool is supported only

    on servers running Windows Server 2003 with IIS 6.0.

    How do you create Virtual Root in IIS?

    How to configure the sites in Web server (IIS)?

    1. open the IIS Manager

    2. Right click on default website

    3. Go to New and click on website

    4. Give website location and follow the wizard to

    complete the configuring site.

    1st we need to install IIS and required configure it

    you can install it start >> run >> appwiz.cpl >> addwindows component

    Go to IIS..

    Go to Default Website..

    right click and create new alias name for our application...browse our project on the server..

    next....next ..finish

    then right click on created alias name then go todocuments..then select our default.aspx page....

    apply..finish

    browse,,

    then site is configured

    In which process does IIS runs ?

    IIS runs in 2 modes (application isolation modes): 1.worker process isolation mode is a new feature of IIS6.0.2. IIS5.0 isolation mode - for compatibility with apps

    depending on IIS5.0

    Where are the IIS log files stored?

    1. Log file directory: C:\Windows\System32\LogFiles

    2. Log file name: W3SVC1\exyymmdd.log

    3. Your full log path to put into SmarterStats wouldbe: C:\Windows\System32\LogFiles\W3SVC1

  • 7/28/2019 Apache Iis Qa

    4/5

    How can we retrive our data after if we format the harddisk?

    Try using 3rd party utilities such as unformat,Uneraser ..you may be able to recover some % of data depending on howlucky you are on the day when you know that your day startedoff with hard drive formatted..

    But if you really want to get some data out of your

    formatted hard drive.. better spend some money and get dataretrieved from Data Recovery Specialist... While they

    wouldn't guarantee you 100% recovery

    How a web service is exposed to outside world ?

    1. Generate WSDL files from the existing components2. Deploy the web service3. Publish the web service in the UDDI directory

    How many users supported by IIS at a Time

    by default IIS have 25 thread. so one server can be accessby 25 people. if u have more than server then number ofpeople will be increased.

    How a proxy is generated for a web service ?

    when you use WSDL.exe to compile a web service the

    following 2 steps are done:1) A new proxy is generated for your web service2) Web service is compiled into .cs file (You can view itto check out the client code)

    Now you have to compile your cs file into dll file so youcan make reference to it. THis can be done by running thefollowing command in VS prompt:csc /t:Library myservice.cs

    3) Then .cs file it is converted into .DllBut if you are using VS Dot Net then these 2 steps are doneautomatically

    IIS Isolation modes

    IIS 5.0 isolation mode and iis6 worker process isolationmode.

    Worker process isolation mode is very goo if you dont haveissues or conflicts with any of application.

    SQL Server

    can u tel me how we can use temp table in sql sserverinstead of Dual in oracle?Temp Table whether it is local temp which is naming withsingle # or global with ## is stored in tempdb database.it can be seen by exploring the databsse. if it is localtemp table it would be droped once user ends the session,so you will have to ensure that you are using this table in

  • 7/28/2019 Apache Iis Qa

    5/5

    the same session where it has been created.Sysntax to retrieve data frm a temp table is as follows:-select field1,field2.....fieldN from #tablename