tags:

views:

117

answers:

2

Hi,

What I know that we can't develop a native app in iPhone which uses secure transaction(banking, purchasing etc). If we want to do so, we need to use Browser in app.

Just let me know if I am correct. Is there in link which clarifies my concern.

Thanks SD

+1  A: 

You Can Develop a native app in iPhone which uses secure transaction...

you can use NSURL and NSURLRequest classes to implement Web Services and to make it secure you have to implement ssl web service... to consume ssl Web service you just need to add one line

[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:host];
mihirpmehta
A: 

You can certainly implement HTTPS transfers trivially in your iPhone app. You mentioned "purchasing", though, and there you may run into a problem. The iPhone store agreement states that any purchase of additional content for your application has to be through Apple's in-app purchase API.

I don't know if that precludes real-world purchases (like using you app to buy some physical article that'd be shipped to a customer). What are you trying to do, exactly?

Mark Bessey
yes, I am trying to create app like Amazon. where people need to enter Creadit card detail and then can buy any item.Also can I create an app for some bank, where user can view account, transfer money to a/c, etc....
iPhoneDev
Doesn't Stanza allow you to buy books from several ebook sellers without using in-app purchasing? I'm pretty sure I've seen other examples, too.
walkytalky
I think you can , how does the ebay app work?
owen
I guess we cant use any payment getway?
iPhoneDev