Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 973957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:21:34+00:00 2026-05-16T03:21:34+00:00

I am working on an iphone application which would be able to retrieve/publish information

  • 0

I am working on an iphone application which would be able to retrieve/publish information from/to a web server. I want to use out-of-the-box technology on the server side and as much built-in iphone capabilities as possible. Here are my thoughts so far:

I initially thought about using rss feeds:
Writing an rss reader is quite straightforward.
However I do not seem able to find information regarding the publishing of an rss article from the iphone. Does anyone have a smart idea on this point?

I then thought of setting up dedicated email accounts (once again it’s a prototype app).
Sending then becomes easy via the iphone. Receiving emails from within a custom iphone ap however seems pretty involved. Once again: any smart thought on this?

There are probably other ways of doing what I want which elude me. Any constructive suggestions would be very much appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T03:21:35+00:00Added an answer on May 16, 2026 at 3:21 am

    I would guess it depends on how much data you want to push back to your server. If its just a few items I would sent a request to a php page on your server and have it update a database with the info. You can use GET or POST. Not sure what the limits are but we do this with our app to get data on what movie the user has requested, the UUID and other useful data.

    For example:

    NSString * uId = [[UIDevice currentDevice] uniqueIdentifier];
    NSString * episodeString = [URLString substringFromIndex:73]; //strip out the stuff before the enclosing folder
    
    NSArray * episodeArray = [episodeString componentsSeparatedByCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"/"]];
    
    NSString * resVersion = episodeArray.lastObject; // get either small.mov, medium.mov or large.mov
    
    NSString * episode = [episodeArray objectAtIndex:0];// get the enclosing folder
    
    NSMutableURLRequest *statsRequest = [[[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:kAppStats]] autorelease];
    
    [statsRequest setHTTPMethod:@"POST"];
    
    NSString *requestBody = [NSString 
                              stringWithFormat:@"episode=%@&res=%@&uuid=%@",
                              [episode     stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
                              [resVersion stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
                              [uId        stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]
                              ];
    
    [statsRequest setHTTPBody:[requestBody dataUsingEncoding:NSUTF8StringEncoding]];
    
    NSURLConnection *statsConnection = [[NSURLConnection alloc] initWithRequest:statsRequest delegate:self];
    
    [statsConnection start];
    [statsConnection release];
    

    This is sent to a php script that gets the data through standard POST and updates a MySQL database. Don’t see why you couldn’t do something similar.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm working on an iPhone application which retrieve sqlite database from server through json/rest
I'm working on an iPhone application which will use long-polling to send event notifications
Currently I am working on an iPhone Application, which loads the Data from the
I'm working on iphone application which needs to run offline at an exhibition. It
I am working on an iPhone application which lists some items in a Table
I have been working with iPhone application in which i am using sqlite database.
I have developed a simple location aware iPhone application which is functionally working very
I'm currently working on an iphone application. I started working on this from a
I am working on iPhone application which based on navigation controller. for example there
I am working on iphone application in which i have to return the keyboard

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.