Upload image from IPhone in asp.net - iphone

I don't know anything about Objective C. I am developing a website in asp.net for
mobile version. And in this application I need to upload an image from mobile.
But uploading from iPhone not working. After searching I found this link
Post image and text from iPhone to asp.net
Where a xcode is used.
The problem is that I don't know how to use this code in my application. I can understand
handler used for uploading but not Objective C code. And can any one help me how to
use this code on IIS server.
Thanks in advance.

I have quite an old blog about posting files to asp.net site from iOS. You can check it out at -
http://mahmudulislam.me/2011/09/14/uploading-files-from-iphone-to-asp-net-web-site/
This might help you.

Related

VMPinterest Not working for Ipad

i want to integrate Pinterest to my app for both ipad and iphone version. for that i do some googling and find VMPinterest framework. i download its demo its working fine with iphone but not working with ipad version.
Following issue i find it
its not authenticate properly it showing signing is successfully every times although i pass wrong email or pass.
its not able to get the board name
plz help me out if any body used this framework for ipad or if you have another way to integrate Pinterest than plz answer or comment.
Thanks
Try to download this API from this link: https://github.com/Lascorbe/LASharekit
Its working fine for me. Merge this into your App.
I downloaded the latest version of VMPinterest framework (they have released a new version) and it does works perfectly with iPad (i have tested for ipad mini).
I would recommend VMPinterest framework. as unlike others it doesnt take you to web page but it directly get you post the image remotely.
They have also released a demo app using this framework - is live on appstore..
App link https://itunes.apple.com/us/app/vmpinterest/id607998053?ls=1&mt=8
So the framework is appstore approved.
Its compatible with iOS 4.3 and above and runs on iPod touch/iPhone/iPhone5/iPad/iPad mini
For complete list of features visit Varshyl Mobile site

How to integrate Salesforce in iphone app?

can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK

How to integrate the Flickr Api in ios

I want to integrate the flickr api to upload the image through my iphone application to flickr site.
I had downloaded the code snap&Runfrom github. i had integrated the same code in my code.But it is showing me the error while navigating back to the application from safari browser.
The error is :-Cannot open page
Safari cannot open the page because the address is invalid.
Please help me.
please refer this link https://github.com/lukhnos/objectiveflickr of the well known ObjectiveFlickr repository. I think it's much lighter and simpler:
it relies on AFNetworking, which is the industry standard
it has only 4 classes and a good tutorial
the coding style is more modern
https://github.com/lukhnos/objectiveflickr
this will help you !!

Calling another program

I'm working on monotouch framework, I'm writing an application for iPhone device, I want to call another program running on the iPhone from my own code...
Anyone can help me with this, usually in C# we just create a process for that exe file.
Is there anyway to do that with monotouch?????
Regards
You could of course use URL Schemes, but those suck. I have a blog post on super-duper-easy-peasy local cross-application communication using background tasks in iOS.
It's basically the same way that PhoneGap and Appcelerator Titanium work to communicate back to native platform specific APIs:
Code: https://github.com/anujb/MultitaskingHttp
Blog Post: http://blog.devnos.com/remember-when-apps-didnt-talk-to-each-other
In Objective C code you can go with URL Schemes, using that you can launch another application from your application.
The short answer is that this can only be done of a URL scheme catches it. The long answer has, well---already been answered :)

Integrating Codeigniter and Objective C

I'm currently building a social networking site using the codeIgniter PHP framework. One of our major focuses of this site is to be able to upload images through the use of smartphones. We were focusing on building for the iPhone, but the iPhone doesn't let you upload files for some reason beyond me. I have been looking through solutions for days seeing if we could somehow integrate an iPhone app and have come up with nothing. The only thing I have found is using Cocoa Xcode in Objective C to somehow get around the fact. Now I don't know anything about objective C and I was wondering if I could somehow integrate a snippet of objective C into my PHP to allow users to upload photos off their iPhone and onto our site.
Is this possible? If so how? If not, does anyone know another work around?
You can avoid having to code an iPhone app by allowing images to be submitted by email. This is one of the ways Posterous works. I'm pretty sure that there's no other way to access the photo library outside of building your own app in Objective-C.
It seems that you would actually have to create an iPhone application doing the job for you. Check this article on how such application would be done in Objective C on the iPhone.
As an alternative, you could try third party tools like e.g. Image Upload
If I have understood ur problem, u are finding a way in what manner u should send the image with ur request to ur php.
If this is ur problem, the I suggest u to first convert the image into Base64Encoded data and send it with ur request. Now php do have inbuilt methods to convert this data to an image.
Try looking for Base64Encoding help for php.
Thanks,
Madhup
This is the very reason why social platforms have their Apps on the App Store and not just simply the Wap Sites. So either you can have email attachments, or write an app which uploads the images, and a controller which manages those uploads.