tags:

views:

86

answers:

2

I m a new comer to the iPhone world,m working on an application having login page,i have to send UIText value of username and Passworld value to the server...plz help me out,code would b appreciated

+2  A: 

Look into using the ASIHTTPRequest framework to make POST requests.

Alex Reynolds
Thanx Alex.....
talktobijju
+1  A: 

you can check the user_ name & password from the severer ASIHTTPRequest framework it's the ex. of code which from the twitter request.m file

if ([challenge previousFailureCount] == 0) { NSURLCredential *newCredential; newCredential=[NSURLCredential credentialWithUser:[self username] password:[self password] persistence:NSURLCredentialPersistenceNone]; [[challenge sender] useCredential:newCredential forAuthenticationChallenge:challenge]; [newCredential release]; } else { [[challenge sender] cancelAuthenticationChallenge:challenge]; // inform the user that the user name and password // in the preferences are incorrect NSLog(@"Invalid Username or Password"); }

0 down vote favorite1 I m a new comer to the iPhone world,m working on an application having login page,i have to send UIText value of username and Passworld value to the server with the help of SOAP(MUST),I am having no idea regarding the same...plz help me out,code would b appreciated
talktobijju
Thank you harishdy007
talktobijju
plz accept my questions plz coz whenever i ask any question regarding iPhone this msz appear on the screen "Sorry, we are no longer accepting questions from this account. "
talktobijju