Service Unavailable

IIS 6.0 supports both the 32-bit mode and the 64-bit mode. However IIS 6.0 does not support running both modes at the same time on a 64-bit version of Windows. ASP.NET 1.1 runs only in 32-bit mode. ASP.NET 2.0 runs in 32-bit mode or in 64-bit mode. Therefore, if you want to run ASP.NET 1.1 …

SSL connection iphone

Here I have posted code how to calling “Web service” which are SSL enabled. like “https://test.com/testservice.svc/gettest” #import “Hello_SOAPViewController.h” @interface NSURLRequest (withHttpsCertificates) + (BOOL)allowsAnyHTTPSCertificateForHost:(NSString*)host; + (void)setAllowsAnyHTTPSCertificate:(BOOL)allow forHost:(NSString*)host; @end @implementation Hello_SOAPViewController NSMutableData *webData; – (void)viewDidLoad { ////////////////////////////////////////////////// //Web Service Call ////////////////////////////////////////////////// NSURL *url = [NSURL URLWithString:@”https://test.com/testservice.svc/gettest”]; NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0]; [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[url host]]; …

Upload Photo From iPhone to Asp.Net Server PHP

This tutorial will go over the HTML post. This will start off where Using a UIImagePickerController left off. So you can grab the code and start there if you want. So lets begin. So first open up testPickerViewController.h and we want to add in one outlet and one action. So here is the outlet we …