Click here to Skip to main content
15,905,233 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

Hope you all having a good time.

I am starting a iPad application development for the first time.I have some of the following doubts.???

1) Can i communicate from my iPad application to my webservice( Which is already developed using .net) ??

2)I am going to use a very large number of documents, So where will be the database stored(Does apple has any database store) or can i communicate with my SQL database which is used by my webservice(which is already in .net and communicates to sql)??

3) Can i use a signature part to sing the document.(Can i do it directly or need to use the third party tools).??

4)Can i convert a document into pdf and email it to my clients??Is the convertion can be done or need to buy any third party tools??

5)How to update clients on a regular basic from my sql to iPad application. Is it possible to sync with sql everytime.

6)Is there a message queue , If the network is unavailable and will it be sent automatically when network available



Sorry guys ... this is a lot of questions...But these are all the doubts i a have.
I tried searching here and there for the solutions...but i found some of the general results but they left me in more confusion.

i hope you guys help me . thanks a lot really...
Posted

1 solution

*Partial Answer*
1) Cocoa supports SOAP services, so if you have an ASMX service (or a WCF service with a SOAP endpoint) you can. See http://www.icodeblog.com/2008/11/03/iphone-programming-tutorial-intro-to-soap-web-services/[^] of course the devil will be in the detail, the more complicated the stuff you are doing the less likely it is to work out of the box.

2)As far as I'm aware the iOS is pretty much Linux based, so you can store things in the file system. Obviously you'd want to do this on demand (i.e. not download all docs at the outset). You should also consider a document cache size limit.

3) Don't understand your question.

4)You can convert PDF, the resulting text can be sent via e-mail. There are 3rd party tools out there, I dare say a google search will uncover some open source stuff.

5) The thing to do here is to poll the server for updates from the client. I don't *think* you can push data out, for one thing the device isn't certain to be on a network at all times

6) Don't know.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900