-
25 Sep 2012 6:59 AM #1
HTTPS Connection issue
HTTPS Connection issue
Hello community,
I'm trying to get JSON data from an HTTPS url, but I've this error on console: "Failed to load resource"
. I have the certificate but I don't know how validate with the HTTPS url. Does anyone knows how to configure the application to made this work?
-
27 Sep 2012 6:42 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 435
Are you doing this from non secure page?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
1 Oct 2012 6:42 AM #3
It's a simple store on my mobile application...
But, I was searching a little bit and (if I understood well!) I realize that I haven't to configurate any certificate. If the secure server is approved by CA (certification authority) and the browser has updated the certificate list, I should not have any problem.Code:var HTTPS_STORE = new Ext.data.Store({ model: 'HTTPS_MODEL', proxy: { type: 'scripttag', url: 'https://mysite.com........', reader: { type: 'json', root: 'root' } }, autoLoad: true });


Reply With Quote