Dispatcher. PDF Generated : :40:15.
|
|
|
- Barry Lyons
- 10 years ago
- Views:
Transcription
1 PDF Generated : :40:15
2 Table of Contents How Caching and Load Balancing Work Static Web Server Content Management Server The and Caching The and Load Balancing How the Returns Documents How the Updates the Cache Content Content Updates Auto-Invalidation The Cache Directory The and Load Balancing Document Categories Sticky Connections Optimizing a Web Site for Caching HTTP Headers Avoid URL Parameters Customize by URL Picture Titles Picture Navigation Personalization Sticky Connections Installation Microsoft Internet Information Server Apache Web Server NSE / iplanet Web Server Configuration Configuring the Virtual Hosts Configuring Session Management and Authentification Configuring the Client Headers Configuring the Rendering Communiqué Instance(s) Configuring Filters Configuring the Cache Parameters Configuring the List of Cachable Documents Configuring the List of Auto-Invalidate Documents Configuring Statistics Configuring Sticky Connections...
3 1. The is Day's caching/load balancing tool. This section tells you how to use the dispatcher efficiently, and how to design your Web site so that the dispatcher can handle it best. Read this document before you create a high-performance Web site, and use it to fine-tune your dispatcher settings should performance issues arise. Page 1/55
4 1.1. How Caching and Load Balancing Work There are two basic approaches to Web publishing. Standard HTTP servers, such as Apache or IIS, are very simple, but fast. If you want dynamic, real-time, intelligent Enterprise Content Management, you have to pay a price in terms of the additional computation time needed. The dispatcher helps you to have an environment that is both fast and dynamic, and this section tells you how this works. How Caching and Load Balancing Work Static Web Server Content Management Server The and Caching The and Load Balancing Page 2/55
5 Static Web Server A static Web server, such as Apache or IIS, serves pre-built, static HTML files to visitors of your Web site. This process is very simple, and thus extremely efficient. If a visitor requests a file (say, an HTML page), the file is usually taken directly from memory, or at worst it is read from the local drive. Because static Web servers have been around for quite some time, they offer a lot of tools for administration and security management, and they are very well integrated with network infrastructures. Page 3/55
6 Content Management Server If you use a Content Management Server, such as Day Communiqué, an advanced layout engine processes the request from a visitor. The engine reads content from a repository and uses styles, formats and access rights to transform the content into a document that is tailored to the visitor's needs and rights. This allows you to create richer and more dynamic content, which is easier to manage and requires less maintenance work. However, the layout engine requires more processing power than a static server, so this setup may be prone to slowdown if many visitors use the system. Page 4/55
7 The and Caching The dispatcher works as part of a static HTML server, such as Apache. The aim of the dispatcher is to store (or "cache") the Site content as much as possible in the form of a static Web site, and access the layout engine as little as possible. This approach brings you the best of two worlds: Static content is handled with exactly the same speed and ease as on a static Web server. You can have as much dynamic content as needed, without slowing the system down any more than absolutely necessary. You even get a few bonuses for free: You can use all the administration and security tools for your static Web servers, and you can manage the static parts of your Web site with the same ease as the dynamic ones. The dispatcher contains mechanisms to keep the static HTML up-to-date if you change the content of the dynamic site, and you can specify in detail which documents are stored as static files and which are always computed dynamically. Page 5/55
8 The and Load Balancing But the dispatcher does even more: You can split up the dynamic parts to different servers, so you gain additional processing power, the server is fail-safe, or you can manage different Web sites on the same static Web server. All of these techniques are summarized as "load balancing". It means that servers can share their work seamlessly. The dispatcher allows for a number of very useful load balancing scenarios. Page 6/55
9 1.2. How the Returns Documents Finding out if a Document is Cacheable You can define which documents the dispatcher caches in the configuration file. The dispatcher checks the request against the list of cacheable documents. If the document is not cacheable, the dispatcher requests the document from the Communiqué instance. The dispatcher always requests the document from the Communiqué instance in the following cases: If the HTTP method is not GET. Other common methods are POST for form data and HEAD for the HTTP header. If the request URI contains a question mark (? ). This usually indicates a dynamic page, such as a search result, which does not need to be cached. The file extension is missing. The Web server needs the extension to determine the document type (the MIME-type). The authentication header is set (this can be configured) Finding out if a Document is Cached The dispatcher stores the cached files on the Web server as if they were part of a static Web site. If a user requests a cacheable document, the dispatcher checks if that document exists in the Web server s file system. If not, the dispatcher requests the document from the Communiqué instance. Page 7/55
10 Finding out if a Document is Up-To-Date To find out if a document is up to date, the dispatcher performs two steps: It checks whether the document is subject to auto-invalidation. If it is not, the document is considered up-to-date. If the document may auto-invalidate, the dispatcher checks if it is older or newer than the last change on the Web site. If it is older, the dispatcher requests the current version from the Communiqué instance and replaces the version in the cache with the new one. Documents without auto-invalidation remain in the cache until they are physically deleted, for example by a content update on the Web site. Page 8/55
11 1.3. How the Updates the Cache Content The dispatcher has two primary methods for updating the cache content when the Web site changes. Page 9/55
12 Content Updates In a content update, one or several Communiqué documents change. Communiqué sends a syndication request to the dispatcher, which updates the cache accordingly: It deletes the modified files from the cache. It deletes all files that start with the same handle from the cache. For example, if the file /en/index.html is updated, all the files that start with "/en/index." are deleted. This mechanism allows you to design cache-efficient sites, especially in regard to picture navigations. It touches the so-called statfile. The timestamp of the statfile now contains the date of the last change. Note that the files that are affected by a content update are removed, but not replaced right away. The next time such a file is requested, the dispatcher fetches the new file from the Communiqué instance and puts it into the cache. Typically, automatically generated pictures that use text from a page are stored in picture files that start with the same handle. For example, you may store the title text of the page mypage.html as the picture mypage.titlepicture.gif in the same folder, so the picture is deleted from the cache automatically each time the page is updated. This way, you can be sure that the picture always reflects the current version of the page. Page 10/55
13 Auto-Invalidation Auto-invalidation automatically invalidates large parts of the cache automatically, without physically deleting any files. At every content update, the so-called statfile is touched, so its timestamp reflects the last content update. The dispatcher has a list of files that are subject to auto-invalidate. When a document from that list is requested, the dispatcher compares the date of the cached document with the timestamp of the statfile. If the cached document is newer, the dispatcher returns it. If it is older, the dispatcher fetches the current version from the Communiqué instance. Note that auto-invalidation does not involve any action by the dispatcher at update time, except for touching the statfile. However, touching the statfile automatically renders the cache content obsolete, without physically removing it from the cache. Auto invalidation is typically used for HTML pages. Because these pages contain links and navigation entries, they usually have to be updated after a content update. If you have automatically generated PDF or picture files, you may choose to auto-invalidate those too. Page 11/55
14 The Cache Directory For caching, the dispatcher module uses the Web server's ability to serve static content. The dispatcher places the cached documents in the document root of the Web server. Because of this process, the dispatcher stores only the HTML code of the page, but does not store the HTTP headers. This can be an issue if you use different encodings within your Web site, which may get lost. Page 12/55
15 1.4. The and Load Balancing Load balancing means that you can spread the computational load of the Web site across several Web servers. In practice, the dispatcher sends document requests to several Web servers. Because each server has fewer documents to process, you have faster response times. The dispatcher keeps internal statistics for each document category, so it can estimate the server load and distribute the queries efficiently. In addition to faster load times, load balancing can be used for fail safing. If the dispatcher does not receive responses from a Web server, it will automatically relay requests to the other server or servers. Thus, if a server becomes unavailable, the only thing that happens is that the site slows down according to the computation power that is lost. However, all services will continue as usual while the problem is solved. While load balancing spreads the load efficiently, caching helps to reduce the load. Therefore, try to optimize caching and reduce the overall load before you set up load balancing. Good caching may increase the load balancer's performance, or render load balancing unnecessary. Page 13/55
16 Document Categories The dispatcher keeps an internal statistics about how fast the Web servers process documents. Based on this data, the dispatcher estimates which server will return a request quickest, and it blocks the necessary computation time for that server. Because different types of requests may take different times to complete, the dispatcher allows you to specify document categories. For example, you may make a distinction between HTML pages and images. This mirrors that HTML documents may have different typical response times than images, which the dispatcher considers when computing the time estimates. If you use an elaborate search function, you may create a new category for search queries. This helps the dispatcher to send search queries to the server that answers them fastest, and it prevents a slower server from stalling because it receives several "expensive" search queries while the other servers get the "cheaper" requests. Page 14/55
17 Sticky Connections Sticky connections ensure that the documents for one user are all composed on the same server. This is important if you use personalized pages and session data. This data is stored on the Web server, so subsequent requests from the same user must go to the same server, or the data is lost. Because sticky connections restrict the dispatcher's ability to optimize the requests, you should use them only when needed. You can specify the folder that contains the "sticky" documents. All the documents in the folder are composed on the same server for each user. For most pages that use sticky connections, you have to switch off caching. If you use caching, the page looks the same to all users, regardless of the session content. For some applications, it can be possible to use both sticky connections and caching, for example if you display a form that writes data to the session. Page 15/55
18 1.5. Optimizing a Web Site for Caching Communiqué's cache system offers a number of built-in mechanisms that you can use if your Web site takes advantage of them. This section tells you how to design your Web site so that it will benefit the most from caching. It may help you to remember that the dispatcher stores the cache on a standard Web server. This means that you can cache everything that you can store as a page and request using an URL. You cannot store other things, such as HTTP headers, cookies, session data and form data. In general, a lot of caching strategies involve selecting good URLs and not relying on this additional data. Page 16/55
19 HTTP Headers HTTP headers are not cached, which may be an issue if you store the encoding in them. Taken from the cache, the page will have the default encoding for the Web server. There are two ways of solving this: If you use only one encoding, make sure that the encoding you use on the Web server is the same as the default encoding of the Communiqué Web site. Use a <META> tag in the HTML header to set the encoding, such as: <META http-equiv="content-type" content="text/html; charset=euc-jp"> Page 17/55
20 Avoid URL Parameters If possible, avoid URL parameters for pages that you want to cache. For example, if you have a picture gallery, the following URL is never cached: However, you can put these parameters into the page URL, as follows: Note that this URL calls the same page and the same template as gallery.html. In the template definition, you can specify which script renders the page, or you can use the same script for all pages. Page 18/55
21 Customize by URL If you allow users to change the font size (or do any other customization on the layout), make sure that the different layouts are reflected in the URL as well. If you store them, say, in a cookie, then it is pure coincidence which version is cached. As a result, the dispatcher will return documents of all font sizes at random. Instead, make the font size part of the URL: For most layout aspects, it is also possible to use style sheets and/or client side scripts. These will usually work very well with caching. This is also useful for a print version. Use an URL as follows for the print version: Using the script globbing of the template definition, you can specify a separate script that renders the print pages. Page 19/55
22 Picture Titles If you render page titles or other text as pictures, store the files so that they are deleted at a content update for the page. To do so, place the picture file in the same folder as the page. use the same name as the filename of the page, plus a dot, plus the picture name. For example, you can store the title of the page mypage.html in the file mypage.title.gif. This file is automatically deleted if the page is updated, so any change to the page title is automatically reflected in the cache. Note that the file does not have to physically exist on the Communiqué instance. You can use a script that dynamically creates and outputs the picture. The dispatcher then stores the picture on the Web server. Page 20/55
23 Picture Navigation If you use pictures for the navigation entries, the method is the same as above, but slightly more complex. The trick is that all the navigation images are stored with the target pages. If you use two pictures for normal and active, you can use the following scripts: A script that displays the page, as normal. A script that processes ".normal" requests and returns the normal picture. A script that processes ".active" requests and returns the activated picture. It is important that you create these pictures on the same template as the page. Like this, a content update (for example, if you change the name of the page) will delete these pictures as well as the page. For pages that are not modified, the pictures still remain in the cache, although the pages themselves are usually auto-invalidated. Page 21/55
24 Personalization Because the dispatcher cannot cache personalized data, limit personalization to where it is necessary. For example, if you use a freely customizable start page, that page has to be composed every time a user requests it. If, in contrast, you offer a choice of 10 different start pages, you can cache each one of them, improving performance. If you personalize each page, for example by putting the user's name into the title bar, you cannot cache it, which can cause a major performance impact. If you have to do this, use iframes to split the page into one part that is the same for all users and one part that is the same for all pages of the user. You can then cache both of these parts. Alternatively, you can use client-side JavaScript to display personalized information. However, you may have to make sure that the page still displays correctly if a user turns JavaScript off. Page 22/55
25 Sticky Connections You can define one folder with sticky documents for each Web site. Group all the documents that require sticky connections in one folder, and try not to have other documents in it. If a user leaves this folder and later returns to it, the connection still sticks. Page 23/55
26 1.6. Installation Independent of the web server and OS platform you chose, the installation steps are always the same : Install the web server of your choice (IIS, Apache, iplanet). Add the / Load Balancer module. Configure the web servers configuration file. In the following sub sections the installation procedure for the different supported web servers is described. Page 24/55
27 Microsoft Internet Information Server Installing IIS At least version 4.0 of IIS is required. For further information on who to install the IIS itself read the documentation accompanying the Microsoft Internet Information Server. Add the / Load Balancer Module The / Load Balancer module comes as a dynamic link library (DLL). The file is named disp_iis.dll. When using the Communiqué Installer, it will automatically add the / Load Balancer binary if you select either Full Installation or chose to install the Content Management or Performance Module under Custom Installation : You will find a / Load Balancer version for each web server supported on the installation platform. The versions are located in the misc sub folder of the installation directory, named Page 25/55
28 dispatcher_xxxx_yyyy_zzzz.tgz where : XXXX denotes the supported web server. YYYY denotes the build number of / Load Balancer. ZZZZ denotes the OS platform. The zip file for the IIS version contains the following files : File disp_iis.dll Description The module itself. disp_iis.ini The configuration file for the IIS. NOTE : The ini file must have the same name as the dll. dispatcher.any An example configuration file for the / Load Balancer. dispatcher1.1.any An example configuration file for / Load Balancer Versions older then 1.2 (build number YYYY < 5100) README Quick Installation Guide. To add the DLL to the IIS do the following : Place the disp_iis.dll into an executable directory of the selected web site in IIS, i.e. <IIS_INSTALLDIR>/scripts. Add the module to the list of available ISAPI filters. Inside the Internet Service Manager, right click the web site root node where you want to add the / Load Balancer and open its Properties dialog : Page 26/55
29 Select the tab named ISAPI Filter : Page 27/55
30 Click the button Add.. and specify a name for the filter and the filters location : Page 28/55
31 Configure IIS for / Load Balancer Place the example configuration file named disp_iis.ini into the same directory as the module DLL disp_iis.dll. The INI file has the following format : [main] scriptpath=/<virtual root>/disp_iis.dll configpath=<path to dispatcher.any> loglevel=1 servervariables=1 where : Page 29/55
32 Parameter scriptpath Description This is the relative URL location of the dispatcher module disp_iis.dll inside the web server's virtual name space i.e. /scripts/disp_iis.dll. configpath The absolute path and filename to the modules configuration file inside the local file system. Loglevel Log Level used for outputting messages to the event log. The following values may be specified: 0: output error messages only. 1: output errors and warnings. 2: output errors, warnings and informational messages. 3: output error,warnings, info and debug messages. It is recommended to set the log level to 3 during installation and testing and to 0 when running in a production environment. servervariables If set to 1, all IIS server variables (such as LOGON_USER, QUERY_STRING,...) are sent to the dispatcher (and therefore to the Communiqué instance if not cached) along with the request headers. For your reference this is the complete list of IIS server variables that are transmitted as request headers if available: APPL_MD_PATH APPL_PHYSICAL_PATH AUTH_PASSWORD AUTH_TYPE AUTH_USER CERT_COOKIE CERT_FLAGS CERT_ISSUER CERT_KEYSIZE CERT_SECRETKEYSIZE CERT_SERIALNUMBER CERT_SERVER_ISSUER CERT_SERVER_SUBJECT CERT_SUBJECT CONTENT_LENGTH CONTENT_TYPE LOGON_USER Page 30/55
33 HTTPS HTTPS_KEYSIZE HTTPS_SECRETKEYSIZE HTTPS_SERVER_ISSUER HTTPS_SERVER_SUBJECT INSTANCE_ID INSTANCE_META_PATH PATH_INFO QUERY_STRING REMOTE_ADDR REMOTE_HOST REMOTE_USER REQUEST_METHOD SCRIPT_NAME SERVER_NAME SERVER_PORT SERVER_PORT_SECURE SERVER_PROTOCOL SERVER_SOFTWARE URL See the IIS documentation for details about the server variables. An example configuration may look like : [main] scriptpath=/scripts/disp_iis.dll configpath=c:\inetpub\scripts\dispatcher.any loglevel=1 Anonymous Access You have to make sure that the access to the cached files is unrestricted, otherwise the syndication request for cache flushing won't work since it does not have any authentication information. So you have to make sure Anonymous access for the website is activated on the Directory Security tab : Page 31/55
34 Stopping / Starting IIS The activate the changes you have to restart IIS. Open a command window and enter : > net stop w3svc this will stop the IIS web publishing service. > net start w3svc will start it again. Page 32/55
35 Before you can start using the / Load Balancer you must first configure the module and the involved Communique Instances. Page 33/55
36 Apache Web Server Installing Apache Web Server For Information about how to install an Apache Web Server read the installation manual in the apache distribution. If you are creating an Apache binary by compiling the source files yourself make sure that you turn on dynamic modules support. This can be done by use any of the --enable-shared options, or at least include the mod_so module with the --enable-module option. Read the Apache Web Server installation manual for more detail. Add the / Load Balancer Module The / Load Balancer module comes either as dynamic link library (DLL) for the Windows version of Apache or as an Dynamic Shared Object (DSO) for the Unix Versions. When using the Communiqué Installer, it will automatically add the proper / Load Balancer binary if you select either Full Installation or chose to install the Content Management or Performance Module under Custom Installation : Page 34/55
37 You will find a / Load Balancer version for each web server supported on the installation platform in the misc sub folder of the installation directory, named dispatcher_xxxx_yyyy_zzzz.tgz where : XXXX denotes the supported web server. YYYY denotes the build number of / Load Balancer. ZZZZ denotes the OS platform. The zip file for the Apache Web Server contains the following files : File disp_apache.dll Description The module itself (if installing on a Windows platform). dispatcher_apache_yyyy_zzzz.so The module itself (if installing on a Unix platform,yyyy denotes the build version of the module, ZZZZ the Unix platform). http.conf.disp dispatcher.any dispatcher1.1.any An example configuration file for the Apache. An example configuration file for the / Load Balancer. An example configuration file for / Load Balancer Versions Page 35/55
38 older then 1.2 (build number YYYY < 5100) README Quick Installation Guide. To add the module to the Apache Web Server do the following : Place the module in Apache's module directory which is usually the <APACHE_ROOT>/libexec directory on Unix platforms and <APACHE_ROOT>/modules on Windows Platforms. For easier handling on Unix it may be helpful to create a symbolic link named mod_dispatcher.so to the Load Balancer / module: > ln -s dispatcher_apache_xxxx_yyyy.so mod_dispatcher.so Configure Apache Web Server for / Load Balancer The configuration file of the Apache Web Server named httpd.conf needs to be adapted. In the modules zip file you will find an example configuration file named httpd.conf.disp. The following configuration entries must be added in the listed order : LoadModule to load the module on start up. AddModule to enable the module. / Load Balancer specific configuration entries Config, Log and LogLevel. SetHandler to activate the /Load Balancer. The following is an example of a LoadModule entry for a Windows Apache Web Server :... LoadModule status_module modules/mod_status.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule dispatcher_module modules/disp_apache.dll... Same for Unix assuming you added the above mentioned symbolic link :... LoadModule alias_module libexec/mod_alias.so LoadModule access_module libexec/mod_access.so LoadModule auth_module libexec/mod_auth.so LoadModule setenvif_module libexec/mod_setenvif.so LoadModule dispatcher_module libexec/mod_dispatcher.so... Please note that the first parameter of the statement must be written exactly as in the above examples since it references information defined in the module. See the Apache Web Server Manual for details about this command. The AddModule statement enables the module within the Apache Web Server. The order of the Page 36/55
39 AddModule statements in the configuration file is important since some modules may depend on others to be enabled before. The best way is to add the AddModule statement for the / Load Balancer as the last entry :... AddModule mod_alias.c AddModule mod_access.c AddModule mod_auth.c AddModule mod_so.c AddModule mod_setenvif.c AddModule disp_apache.c... Please note that parameter of the AddModule statement must be written exactly as in the above example since it references information defined in the module. See the Apache Web Server Manual for details about this command. After the module has been loaded and enabled you can add the / Load Balancer specific configuration entries e.g :... <IfModule disp_apache.c> Config conf/dispatcher.any Log logs/dispatcher.log LogLevel 3 NoServerHeader 0 DeclineRoot 0 UseProcessedURL 0 </IfModule>... Parameter Config Description Location and name of the modules configuration file. Log Location and name of the modules log file. LogLevel Log level for the modules log file : 0 Errors 1 Warnings 2 Infos 3 Debug It is recommended to set the log level to 3 during installation and testing and to 0 when running in a production environment. NoServerHeader If undefined or 0, the HTTP server header contains the Communiqué Version, If set to 1 the Apache server header is used. Page 37/55
40 IMPORTANT: If you want to use this setting with Apache Version >= you must use build 5210 or higher of the dispatcher because of internal changes in Apache. DeclineRoot New in Build 5123 If turned to 1, request to / are not handled by the dispatcher. Use the mod_alias then for the correct mapping. UseProcessedURL New in Build 5204 If turned to 1, the dispatcher uses the URL already processed by handlers preceeding the dispatcher (i.e. mod_rewrite) instead of the original one passed to the web server. Please note that the path entries are relative to the Apache Web Servers root directory. Finally you must add a SetHandler statement to the proper context of your configuration (e.g. <Directory>, <Location> ) to let the / Load Balancer handle the incoming requests. The following example uses the / Load Balancer to handle the requests of the complete web site :... <Directory /> <IfModule disp_apache.c> SetHandler dispatcher-handler </IfModule> Options FollowSymLinks AllowOverride None </Directory>... The following example enables the module for a virtual domain :... <VirtualHost > ServerName DocumentRoot /usr/apachecache/docs <Directory /usr/apachecache/docs> <IfModule disp_apache.c> SetHandler dispatcher-handler </IfModule> AllowOverride None </Directory> </VirtualHost>... Please note the parameter of the SetHandler statement must be written exactly as in the above examples, since this is the name of the handler defined in the module. Page 38/55
41 Before you can start using the / Load Balancer module you must fist configure the module itself and the Communiqué instances responsible for cache flushing. Page 39/55
42 NSE / iplanet Web Server Installing NSE / iplanet Web Server if you don't know how to install the Netscape Enterprise Server or the newer version iplanet Web Server please refer to the respective documentation. Add the / Load Balancer Module The / Load Balancer module comes either as dynamic link library (DLL) for the Windows version of NSE / iplanet or as an Dynamic Shared Object (DSO) for the Unix Versions. When using the Communiqué Installer, it will automatically add the proper / Load Balancer binary if you select either Full Installation or chose to install the Content Management or Performance Module under Custom Installation : You will find a / Load Balancer version for each web server supported on the installation platform in the misc sub folder of the installation directory, named Page 40/55
43 dispatcher_xxxx_yyyy_zzzz.tgz where : XXXX denotes the supported web server. YYYY denotes the build number of / Load Balancer. ZZZZ denotes the OS platform. The zip file for the NSE / iplanet Web Server contains the following files : File disp_ns.dll Description The module itself (if installing on a Windows platform). dispatcher_ns_yyyy_zzzz.so The module itself (if installing on a Unix platform,yyyy denotes the build version of the module, ZZZZ the Unix platform). obj.conf.disp dispatcher.any dispatcher1.1.any README An example configuration file for the NSE /iplanet. An example configuration file for the / Load Balancer. An example configuration file for / Load Balancer Versions older then 1.2 (build number YYYY < 5100) Quick Installation Guide. To add the module to the NSE / iplanet Web Server do the following : Place the module in NSE / iplanet's plugin directory which is usually the <IPLANET_ROOT>/plugins directory. For easier handling on Unix it may be helpful to create a symbolic link named mod_dispatcher.so to the Load Balancer / module: > ln -s dispatcher_ns_xxxx_yyyy.so mod_dispatcher.so Configure NSE / iplanet for / Load Balancer The configuration file of the Apache Web Server named obj.conf needs to be adapted. In the modules zip file you will find an example configuration file named obj.conf.disp. To get the dispatcher plugin recognized by the Web Server, you have to add it to the initialization section of the obj.conf. (please note that the following configurations should be all on one line and the $(SERVER_ROOT) and $(PRODUCT_SUBDIR) must be replaced by the respective values) :... Init fn="load-modules" funcs="dispservice,dispinit" shlib="$(server_root)/plugins/dispatcher_ns.so"... Page 41/55
44 Then init the dispatcher with some configuaration arguments:... Init fn="dispinit" config="$(product_subdir)/dispatcher.any" logfile="$(product_subdir)/logs/dispatcher.log" loglevel="3"... Parameter Description config Location and name of the modules configuration file <font face = "courier">dispatcher.any</font>. logfile loglevel Location and name of the modules log file. Log level for the modules log file :<font face = "courier"> 0 Errors 1 Warnings 2 Infos 3 Debug </font>it is recommended to set the log level to 3 during installation and testing and to 0 when running in a production environment. Now depeding of your needs, add the dispatcher as service for your desired objects. The simplest case is just use the dispatcher for the entire site, so just modify the default object:... <Object name="default"> NameTrans fn="document-root" root="$(product_subdir)/dispcache" PathCheck fn="unix-uri-clean" ObjectType fn="type-by-extension" ObjectType fn="force-type" type="text/plain" Service fn="dispservice" method="(get HEAD POST)" type="*/*" Service method="(get HEAD)" type="*/*" fn="send-file" AddLog fn="flex-log" name="access" </Object>... Before you can start using the / Load Balancer module you must fist configure the module itself and the Communiqué instances responsible for cache flushing. Page 42/55
45 1.7. Configuration By default, the dispatcher configuration is stored in the file dispatcher.any. You may change the name and location of this file during installation. The file has the following general structure: /name "internet-server" /farms # List of Web sites that are handled by the dispatcher One dispatcher can cover a number of Web sites, such as intranet.mycompany.com, internet.mycompany.com and For each Web site, you can specify separate caching and rendering parameters. The configuration for each Web site looks as follows (note that the first header, mycompany, is the name of the section): /mycompany /clientheaders # List of headers that are passed on /virtualhosts # List of URLs for this Web site /sessionmanagement # settings for user authentification /renders # List of Communiqué instances that render the documents /filter # List of filters /cache # Cache configuration /rules # List of cachable documents /invalidate # List of auto-invalidated documents /statistics /categories # The document categories that are used for load balancing estimates /stickyconnectionsfor "/myfolder" Page 43/55
46 Page 44/55
47 Configuring the Virtual Hosts The virtual hosts section is a list of all the hostnames/uri combinations that the dispatcher accepts for this Web site. For example, the section /virtualhosts " " handles the requests for both the.com and the.ch address. Note that you can use the asterisk ("*") character, so you could also write /virtualhosts " to handle the requests for all mycompany domains. If you want the dispatcher to handle all requests that come its way, you can use /virtualhosts "*" If you use more than one render farm, the dispatcher always uses the first farm where the request matches the virtual host list. In the following example, all the pages in the "product" folder are sent to server 1, all other pages to server 2. Note that for clarity, the example contains only the sections that are relevant to this discussion. /farms /myproducts /virtualhosts " /renders /hostname "server1.mycompany.com" /port "80" /mycompany /virtualhosts " /renders /hostname "server2.mycompany.com" /port "80" Page 45/55
48 Configuring Session Management and Authentification This feature allows you to create a secure session for access to the render farm. Users need to log in before they can access any page in the farm, and have access to all pages after logging in. If you have separate sections of your Web site with different access, you need to specify multiple render farms. <B>/directory </B>(mandatory)<B> </B>The directory that stores the session information. If the directory does not exist, it is created. <B>/encode </B>(optional)<B> </B>How the session information is encoded. Use md5 for an encryption using the md5 algorithm, or hex for hexadecimal encoding. If you encrypt the session data, a user with access to the file system cannot read the session contents. The default is md5. <B>/header</B> (optional) The name of the HTTP header or cookie that stores the authorization information. If you store the information in the http header, use HTTP: and the name if the header. To store the information in a cookie, use Cookie: and the name of the cookie. If you do not specify a value, is used. <B>/timeout</B> (optional) The number of seconds until the session times out after it has been used last. If not specified, 800 is used, so the session times out a little over 13 minutes after the last request of the user. A typical configuration entry may look as follows: /sessionmanagement /directory "/usr/local/apache/.sessions" /encode "md5" /header " /timeout "800" Page 46/55
49 Configuring the Client Headers This is a list of all the HTTP headers that are passed from the client to the Communiqué instance. By default, the dispatcher passes the standard HTTP headers on to the Communiqué instance. In some instances, you may want more headers (such as custom headers) or less (such as authentication headers, which need only concern the Web server). If you need a special set of headers, you have to specify the entire set of headers that are passed on, including those that are passed on by default. Such a list might look as follows: /clientheaders "referer" "user-agent" "authorization" "from" "content-type" "content-length" "accept-charset" "accept-encoding" "accept-language" "accept" "host" "if-match" "if-none-match" "if-range" "if-unmodified-since" "max-forwards" "proxy-authorization" "proxy-connection" "range" "cookie" "cq-action" "cq-handle" "handle" "action" "cqstats" Page 47/55
50 Configuring the Rendering Communiqué Instance(s) This section configures where the dispatcher will send requests to render a document. If you use a single Communiqué instance for rendering, you can specify it as follows: /renders /myrenderer /hostname "cq.mycompany.com" /port "80" If the Communiqué instance runs on the same computer as the dispatcher, use /renders /myrenderer /hostname " " /port "3402" If you use multiple Communiqué instances, specify them as follows. The load balancer will try to spread the expected workload equally among all Communiqué instances. /renders /myfirstrenderer /hostname "cq.mycompany.com" /port "80" /mysecondrenderer /hostname " " /port "3402" Page 48/55
51 Configuring Filters Using filters, you can specify which requests the dispatcher module handles. Any requests that are not covered by the filters are sent back to the server, where they are offered to the other modules that run on the Web server. This allows you for example to exclude ASP pages from the dispatcher. If you want the dispatcher to handle all files, use: /filter /0001 /glob "*" /type "allow" The following filter does not handle ASP pages: /filter /0001 /glob "*" /type "allow" /0002 /glob "*.asp" /type "deny" Note that you can match for the entire request line, not just the URI. The following filter does not handle form data submitted by the post method: /filter /0001 /glob "*" /type "allow" /0002 /glob "POST *" /type "deny" Do not confuse the filter and cache rules paragraphs. If a request is not covered by a filter, the dispatcher ignores it and it is sent to the other Web server modules. In contrast, if a request passes the filter but is not cached, the dispatcher sends it to the Communiqué instance. Page 49/55
52 Configuring the Cache Parameters The cache parameters specify some general aspects of how and where the dispatcher caches documents. The following options are supported: <B>/docroot </B>This link points to the document root of the Web server. This is where the dispatcher stores the cached documents, and this is where the Web server looks for them. If you use multiple render farms, you have to specify different document roots on the Web server for each farm, and use the corresponding link here. <B>/statfile </B>This link points to the so-called statfile, which the dispatcher uses to keep track of the last content update. This can be any file on the Web server. The file itself is empty, only the timestamp is used. <B> /allowauthorized </B>By default, requests that carry an authentication header are not cached. This is because authentication is not checked when a document is returned from the cache, so the document may be displayed for a user who does not have the necessary rights. However, in some setups it can be possible to cache authenticated documents. <B>/propagateSyndPost </B>By default, syndication requests are not sent to the Communiqué instance, because they are usually intended for the dispatcher only. By setting this flag to 1, you can pass syndication requests through the dispatcher if necessary. Note: If this flag is set, you must make sure that POST requests are not denied in the filter section. A typical cache section might look as follows: /cache /docroot "/opt/communique/dispatcher/cache" /statfile "/tmp/dispatcher-website.stat" /allowauthorized "0" /propagatesyndpost "0" /rules # List of files that are cached /invalidate # List of files that are auto-invalidated Page 50/55
53 Configuring the List of Cachable Documents The list of cachable documents determines which documents are cached. Remember that the dispatcher never caches a document in the following instances: If the HTTP method is not GET. Other common methods are POST for form data and HEAD for the HTTP header. If the request URI contains a question mark ("?"). This usually indicates a dynamic page, such as a search result, which does not need to be cached. The file extension is missing. The Web server needs the extension to determine the document type (the MIME-type). The authentication header is set (this can be configured) If you do not have dynamic pages beyond those already excluded by the above rules, you can let the dispatcher cache everything. The rules section for this looks as follows (note that "0000" merely denotes the first rule - you can name or number the rules in any way you like): /rules /0000 /glob "*" /type "allow" If there are some sections of your page that are dynamic, such as, say, a news application and a closed user group, you can define exceptions. Note that closed user groups must not be cached because the user rights are not checked for cached pages. /rules /0000 /glob "*" /type "allow" /0001 /glob "/home/news/*" /type "deny" /0002 /glob "*/private/*" /type "deny" You can also compress the cached documents. This works only on Apache Web servers and allows Apache to return the document in a compressed form if the client requests this. Note that currently, only the "gzip" format is supported. The following rule caches all documents in compressed form, so Apache can return either the uncompressed or the compressed form to the client: Page 51/55
54 /rules /rulelabel /glob "*" /type "allow" /compress "gzip" Page 52/55
55 Configuring the List of Auto-Invalidate Documents This list contains all the documents that are automatically rendered invalid after a content update. Note that the dispatcher does not physically delete the pages after the content update, but checks them for validity when they are requested. Documents in the cache that are not auto-invalidated will remain in the cache until they are deleted by a content update. Auto-invalidate is typically used for HTML pages. Because HTML pages typically contain links to other pages and navigations, it is very hard to find out if a page is affected by a content update. To stay on the safe side, you usually auto-invalidate all HTML pages. The configuration entry for this looks as follows: /invalidate /0000 /glob "*" /type "deny" /0001 /glob "*.html" /type "allow" If you offer automatically generated PDF and ZIP files for download, you may have to auto-invalidate these as well. The configuration entry for this looks as follows: /invalidate /0000 /glob "*" /type "deny" /0001 /glob "*.html" /type "allow" /0002 /glob "*.zip" /type "allow" /0003 /glob "*.pdf" /type "allow" Page 53/55
56 Configuring Statistics The statistics section defines the categories that the dispatcher uses for load balancing estimates. The dispatcher keeps a list of typical response times per Communiqué instance per request category. When the dispatcher needs to render a document, it checks these lists to find out which Communiqué instance currently has the most resources to handle it, and it reserves these resources when considering future requests. The statistics are internal and there is no way to access them from outside. By default, the dispatcher makes a distinction between HTML documents and everything else. The default statistics section looks as follows: /statistics /categories /html /glob "*.html" /others /glob "*" If you want to add a special category for search pages, the section would look as follows. Note that the more specific requests must be stated first: /statistics /categories /search /glob "*search.html" /html /glob "*.html" /others /glob "*" If you do not use load balancing, you can omit this section. Page 54/55
57 Configuring Sticky Connections You can define one folder that contains sticky documents. The dispatcher sends all requests from one user that are in this folder to the same Web server. This ensures that session data is present and consistent for all documents. To define sticky connections for the folder /myfolder, use the following line: /stickyconnectionsfor "/myfolder" Page 55/55
1. Configuring the Dispatcher / Load Balancer
1. To configure the Dispatcher / Load Balancer you must adapt is configuration file, usually named dispatcher.any. The name and location you had to define in the web servers configuration file during installation.
THE PROXY SERVER 1 1 PURPOSE 3 2 USAGE EXAMPLES 4 3 STARTING THE PROXY SERVER 5 4 READING THE LOG 6
The Proxy Server THE PROXY SERVER 1 1 PURPOSE 3 2 USAGE EXAMPLES 4 3 STARTING THE PROXY SERVER 5 4 READING THE LOG 6 2 1 Purpose The proxy server acts as an intermediate server that relays requests between
Configuring Apache HTTP Server With Pramati
Configuring Apache HTTP Server With Pramati 45 A general practice often seen in development environments is to have a web server to cater to the static pages and use the application server to deal with
An Introduction To The Web File Manager
An Introduction To The Web File Manager When clients need to use a Web browser to access your FTP site, use the Web File Manager to provide a more reliable, consistent, and inviting interface. Popular
10. Java Servelet. Introduction
Chapter 10 Java Servlets 227 10. Java Servelet Introduction Java TM Servlet provides Web developers with a simple, consistent mechanism for extending the functionality of a Web server and for accessing
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
CGI An Example. CGI Model (Pieces)
CGI An Example go to http://127.0.0.1/cgi-bin/hello.pl This causes the execution of the perl script hello.pl Note: Although our examples use Perl, CGI scripts can be written in any language Perl, C, C++,
DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server
DEPLOYMENT GUIDE Version 1.0 Deploying the BIG-IP LTM with Apache Tomcat and Apache HTTP Server Table of Contents Table of Contents Deploying the BIG-IP LTM with Tomcat application servers and Apache web
BusinessObjects Enterprise XI Release 2
BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of
FTP Service Reference
IceWarp Server FTP Service Reference Version 10 Printed on 12 August, 2009 i Contents FTP Service 1 V10 New Features... 2 FTP Access Mode... 2 FTP Synchronization... 2 FTP Service Node... 3 FTP Service
Configuring Microsoft IIS 5.0 With Pramati Server
Configuring Microsoft IIS 5.0 With Pramati Server 46 Microsoft Internet Information Services 5.0 is a built-in web server that comes with Windows 2000 operating system. An earlier version, IIS 4.0, is
Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server
Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server This document describes how to configure Apache HTTP Server
DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010
DEPLOYMENT GUIDE Version 2.1 Deploying F5 with Microsoft SharePoint 2010 Table of Contents Table of Contents Introducing the F5 Deployment Guide for Microsoft SharePoint 2010 Prerequisites and configuration
Graphviz Website Installation, Administration and Maintenance
Graphviz Website Installation, Administration and Maintenance 1 Overview The graphviz.org website is based on the Drupal content management system. Drupal uses a MySql database to store web pages and information
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see
Working With Virtual Hosts on Pramati Server
Working With Virtual Hosts on Pramati Server 13 Overview Virtual hosting allows a single machine to be addressed by different names. There are two ways for configuring Virtual Hosts. They are: Domain Name
Enterprise SSL Support
01 Enterprise SSL Support This document describes the setup of SSL (Secure Sockets Layer) over HTTP for Enterprise clients, servers and integrations. 1. Overview Since the release of Enterprise version
User Guide Zend Server Community 4.0.3
User Guide Zend Server Community 4.0.3 By Zend Technologies www.zend.com Table of Contents Abstract... 1 Password Management... 1 Support... 2 Zend Support Center... 2 Administration Interface... 3 General
Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server
Configuration Guide Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server This document is revised for SAS 9.3. In previous versions
IIS SECURE ACCESS FILTER 1.3
OTP SERVER INTEGRATION MODULE IIS SECURE ACCESS FILTER 1.3 Copyright, NordicEdge, 2006 www.nordicedge.se Copyright, 2006, Nordic Edge AB Page 1 of 14 1 Introduction 1.1 Overview Nordic Edge One Time Password
LabVIEW Internet Toolkit User Guide
LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,
Sitecore InDesign Connector 1.1
Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page
Front-End Performance Testing and Optimization
Front-End Performance Testing and Optimization Abstract Today, web user turnaround starts from more than 3 seconds of response time. This demands performance optimization on all application levels. Client
Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal
Guideline Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal Product(s): IBM Cognos ReportNet Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).
Administering Jive for Outlook
Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4
Sonatype CLM Enforcement Points - Continuous Integration (CI) Sonatype CLM Enforcement Points - Continuous Integration (CI)
Sonatype CLM Enforcement Points - Continuous Integration (CI) i Sonatype CLM Enforcement Points - Continuous Integration (CI) Sonatype CLM Enforcement Points - Continuous Integration (CI) ii Contents 1
Fachgebiet Technische Informatik, Joachim Zumbrägel
Computer Network Lab 2015 Fachgebiet Technische Informatik, Joachim Zumbrägel Overview Internet Internet Protocols Fundamentals about HTTP Communication HTTP-Server, mode of operation Static/Dynamic Webpages
Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2
Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 This document describes how to configure Apache HTTP Server
SecuritySpy Setting Up SecuritySpy Over SSL
SecuritySpy Setting Up SecuritySpy Over SSL Secure Sockets Layer (SSL) is a cryptographic protocol that provides secure communications on the internet. It uses two keys to encrypt data: a public key and
JOSSO 2.4. Internet Information Server (IIS) Tutorial
JOSSO 2.4 Internet Information Server (IIS) Tutorial JOSSO 2.4 : Internet Information Server (IIS) Tutorial 1. Introduction... 1 2. Prerequisites... 2 3. Defining Identity Appliance Elements... 3 3.1.
HTTP. Internet Engineering. Fall 2015. Bahador Bakhshi CE & IT Department, Amirkabir University of Technology
HTTP Internet Engineering Fall 2015 Bahador Bakhshi CE & IT Department, Amirkabir University of Technology Questions Q1) How do web server and client browser talk to each other? Q1.1) What is the common
Git - Working with Remote Repositories
Git - Working with Remote Repositories Handout New Concepts Working with remote Git repositories including setting up remote repositories, cloning remote repositories, and keeping local repositories in-sync
Using Logon Agent for Transparent User Identification
Using Logon Agent for Transparent User Identification Websense Logon Agent (also called Authentication Server) identifies users in real time, as they log on to domains. Logon Agent works with the Websense
APACHE WEB SERVER. Andri Mirzal, PhD N28-439-03
APACHE WEB SERVER Andri Mirzal, PhD N28-439-03 Introduction The Apache is an open source web server software program notable for playing a key role in the initial growth of the World Wide Web Typically
Load testing with. WAPT Cloud. Quick Start Guide
Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica
Created by : Ashish Shah, J.M. PATEL COLLEGE UNIT-5 CHAP-1 CONFIGURING WEB SERVER
UNIT-5 CHAP-1 CONFIGURING WEB SERVER 1 APACHE SERVER The Apache Web server is the most popular Web server on the planet. Individuals and organizations use Linux primarily to create an inexpensive and stable
How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises)
How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) COMPANY: Microsoft Corporation RELEASED: September 2013 VERSION: 1.0 Copyright This document is provided "as-is". Information
FileMaker Server 11. FileMaker Server Help
FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
Installing Apache Software
Web Server Web Server Is a software application that uses the HyperText Transfer Protocol. Running on computer connected to Internet. Many Web Server software applications: Public domain software from
W3Perl A free logfile analyzer
W3Perl A free logfile analyzer Features Works on Unix / Windows / Mac View last entries based on Perl scripts Web / FTP / Squid / Email servers Session tracking Others log format can be added easily Detailed
Installing AWStats on IIS 6.0 (Including IIS 5.1) - Revision 3.0
AWStats is such a great statistical tracking program to use, but there seems to be a lack of easy-tofollow documentation available for installing AWStats on IIS. This document covers the basic setup process
Configuring Nex-Gen Web Load Balancer
Configuring Nex-Gen Web Load Balancer Table of Contents Load Balancing Scenarios & Concepts Creating Load Balancer Node using Administration Service Creating Load Balancer Node using NodeCreator Connecting
How To Link Tomcat 5 with IIS 6 on Windows 2003 Server using the JK2 ajp13 connector
How To Link Tomcat 5 with IIS 6 on Windows 2003 Server using the JK2 ajp13 connector Copyright 2003 TJ and 2XP Group ([email protected]) Contents 1. History 2. Introduction 3. Summary 4. Prerequisites
DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g
DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1
Greenstone Documentation
Greenstone Documentation Web library and Remote Collection Building with GLI Client Web Library. This enables any computer with an existing webserver to serve pre-built Greenstone collections. As with
Cache Configuration Reference
Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
Integrating the F5 BigIP with Blackboard
Integrating the F5 BigIP with Blackboard Nick McClure [email protected] Lead Systems Programmer University of Kentucky Created August 1, 2006 Last Updated June 17, 2008 Integrating the F5 BigIP with Blackboard
Configuring Single Sign-on for WebVPN
CHAPTER 8 This chapter presents example procedures for configuring SSO for WebVPN users. It includes the following sections: Using Single Sign-on with WebVPN, page 8-1 Configuring SSO Authentication Using
CommonSpot Content Server Version 6.2 Release Notes
CommonSpot Content Server Version 6.2 Release Notes Copyright 1998-2011 PaperThin, Inc. All rights reserved. About this Document CommonSpot version 6.2 updates the recent 6.1 release with: Enhancements
One of the fundamental kinds of Web sites that SharePoint 2010 allows
Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental
1. When will an IP process drop a datagram? 2. When will an IP process fragment a datagram? 3. When will a TCP process drop a segment?
Questions 1. When will an IP process drop a datagram? 2. When will an IP process fragment a datagram? 3. When will a TCP process drop a segment? 4. When will a TCP process resend a segment? CP476 Internet
http://alice.teaparty.wonderland.com:23054/dormouse/bio.htm
Client/Server paradigm As we know, the World Wide Web is accessed thru the use of a Web Browser, more technically known as a Web Client. 1 A Web Client makes requests of a Web Server 2, which is software
TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS
White Paper TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS Abstract This white paper explains how to diagnose and troubleshoot issues in the RSA Access Manager single sign-on
Crawl Proxy Installation and Configuration Guide
Crawl Proxy Installation and Configuration Guide Google Enterprise EMEA Google Search Appliance is able to natively crawl secure content coming from multiple sources using for instance the following main
OrgPublisher 11 Web Administration Installation for Windows 2008 Server
OrgPublisher 11 Web Administration Installation for Windows 2008 Server Table of Contents Web Administration Installation Guide for Windows 2008 Server Installing IIS 7 on Server 2008... 4 Installing OrgPublisher
Web Performance. Lab. Bases de Dados e Aplicações Web MIEIC, FEUP 2014/15. Sérgio Nunes
Web Performance Lab. Bases de Dados e Aplicações Web MIEIC, FEUP 2014/15 Sérgio Nunes Web Performance Web optimization techniques are designed to improve the overall response time of a web application
IceWarp Unified Communications. AntiVirus Reference. Version 10.4
IceWarp Unified Communications AntiVirus Reference Version 10.4 Printed on 13 January, 2012 Contents AntiVirus 1 Anti-Virus... 2 Latest Avast! Engine... 2 Kaspersky Anti-Virus Support... 2 Support for
Collax Web Security. Howto. This howto describes the setup of a Web proxy server as Web content filter.
Collax Web Security Howto This howto describes the setup of a Web proxy server as Web content filter. Requirements Collax Business Server Collax Security Gateway Collax Platform Server including Collax
600-152 People Data and the Web Forms and CGI CGI. Facilitating interactive web applications
CGI Facilitating interactive web applications Outline In Informatics 1, worksheet 7 says You will learn more about CGI and forms if you enroll in Informatics 2. Now we make good on that promise. First
Improved document archiving speeds; data enters the FileNexus System at a faster rate! See benchmark test spreadsheet.
Feature Sheet Version 6.100.14 FileNexus Major Advances Client Server Communication - Dependency on Windows DCOM protocols eliminated which means NO additional configuration required on Client PCs after
OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.
OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.com Contents What is OutDisk?... 3 OutDisk Requirements... 3 How Does
OVERVIEW OF ASP. What is ASP. Why ASP
OVERVIEW OF ASP What is ASP Active Server Pages (ASP), Microsoft respond to the Internet/E-Commerce fever, was designed specifically to simplify the process of developing dynamic Web applications. Built
Flight Workflow User's Guide. Release 12.0.0
Flight Workflow User's Guide Release 12.0.0 Copyright 2015 Signiant Inc. All rights reserved. Contents CHAPTER 1 Flight Introduction 4 FlightUploadReference 4 FlightDownloadReference 4 Cloud Storage Configuration
JTouch Mobile Extension for Joomla! User Guide
JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed
How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008.
1 How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008. By & Steve Smith, MVP SharePoint Server, MCT Penny Coventry, MVP SharePoint Server, MCT Combined
Web Service Reference
IceWarp Unified Communications Reference Version 11.3 Published on 2/27/2015 Contents... 4 About... 5 Reference... 6 General... 6 Web Site... 7 Options... 9 Access... 11 Scripting... 14 MIME... 16 Documents...
Tips and Tricks SAGE ACCPAC INTELLIGENCE
Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,
Tutorial for Avaya 4600 and 9600 Series IP Telephones Push and Browser Applications Setup
Tutorial for Avaya 4600 and 9600 Series IP Telephones Push and Browser Applications Setup 1 of 25 Contents About this Tutorial... 3 Intended Audience... 3 Prerequisites... 3 Chapter 1: Overview of Avaya
multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158
Index A Active Directory Active Directory nested groups, 96 creating user accounts, 67 custom authentication, 66 group members cannot log on, 153 mapping certificates, 65 mapping user to Active Directory
Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files
About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end
AD Phonebook 2.2. Installation and configuration. Dovestones Software
AD Phonebook 2.2 Installation and configuration 1 Table of Contents Introduction... 3 AD Self Update... 3 Technical Support... 3 Prerequisites... 3 Installation... 3 Adding a service account and domain
TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual
TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED
BarTender Web Print Server
The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender Web Print Server Web-based Software for Printing Barcodes, Labels, ID Cards and more. Contents Introduction to
SchoolBooking SSO Integration Guide
SchoolBooking SSO Integration Guide Before you start This guide has been written to help you configure SchoolBooking to operate with SSO (Single Sign on) Please treat this document as a reference guide,
PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM
White Paper PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM Abstract This white paper explains how to setup Proxy
metaengine DataConnect For SharePoint 2007 Configuration Guide
metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect for SharePoint 2007 Configuration Guide (2.4) Page 1 Contents Introduction... 5 Installation and deployment... 6 Installation...
Password Memory 6 User s Guide
C O D E : A E R O T E C H N O L O G I E S Password Memory 6 User s Guide 2007-2015 by code:aero technologies Phone: +1 (321) 285.7447 E-mail: [email protected] Table of Contents Password Memory 6... 1
Quick Start Guide. Installation and Setup
Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology
USERS MANUAL FOR OWL A DOCUMENT REPOSITORY SYSTEM
USERS MANUAL FOR OWL A DOCUMENT REPOSITORY SYSTEM User Manual Table of Contents Introducing OWL...3 Starting to use Owl...4 The Logging in page...4 Using the browser...6 Folder structure...6 Title Bar...6
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...
SharePoint Integration Framework Developers Cookbook
Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
Citrix Access Gateway Plug-in for Windows User Guide
Citrix Access Gateway Plug-in for Windows User Guide Access Gateway 9.2, Enterprise Edition Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance
Xtreeme Search Engine Studio Help. 2007 Xtreeme
Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to
reference: HTTP: The Definitive Guide by David Gourley and Brian Totty (O Reilly, 2002)
1 cse879-03 2010-03-29 17:23 Kyung-Goo Doh Chapter 3. Web Application Technologies reference: HTTP: The Definitive Guide by David Gourley and Brian Totty (O Reilly, 2002) 1. The HTTP Protocol. HTTP = HyperText
Description of Microsoft Internet Information Services (IIS) 5.0 and
Page 1 of 10 Article ID: 318380 - Last Review: July 7, 2008 - Revision: 8.1 Description of Microsoft Internet Information Services (IIS) 5.0 and 6.0 status codes This article was previously published under
Apache Server Implementation Guide
Apache Server Implementation Guide 340 March Road Suite 600 Kanata, Ontario, Canada K2K 2E4 Tel: +1-613-599-2441 Fax: +1-613-599-2442 International Voice: +1-613-599-2441 North America Toll Free: 1-800-307-7042
How To Install Amyshelf On Windows 2000 Or Later
Contents I Table of Contents Part I Document Overview 2 Part II Document Details 3 Part III Setup 4 1 Download & Installation... 4 2 Configure MySQL... Server 6 Windows XP... Firewall Settings 13 3 Additional
FileMaker Server 10 Help
FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo
ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5
Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5 TOPIC 1A: APPLY STATIONERY AND THEMES... 6 Apply Stationery and Themes... 6 TOPIC 1B: CREATE A CUSTOM
Xerox 700 Digital Color Press with Integrated Fiery Color Server. Printing from Mac OS
Xerox 700 Digital Color Press with Integrated Fiery Color Server Printing from Mac OS 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product.
Web Page Redirect. Application Note
Web Page Redirect Application Note Table of Contents Background... 3 Description... 3 Benefits... 3 Theory of Operation... 4 Internal Login/Splash... 4 External... 5 Configuration... 5 Web Page Redirect
Server Setup. Basic Settings
Server Setup Basic Settings CrushFTP has two locations for its preferences. The basic settings are located under the "Prefs" tab on the main screen while the advanced settings are under the file menu.
http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0
1 Installation and Configuration v2.0 2 Installation...3 Prerequisites...3 RPM Installation...3 Manual *nix Installation...4 Setup monitoring...5 Upgrade...6 Backup configuration files...6 Disable Monitoring
MAPI Connector Overview
The CommuniGate Pro Server can be used as a "service provider" for Microsoft Windows applications supporting the MAPI (Microsoft Messaging API). To use this service, a special Connector library (CommuniGate
SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System
Setting up a Sitellite development environment on Windows Sitellite Content Management System Introduction For live deployment, it is strongly recommended that Sitellite be installed on a Unix-based operating
Online Backup Client User Manual
For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.
