<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "accessing geonames through https"]]></title>
		<link>http://forum.geonames.org/gforum/posts/list/4.page</link>
		<description><![CDATA[Latest messages posted in the topic "accessing geonames through https"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>accessing geonames through https</title>
				<description><![CDATA[ I am doing a city/state/country lookup using JSON from a secure https checkout page on my site. Because I am accessing http://ws.geonames.org/searchJSON, it makes my page not secure. Is there a way to securely access https://ws.geonames.org.....


		source: function( request, response ) {
			$.ajax({
				url: "http://ws.geonames.org/searchJSON",
				dataType: "jsonp",
				data: {
					featureClass: "P",
					style: "full",
					maxRows: 12,
					name_startsWith: request.term
				},
				success: function( data ) {
					response( 
					$.map( data.geonames,
						function( item ) {
							return {
								label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
								value: item.name,
								cc: item.countryCode
							}
						})
					);
				}
			});
		},]]></description>
				<guid isPermaLink="true">http://forum.geonames.org/gforum/posts/list/3889.page#11559</guid>
				<link>http://forum.geonames.org/gforum/posts/list/3889.page#11559</link>
				<pubDate><![CDATA[Fri, 8 Jun 2012 05:56:55]]> GMT</pubDate>
				<author><![CDATA[ rodneystover]]></author>
			</item>
			<item>
				<title>Re:accessing geonames through https</title>
				<description><![CDATA[ a secure endpoint is only available for premium users.

Marc]]></description>
				<guid isPermaLink="true">http://forum.geonames.org/gforum/posts/list/3889.page#11567</guid>
				<link>http://forum.geonames.org/gforum/posts/list/3889.page#11567</link>
				<pubDate><![CDATA[Mon, 11 Jun 2012 09:12:41]]> GMT</pubDate>
				<author><![CDATA[ marc]]></author>
			</item>
			<item>
				<title>Re:accessing geonames through https</title>
				<description><![CDATA[ Marc, Thanks for the reply. So if I purchase one of the Best Price Plans to start out with, the only coding I would have to change would be the url and I suppose add a username type field for verification?]]></description>
				<guid isPermaLink="true">http://forum.geonames.org/gforum/posts/list/3889.page#11582</guid>
				<link>http://forum.geonames.org/gforum/posts/list/3889.page#11582</link>
				<pubDate><![CDATA[Thu, 14 Jun 2012 06:19:30]]> GMT</pubDate>
				<author><![CDATA[ rodneystover]]></author>
			</item>
			<item>
				<title>Re:accessing geonames through https</title>
				<description><![CDATA[ yes, the domain is different.

The free services on api.geonames.org actually also require a username, you are just using the deprecated server on ws.geonames.org

Marc]]></description>
				<guid isPermaLink="true">http://forum.geonames.org/gforum/posts/list/3889.page#11594</guid>
				<link>http://forum.geonames.org/gforum/posts/list/3889.page#11594</link>
				<pubDate><![CDATA[Sat, 16 Jun 2012 10:29:21]]> GMT</pubDate>
				<author><![CDATA[ marc]]></author>
			</item>
			<item>
				<title>Re:accessing geonames through https</title>
				<description><![CDATA[ yes, the domain is different.

The free services on api.geonames.org actually also require a username, you are just using the deprecated server on ws.geonames.org

<b>ws.geonames.org is deprecated, use api.geonames.org instead</b>
http://geonames.wordpress.com/2011/01/28/application-identification-for-free-geonames-web-services/

Marc]]></description>
				<guid isPermaLink="true">http://forum.geonames.org/gforum/posts/list/3889.page#11595</guid>
				<link>http://forum.geonames.org/gforum/posts/list/3889.page#11595</link>
				<pubDate><![CDATA[Sat, 16 Jun 2012 10:29:32]]> GMT</pubDate>
				<author><![CDATA[ marc]]></author>
			</item>
	</channel>
</rss>