c# - Connect java client application and IOS application with WCF server -
i want ask if built server-client application using wcf technique can connect java client application , objective-c client application server technique . because want build cross-platform application want server c# server
can connect them or not ?
is there technique server application using c# ?
yes should using restful service in order create cross platform service. way can access wcf service methods using
http://yourdomain.com//service.svc/users/{username}/bookmarks?tag={tag}
but there problem consuming restful service need implement authentication in order secure them avoid dos attack , other malicious use. best approach secure restful service use hashing paramters in every service call. hash param derived secretkey,datetime, message salt etc.. more info check this.
wcf, restful web services , custom authentication
i suggest should creating restful service in json format light weight , cause less overhead on data package.
http://www.codeproject.com/articles/327420/wcf-rest-service-with-json
regards.
Comments
Post a Comment