<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fred's Blog &#187; web</title>
	<atom:link href="http://www.valton.com.au/archives/tag/web/feed" rel="self" type="application/rss+xml" />
	<link>http://www.valton.com.au</link>
	<description>techno-ramblings &#38; miscellanea</description>
	<lastBuildDate>Sat, 05 Dec 2009 00:22:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Standalone Java SSL Client</title>
		<link>http://www.valton.com.au/archives/12</link>
		<comments>http://www.valton.com.au/archives/12#comments</comments>
		<pubDate>Sun, 14 Jun 2009 10:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[engineering]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[languages]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.valton.com.au/?p=12</guid>
		<description><![CDATA[Simple standalone Java SSL client using Apache Commons HTTPClient library: package au.com.valton.sslclient; import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.HttpMethod; import org.apache.commons.httpclient.methods.GetMethod; public class SSLClientMain { public static void main(String[] args) { System.setProperty(&#8220;javax.net.ssl.keyStore&#8221;, &#8220;local_keystore.p12&#8243;); System.setProperty(&#8220;javax.net.ssl.keyStorePassword&#8221;, &#8220;keystore_password&#8221;); System.setProperty(&#8220;javax.net.ssl.keyStoreType&#8221;, &#8220;PKCS12&#8243;); System.setProperty(&#8220;javax.net.ssl.trustStore&#8221;, &#8220;local_truststore.p12&#8243;); System.setProperty(&#8220;javax.net.ssl.trustStorePassword&#8221;, &#8220;trustore_password&#8221;); System.setProperty(&#8220;javax.net.ssl.trustStoreType&#8221;, &#8220;PKCS12&#8243;); System.setProperty(&#8220;javax.net.debug&#8221;, &#8220;ssl&#8221;); HttpMethod httpGet = new GetMethod(); HttpClient httpClient = new HttpClient(); try { httpClient.executeMethod(httpGet); [...]]]></description>
			<content:encoded><![CDATA[<p>Simple standalone Java SSL client using <a href="http://hc.apache.org/httpclient-3.x/">Apache Commons HTTPClient</a> library:<br />
<span id="more-12"></span></p>
<blockquote><p>package au.com.valton.sslclient;</p>
<p>import org.apache.commons.httpclient.HttpClient;<br />
import org.apache.commons.httpclient.HttpMethod;<br />
import org.apache.commons.httpclient.methods.GetMethod;</p>
<p>public class SSLClientMain {</p>
<p>    public static void main(String[] args) {</p>
<p>        System.setProperty(&#8220;javax.net.ssl.keyStore&#8221;, &#8220;local_keystore.p12&#8243;);<br />
        System.setProperty(&#8220;javax.net.ssl.keyStorePassword&#8221;, &#8220;keystore_password&#8221;);<br />
        System.setProperty(&#8220;javax.net.ssl.keyStoreType&#8221;, &#8220;PKCS12&#8243;);</p>
<p>        System.setProperty(&#8220;javax.net.ssl.trustStore&#8221;, &#8220;local_truststore.p12&#8243;);<br />
        System.setProperty(&#8220;javax.net.ssl.trustStorePassword&#8221;, &#8220;trustore_password&#8221;);<br />
        System.setProperty(&#8220;javax.net.ssl.trustStoreType&#8221;, &#8220;PKCS12&#8243;);</p>
<p>        System.setProperty(&#8220;javax.net.debug&#8221;, &#8220;ssl&#8221;);</p>
<p>        HttpMethod httpGet = new GetMethod();<br />
        HttpClient httpClient = new HttpClient();</p>
<p>        try {<br />
            httpClient.executeMethod(httpGet);<br />
            System.out.println(new String(httpGet.getResponseBody()));<br />
        } catch (Exception e) {<br />
            e.printStackTrace();<br />
        }<br />
    }<br />
}
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.valton.com.au/archives/12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developer-centric plugins for Mozilla Firefox</title>
		<link>http://www.valton.com.au/archives/7</link>
		<comments>http://www.valton.com.au/archives/7#comments</comments>
		<pubDate>Thu, 29 Nov 2007 10:36:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[markup]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://localhost/?p=7</guid>
		<description><![CDATA[List of useful developer-centric plugins for Mozilla Firefox: Web Developer Adds a menu and a toolbar with various web developer tools. XML Developer Toolbar Toolbar modeled after Chris Pederick&#8217;s WebDeveloper toolbar, that allows XML Developer&#8217;s use of standard tools all from your browser. Firebug Firebug integrates with Firefox to put a wealth of development tools [...]]]></description>
			<content:encoded><![CDATA[<p>List of useful developer-centric plugins for Mozilla Firefox:<br />
<span id="more-7"></span><br />
<strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/60/addon-60-latest.xpi">Web Developer</a></strong><br />
Adds a menu and a toolbar with various web developer tools.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/2897/addon-2897-latest.xpi">XML Developer Toolbar</a></strong><br />
Toolbar modeled after Chris Pederick&#8217;s WebDeveloper toolbar, that allows XML Developer&#8217;s use of standard tools all from your browser.</p>
<p><!--more--></p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/1843/addon-1843-latest.xpi">Firebug</a></strong><br />
Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/3829/addon-3829-latest.xpi">Live HTTP Headers</a></strong><br />
View HTTP headers of a page and while browsing.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/2214/addon-2214-latest.xpi">View dependencies</a></strong><br />
View Dependencies adds a tab to the Page Info window, in which it lists all the files which were loaded to show the current page.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/573/addon-573-latest.xpi">Add N Edit Cookies</a></strong><br />
Cookie Editor that allows you add and edit session and saved cookies.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/addons/policy/0/966/33806">Tamper Data</a></strong><br />
Use tamper data to view and modify HTTP/HTTPS headers and post parameters.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/216/addon-216-latest.xpi">Javascript Debugger</a></strong><br />
Venkman is the code name for Mozilla&#8217;s JavaScript Debugger. Venkman aims to provide a powerful JavaScript debugging environment for Mozilla based browsers.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/2079/addon-2079-latest.xpi">Selenium IDE</a></strong><br />
Selenium IDE is an integrated development environment for Selenium tests. It is implemented as a Firefox extension, and allows you to record, edit, and debug tests. Selenium IDE includes the entire Selenium Core, allowing you to easily and quickly record and play back tests in the actual environment that they will run.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/539/addon-539-latest.xpi">MeasureIt</a></strong><br />
Draw out a ruler to get the pixel width and height of any elements on a webpage.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/271/addon-271-latest.xpi">ColorZilla</a></strong><br />
Advanced Eyedropper, ColorPicker, Page Zoomer and other colorful goodies.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/1419/platform:5/addon-1419-latest.xpi">IE Tab</a></strong><br />
This is a great tool for web developers, since you can easily see how your web page displayed in IE with just one click and then switch back to Firefox.</p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/downloads/latest/249/platform:5/addon-249-latest.xpi">Html Validator</a></strong><br />
HTML Validator is a Mozilla extension that adds HTML validation inside Firefox and Mozilla.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.valton.com.au/archives/7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
