user3430947
user3430947

Reputation: 1

windows azure java client calling RESTFUL API

Can we connect to windows-azure mobile service from a java client as mentioned in the below url ?

http://msdn.microsoft.com/en-us/library/windowsazure/jj710106.aspx

because when i connected it is giving me 403 error. I was able to connect with application key but not with the auth header.

Please help

Upvotes: 0

Views: 983

Answers (1)

EthenHY
EthenHY

Reputation: 551

OF course you can. 403 ERROR is Authentication Error. Do you add the client Certificate to the header? You need upload a Certificate to Windows Azure. Then use add this certificate to your https request.

For how to upload certificate please refer to : http://msdn.microsoft.com/en-us/library/windowsazure/gg551722.aspx How to add client cer to http reqeust header: Java client certificates over HTTPS/SSL

Upvotes: 1

Related Questions