<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwizguide.com/rss_namespace/">
 <channel>
  <title>Layer47 Forum</title>
  <link>http://www.layer47.com/forum/</link>
  <description>This is an XML content feed of; Layer47 Forum : Last 10 Posts</description>
  <copyright>Copyright (c) 2006-2008 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 30 Jul 2010 04:16:44 +0000</pubDate>
  <lastBuildDate>Fri, 26 Mar 2010 17:38:09 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.51</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>www.layer47.com/forum/RSS_topic_feed.asp</WebWizForums:feedURL>
  <image>
   <title>Layer47 Forum</title>
   <url>http://www.layer47.com/forum/forum_images/LAYER47.jpg</url>
   <link>http://www.layer47.com/forum/</link>
  </image>
  <item>
   <title>General Discussion : HTML to PDF Converter</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=28&amp;PID=36#36</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=17" rel="nofollow">smithmiller6</a><br /><strong>Subject:</strong> HTML to PDF Converter<br /><strong>Posted:</strong> 26 Mar 2010 at 5:38pm<br /><br />The Free HTML to PDF Converter is a .NET 2.0 managed application which was built with the Winnovative HTML to PDF Converter Library for .NET. The application does not require any printer driver installation or other third party tools and is delivered as a simple Windows .exe file. You can convert to PDF any Web page from a specified or HTML/MHT file from the disk completely for free. The resulted PDF has no stamps on it or other limitations. The application allows you to add headers and footers, page numbers, set page size, page orientation and PDF compression level, embed true type fonts. Using the same application you can also convert HTML to BMP, JPEG, PNG or any other format.<br><br>__________________<br>&nbsp;<a href="http://www.winnovative-software.com/" target="_blank">html to pdf converter</a><br><br><span style="font-size:10px"><br /><br />Edited by smithmiller6 - 20 May 2010 at 2:11pm</span>]]>
   </description>
   <pubDate>Fri, 26 Mar 2010 17:38:09 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=28&amp;PID=36#36</guid>
  </item> 
  <item>
   <title>Traffic Scripting : Simple URL Redirect</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=22&amp;PID=28#28</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=5" rel="nofollow">JonathanDade</a><br /><strong>Subject:</strong> Simple URL Redirect<br /><strong>Posted:</strong> 14 Jan 2010 at 10:28am<br /><br />var gaJsHost = (("https:" == document.location.protocol) ?"https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); Hi Jake,<DIV>&nbsp;</DIV><DIV>We liked this question, here in the Layer 47 Geek Farm. So we started working on it.</DIV><DIV>&nbsp;</DIV><DIV>What we thought was to be genuinely generic it would need to handle more than just adding the new hostname on the beginning. What if the request was SSL or if there is a query string?</DIV><DIV>&nbsp;</DIV><DIV>Here is what we finally came up with:</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>##<BR># Redirect a request from a domain to the www host<BR>##</DIV><DIV><BR>#<BR># Don't run the script if the host is already www......<BR># <BR>if ( string.startsWith( http.getHostHeader(), "www." ) )<BR>{<BR>&nbsp; break;<BR>}</DIV><DIV>#<BR># Get the request parts needed<BR>#<BR>$host = "<a href="http://www..http.getHostHeader" target="_blank">www.".http.getHostHeader</A>();<BR>$path = http.getPath();<BR>$query = http.getRawQueryString();</DIV><DIV>#<BR># Checking the protocol from the client<BR>#<BR>if ( ssl.isSSL() )<BR>{<BR>&nbsp; $protocol = "https://";<BR>} else {<BR>&nbsp; $protocol = "http://";<BR>}</DIV><DIV>#<BR># Define the location string ready for the redirect<BR>#<BR>$location = "Location: ".$protocol.$host.$path;</DIV><DIV>#<BR># Check if there is a query string in the request<BR>#<BR>if ( $query != "" )<BR>{<BR>&nbsp; $location = $location."?".$query;<BR>}</DIV><DIV>#<BR># Send the client to the right place<BR>#<BR>http.sendResponse( "301 Moved Permanently", "text/html", "", $location );</DIV><DIV></pre></td></tr></table></DIV><DIV>&nbsp;</DIV><DIV>I hope this helps.<BR></DIV>< ="http://www.google-analytics.com/ga.js" =text/>try { var pageTracker = _gat._getTracker("UA-491206-7");pageTracker._trackPageview();} catch(err) {} ]]>
   </description>
   <pubDate>Thu, 14 Jan 2010 10:28:53 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=22&amp;PID=28#28</guid>
  </item> 
  <item>
   <title>Traffic Scripting : Simple URL Redirect</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=22&amp;PID=27#27</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=20" rel="nofollow">jakevs</a><br /><strong>Subject:</strong> Simple URL Redirect<br /><strong>Posted:</strong> 11 Jan 2010 at 12:13pm<br /><br />Hi again, <br /><br />Some clarification on what I meant...<br /><br />Can I have  a <em>generic</em> rule that I can apply to all my virtual servers (i.e. not having to specify the domain name in the rule?<br /><br />Thank you<br /><br />Jake<br /><table width="99%"><tr><td class="BBquote">What should my traffic script look like if I want to forward requests that are sent to e.g. http://whatever.com to http://<strong>www</strong>.whatever.com?<br /></td></tr></table> <span style="font-size:10px"><br /><br />Edited by jakevs - 11 Jan 2010 at 12:13pm</span>]]>
   </description>
   <pubDate>Mon, 11 Jan 2010 12:13:42 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=22&amp;PID=27#27</guid>
  </item> 
  <item>
   <title>Traffic Scripting : Simple URL Redirect</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=22&amp;PID=26#26</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=20" rel="nofollow">jakevs</a><br /><strong>Subject:</strong> Simple URL Redirect<br /><strong>Posted:</strong> 11 Jan 2010 at 12:00pm<br /><br />Hi guys<br /><br />This is probably a silly thing to ask, but it would be useful to have it in a forum like this (especially since I don't play with our ZXTM on a daily basis)<br /><br />What should my traffic script look like if I want to forward requests that are sent to e.g. http://whatever.com to http://<strong>www</strong>.whatever.com?<br /><br />My current script looks like this:<br /><table width="99%"><tr><td class="BBquote"><font face="Courier New, Courier, mono">if( http.getheader( "host" ) == "whatever.com" ){<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http.redirect( "http://www.whatever.com" );<br /><br />}</font></td></tr></table><br />Thanks<br />Jake<span style="font-size:10px"><br /><br />Edited by jakevs - 11 Jan 2010 at 12:16pm</span>]]>
   </description>
   <pubDate>Mon, 11 Jan 2010 12:00:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=22&amp;PID=26#26</guid>
  </item> 
  <item>
   <title>jetNEXUS Enterprise range : X-Forwarded-For Header to jetNEXUS ETM</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=16&amp;PID=19#19</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=14" rel="nofollow">Emily Hawkins</a><br /><strong>Subject:</strong> X-Forwarded-For Header to jetNEXUS ETM<br /><strong>Posted:</strong> 12 Mar 2009 at 4:10pm<br /><br /><a href="http://www.layer47.com/forum/uploads/14/jetNEXUS_Enterprise_Traffic_Manager_add_x_forwarded_for.pdf" target="_blank">uploads/14/jetNEXUS_Enterprise_Traffic_Manager_add_x_forwarded_for.pdf</A> <span style="font-size:10px"><br /><br />Edited by Emily Hawkins - 12 Mar 2009 at 4:10pm</span>]]>
   </description>
   <pubDate>Thu, 12 Mar 2009 16:10:08 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=16&amp;PID=19#19</guid>
  </item> 
  <item>
   <title>jetNEXUS Enterprise range : How to Backup a jetNEXUS ETM</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=15&amp;PID=18#18</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=14" rel="nofollow">Emily Hawkins</a><br /><strong>Subject:</strong> How to Backup a jetNEXUS ETM<br /><strong>Posted:</strong> 12 Mar 2009 at 4:06pm<br /><br />There are two ways to backup a jetNEXUS Traffic Manager: <FONT face=TTFF573990t00 size=3><FONT face=TTFF573990t00 size=3><FONT size=2>The first is to export the configuration that is currently running, and the&nbsp;</FONT><FONT size=2>second is to download a backup that is stored on the machine. The following document gives instructions for both methods. <DIV>&nbsp;</DIV><DIV></FONT></FONT></FONT><a href="http://www.layer47.com/forum/uploads/14/HowTo_backup_a_jetNEXUS_Traffic_Manager.pdf" target="_blank">uploads/14/HowTo_backup_a_jetNEXUS_Traffic_Manager.pdf</A> </DIV><span style="font-size:10px"><br /><br />Edited by Emily Hawkins - 12 Mar 2009 at 4:07pm</span>]]>
   </description>
   <pubDate>Thu, 12 Mar 2009 16:06:59 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=15&amp;PID=18#18</guid>
  </item> 
  <item>
   <title>jetNEXUS Enterprise range : How to Install a License on jetNEXUS ETM</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=14&amp;PID=17#17</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=14" rel="nofollow">Emily Hawkins</a><br /><strong>Subject:</strong> How to Install a License on jetNEXUS ETM<br /><strong>Posted:</strong> 12 Mar 2009 at 4:04pm<br /><br />This document describes how to install a new license on a jetNEXUS Enterprise Traffic Manager <DIV>&nbsp;</DIV><DIV><a href="http://www.layer47.com/forum/uploads/14/How_to_install_a_license_&#111;n_jetNEXUS_Enterprise_Traffic_Manager.pdf" target="_blank">uploads/14/How_to_install_a_license_on_jetNEXUS_Enterprise_Traffic_Manager.pdf</A> </DIV><span style="font-size:10px"><br /><br />Edited by Emily Hawkins - 12 Mar 2009 at 4:05pm</span>]]>
   </description>
   <pubDate>Thu, 12 Mar 2009 16:04:44 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=14&amp;PID=17#17</guid>
  </item> 
  <item>
   <title>jetNEXUS Enterprise range : Install a Certificate on jetNEXUS ETM</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=13&amp;PID=16#16</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=14" rel="nofollow">Emily Hawkins</a><br /><strong>Subject:</strong> Install a Certificate on jetNEXUS ETM<br /><strong>Posted:</strong> 12 Mar 2009 at 4:02pm<br /><br /><DIV>This document describes how to install a certificate onto the jetNEXUS Enterprise Traffic Manager</DIV><DIV>&nbsp;</DIV><DIV><a href="http://www.layer47.com/forum/uploads/14/How_to_install_a_certificate_&#111;n_Traffic_Manager_from_IIS.pdf" target="_blank">uploads/14/How_to_install_a_certificate_on_Traffic_Manager_from_IIS.pdf</A></DIV><span style="font-size:10px"><br /><br />Edited by Emily Hawkins - 12 Mar 2009 at 4:02pm</span>]]>
   </description>
   <pubDate>Thu, 12 Mar 2009 16:02:13 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=13&amp;PID=16#16</guid>
  </item> 
  <item>
   <title>jetNEXUS Enterprise range : Setup an Error Page on jetNEXUS ETM</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=12&amp;PID=15#15</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=14" rel="nofollow">Emily Hawkins</a><br /><strong>Subject:</strong> Setup an Error Page on jetNEXUS ETM<br /><strong>Posted:</strong> 12 Mar 2009 at 3:40pm<br /><br /><FONT size=2>This document details how to upload and configure the enterprise traffic manager to send out a specific page when no back end nodes are available. <DIV>&nbsp;</DIV><DIV><a href="http://www.layer47.com/forum/uploads/14/Add_error_page_&#111;n_the_jetNEXUS_Enterprise_Traffic_Manager.pdf" target="_blank">uploads/14/Add_error_page_on_the_jetNEXUS_Enterprise_Traffic_Manager.pdf</A>&nbsp;</FONT> </DIV><span style="font-size:10px"><br /><br />Edited by Emily Hawkins - 12 Mar 2009 at 3:40pm</span>]]>
   </description>
   <pubDate>Thu, 12 Mar 2009 15:40:19 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=12&amp;PID=15#15</guid>
  </item> 
  <item>
   <title>jetNEXUS Enterprise range : How to Create a CSR for a SSL using jetNEXUS ETM</title>
   <link>http://www.layer47.com/forum/forum_posts.asp?TID=11&amp;PID=14#14</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.layer47.com/forum/member_profile.asp?PF=14" rel="nofollow">Emily Hawkins</a><br /><strong>Subject:</strong> How to Create a CSR for a SSL using jetNEXUS ETM<br /><strong>Posted:</strong> 12 Mar 2009 at 3:37pm<br /><br /><SPAN lang=en-GB style="FONT-WEIGHT: bold; FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: Calibri; mso-default-font-family: Calibri; mso-ascii-font-family: Calibri; mso-latin-font-family: Calibri; mso-greek-font-family: Calibri; mso-cyrillic-font-family: Calibri; mso-armenian-font-family: Calibri; mso-hebrew-font-family: Calibri; mso-currency-font-family: Calibri; mso-latinext-font-family: Calibri; mso-ansi-: en-GB">This document details how to create a Certificate Signed Request (CSR) for the creation of a Signed SSL </SPAN><SPAN lang=en-GB style="FONT-WEIGHT: bold; FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: Calibri; mso-default-font-family: Calibri; mso-ascii-font-family: Calibri; mso-latin-font-family: Calibri; mso-greek-font-family: Calibri; mso-cyrillic-font-family: Calibri; mso-armenian-font-family: Calibri; mso-hebrew-font-family: Calibri; mso-currency-font-family: Calibri; mso-latinext-font-family: Calibri; mso-ansi-: en-GB">Certificate. <DIV>&nbsp;</DIV><DIV><SPAN lang=en-GB style="FONT-WEIGHT: bold; FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: Calibri; mso-default-font-family: Calibri; mso-ascii-font-family: Calibri; mso-latin-font-family: Calibri; mso-greek-font-family: Calibri; mso-cyrillic-font-family: Calibri; mso-armenian-font-family: Calibri; mso-hebrew-font-family: Calibri; mso-currency-font-family: Calibri; mso-latinext-font-family: Calibri; mso-ansi-: en-GB"><a href="http://www.layer47.com/forum/uploads/14/CSR.pdf" target="_blank">uploads/14/CSR.pdf</A> </SPAN></SPAN></DIV><span style="font-size:10px"><br /><br />Edited by Emily Hawkins - 12 Mar 2009 at 3:38pm</span>]]>
   </description>
   <pubDate>Thu, 12 Mar 2009 15:37:39 +0000</pubDate>
   <guid isPermaLink="true">http://www.layer47.com/forum/forum_posts.asp?TID=11&amp;PID=14#14</guid>
  </item> 
 </channel>
</rss>