Techno Curry

I am an entrepreneur who believes that the true power of GIS is yet to be discovered in every day aspects of life. As one of the primary owners of 39 Degrees North (www.39dn.com) a GIS focused company that strives to be on the bleeding edge of technology , I believe in bringing GIS to the masses at affordable cost and time investments that can help the users to achieve great ROI.

I am also a travel , motorcycle, gardening , outdoors and cooking enthusiast when I find the time in my busy schedule. Cooking being one of my great passions I always find time to do that , I also enjoy having dinner parties where I cook up a storm to feed all my friends.

HTTPS Data access from HTTP content

In order to access HTTPS data (requests) from HTTP pages (or Flash movies i.e. swfs ) set the cross domain policy as such.

<cross-domain-policy>
<allow-access-from domain="*" secure="false"/>
</cross-domain-policy>

The domain in the example is specified as * but you can restrict the domain as needed.

 

Adobe artilce with a detailed cross domain file specification http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html

Missing scales in the Navigation Slider in ArcGIS Flex

One of the most frustrating things that we faced while adding multiple cached services to the Map component is that we found that sometimes we were not able to see the larger scales of map services even though we knew that they existed. And after much experimentation by one of my co-worker we discovered that the Navigation Slider picks up the scales from the first service that is added to the map. So if you add the service with the largest scales first you will be able to get the correct scales on the Navigation Slider . In fact its not just the navigation slider but the whole map refuses to go the larger scales with a service with a lowest lower scale is added first.
Hope this is helpful to someone else!

Flex Remoting with ColdFusion over SSL

When I was implementing SSL for all my Flex web applications , the problem that I found was regardless of what I did from the Flex application, the remoting was always being accessed via http and not https as I meant it to be. Here is a good article describing the problem and the possible solutions from Joshua Curtiss http://blog.crankybit.com/flex-remoting-over-ssl/