Changeset 2518
- Timestamp:
- 11/07/03 10:47:07 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/branch-4-0/mapserver_docs/wms-server-howto.xml
r2517 r2518 16 16 </affiliation> 17 17 </author> 18 <date>2003- 07-29</date>18 <date>2003-11-07</date> 19 19 <abstract> 20 20 <!-- a short description of the contents of the doc --> … … 23 23 the use of MapServer v3.5 (and later). 24 24 </para> 25 <para>Last Updated: 07/29/2003</para>25 <para>Last Updated: 2003-11-07</para> 26 26 </abstract> 27 27 </articleinfo> … … 545 545 But anyway, even if it's valid, the above URL is still ugly. And you might 546 546 want to use a nicer URL for your WMS Online Resource URL. Here are some 547 suggestions, some of them will work only on Unix, but at least #2 will 548 work for Windows/Apache users as well. 547 suggestions: 549 548 </para> 550 549 <orderedlist> … … 589 588 </listitem> 590 589 </itemizedlist> 590 </listitem> 591 <listitem> 592 <para> 593 On IIS servers (Windows), you can use the following ASP script: 594 </para> 595 <programlisting> 596 <% 597 Server.ScriptTimeout = 360 598 strRequest = Request.ServerVariables("QUERY_STRING") 599 strURL = "http://myserver/cgi-bin/mapserv.exe?map=C:\Inetpub\wwwroot\WMS\mymap.map&" & strRequest 600 Dim objHTTP 601 Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP") 602 objHTTP.open "GET", strURL, false 603 objHTTP.send "" 604 Response.ContentType = objHTTP.getResponseHeader("content-type") 605 Response.BinaryWrite objHTTP.responseBody 606 Set objHTTP = Nothing 607 %> 608 </programlisting> 591 609 </listitem> 592 610 </orderedlist>
