Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. COThank you Alan! As for your questions, is it possible to use an email server on a app that doesn't sends email? (but rather sends data). Or is it possible to use a web server on a app that doesn't sends web data but email instead? Right now I don't even know what kind of server I should use for my iphone app... Also regarding how HTTP request would work, is it like is you use that api, initWithContentsOfURL, for example, http://someurl.com/somephp.php and then get a information, suppose there are two iphones that both calls that url, then how does the server know which iphone is it?
      singulars
    2. COWell you wouldn't use a server on an app (a server handles client connections and handles service requests from clients--your app would likely be a client, not a server). And in general if you have a web server, it needs to handle web data, otherwise it's not a webserver, but just a server of some type. THe type of requests a server handles dictates it's type. Re: Web requests, if you need your server to know which iphone, you must pass along that information in the request. You can use query strings: `someurl.com/somephp.php?id=davids_iphone` or pass as part of the HTTP auth headers
      singulars
    3. COBefore I get ahead of myself, ask, why does your server need to know what iphone is requesting the page? Who is requesting a resource is typically handled by "authentication" and there are a number of ways to go about authenticating a web session.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload