<?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>web development helpdesk &#187; proxy</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/proxy/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to get HttpClient to use a proxy server?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-get-httpclient-to-use-a-proxy-server?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-get-httpclient-to-use-a-proxy-server</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-get-httpclient-to-use-a-proxy-server#comments</comments>
		<pubDate>Thu, 02 Apr 2009 09:12:09 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[HostConfiguration]]></category>
		<category><![CDATA[HttpClient]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=867</guid>
		<description><![CDATA[HttpClient does not use the standard Java system properties for specifying proxy details. Specifying the proxy details when using HttpClient is achieved using the host configuration of the client as shown in the following snippet. HttpClient client = new HttpClient(); client.getHostConfiguration().setProxy(&#34;proxy1.objects.com.au&#34;, 8001); Related posts: How to specify authentication details for proxy server? You need to [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-get-httpclient-to-use-a-proxy-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is the proxySet system property required to use a proxy server?</title>
		<link>http://helpdesk.objects.com.au/java/is-the-proxyset-system-property-required-to-use-a-proxy-server?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=is-the-proxyset-system-property-required-to-use-a-proxy-server</link>
		<comments>http://helpdesk.objects.com.au/java/is-the-proxyset-system-property-required-to-use-a-proxy-server#comments</comments>
		<pubDate>Thu, 18 Dec 2008 03:25:56 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[proxySet]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=668</guid>
		<description><![CDATA[No, it has not been used since Java 1.1. The presence of proxyHost system property is used to determine whether to use a proxy or not. Related posts: How to specify authentication details for proxy server? You need to set the &#8220;Proxy-Authorization&#8221; request property. URLConnection connection... How to get HttpClient to use a proxy server? [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/is-the-proxyset-system-property-required-to-use-a-proxy-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find the actual Object being proxied by HibernateProxy?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-find-the-actual-object-being-proxied-by-hibernateproxy?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-find-the-actual-object-being-proxied-by-hibernateproxy</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-find-the-actual-object-being-proxied-by-hibernateproxy#comments</comments>
		<pubDate>Sun, 14 Dec 2008 13:24:54 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[cglib]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[HibernateProxy]]></category>
		<category><![CDATA[LazyInitializer]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=688</guid>
		<description><![CDATA[The underlying Object can be found using the LazyInitializer instance available from the proxy. HibernateProxy proxy = (HibernateProxy) o; Object actual = proxy.getHibernateLazyInitializer().getImplementation(); Related posts: How to get Class object for an array Arrays in Java are actually Objects and sometimes we need... Where can I find details of the Java language The Java Language [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-find-the-actual-object-being-proxied-by-hibernateproxy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to specify authentication details for proxy server?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-specify-authentication-details-for-proxy-server?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-specify-authentication-details-for-proxy-server</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-specify-authentication-details-for-proxy-server#comments</comments>
		<pubDate>Thu, 11 Dec 2008 03:04:41 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[URLConnection]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=659</guid>
		<description><![CDATA[You need to set the &#8220;Proxy-Authorization&#8221; request property. URLConnection connection = url.openConnection(); String authentication = username&#34;+&#34;:&#34;+password; String encodedAuthentication = base64Encode(authentication); connection.setRequestProperty(&#34;Proxy-Authorization&#34;, encodedAuthentication); How to specify the proxy server to use is cover here. Related posts: How to get HttpClient to use a proxy server? HttpClient does not use the standard Java system properties for... Is [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-specify-authentication-details-for-proxy-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to specify a proxy server when using ftp protocol?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-specify-a-proxy-server-when-using-ftp-protocol?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-specify-a-proxy-server-when-using-ftp-protocol</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-specify-a-proxy-server-when-using-ftp-protocol#comments</comments>
		<pubDate>Tue, 09 Dec 2008 03:31:04 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[system property]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=671</guid>
		<description><![CDATA[Set the following system properties ftp.proxyHost ftp.proxyPort java -Dftp.proxyHost=proxy.objects.com.au -Dftp.proxyPort=80 au.com.objects.MyApplication To do the same programatically use the System classess setProperty() method System.setProperty(&#34;ftp.proxyHost&#34;, proxyHostname); System.setProperty(&#34;ftp.proxyPort&#34;, proxyPort); Related posts: How to tell a Java application to use a proxy server? Set the following system properties http.proxyHost http.proxyPort java -Dhttp.proxyHost=proxy.objects.com.au -Dhttp.proxyPort=8080... Is the proxySet system property required [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-specify-a-proxy-server-when-using-ftp-protocol/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to tell a Java application to use a proxy server?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-tell-a-java-application-to-use-a-proxy-server?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-tell-a-java-application-to-use-a-proxy-server</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-tell-a-java-application-to-use-a-proxy-server#comments</comments>
		<pubDate>Mon, 08 Dec 2008 03:08:14 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[system property]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=661</guid>
		<description><![CDATA[Set the following system properties http.proxyHost http.proxyPort java -Dhttp.proxyHost=proxy.objects.com.au -Dhttp.proxyPort=8080 au.com.objects.MyApplication To do the same programatically use the System classess setProperty() method System.setProperty(&#34;http.proxyHost&#34;, proxyHostname); System.setProperty(&#34;http.proxyPort&#34;, proxyPort); Related posts: How to specify a proxy server when using ftp protocol? Set the following system properties ftp.proxyHost ftp.proxyPort java -Dftp.proxyHost=proxy.objects.com.au -Dftp.proxyPort=80... Is the proxySet system property required to [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-tell-a-java-application-to-use-a-proxy-server/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I specify a different SOCKS proxy for each connection?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-specify-a-different-socks-proxy-for-each-connection?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-specify-a-different-socks-proxy-for-each-connection</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-specify-a-different-socks-proxy-for-each-connection#comments</comments>
		<pubDate>Sat, 22 Nov 2008 21:49:16 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[SOCKS]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=553</guid>
		<description><![CDATA[The Proxy class can be used specify proxy details at the connection level. SocketAddress addr = new InetSocketAddress(&#34;proxy.objects.com&#34;, 88); Proxy proxy = new Proxy(Proxy.Type.SOCKS, addr); URL url = new URL(&#34;http://java.sun.com/&#34;); URConnection conn = url.openConnection(proxy); Related posts: How do I specify a different HTTP proxy for each connection? The Proxy class can be used specify proxy [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-specify-a-different-socks-proxy-for-each-connection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I specify a different HTTP proxy for each connection?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-specify-a-different-http-proxy-for-each-connection?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-specify-a-different-http-proxy-for-each-connection</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-specify-a-different-http-proxy-for-each-connection#comments</comments>
		<pubDate>Wed, 19 Nov 2008 21:54:01 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=557</guid>
		<description><![CDATA[The Proxy class can be used specify proxy details at the connection level. SocketAddress addr = new InetSocketAddress(&#34;proxy.objects.com&#34;, 88); Proxy proxy = new Proxy(Proxy.Type.HTTP, addr); URL url = new URL(&#34;http://java.sun.com/&#34;); URConnection conn = url.openConnection(proxy); Related posts: How do I specify a different SOCKS proxy for each connection? The Proxy class can be used specify proxy [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-specify-a-different-http-proxy-for-each-connection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I specify a SOCKS proxy using Java?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-specify-a-socks-proxy-using-java?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-specify-a-socks-proxy-using-java</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-specify-a-socks-proxy-using-java#comments</comments>
		<pubDate>Sun, 02 Nov 2008 21:45:05 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[SOCKS]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=550</guid>
		<description><![CDATA[You can use the system properties socksProxyHost and socksProxyPort to specify a SOCKS proxy to use for all connections. eg. java -DsocksProxyHost=socks.objects.com -DsocksProxyPort=88 MyApp Related posts: How do I specify a different SOCKS proxy for each connection? The Proxy class can be used specify proxy details at... How to tell a Java application to use [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-specify-a-socks-proxy-using-java/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

