Connecting To An Https Service With Sproutcore
I'm building a web app that requires me to connect to a service (https) to get some data. The web app is to be built using SproutCore. Now, I'm super new to SproutCore, and haven't
Change:
proxy '/path', :to =>"https://myWebService.com", :secure =>true
to
proxy '/', :to =>"myWebService.com", :secure =>true
then
SC.Request.getUrl('/path').notify(this, 'notifyMe').send();
should work
You may like these posts
Post a Comment for "Connecting To An Https Service With Sproutcore"