60 likes | 189 Views
E-MENU DEV. DOC. Created: 3 Oct 2013 Created: Traitet Th. Modified: 3 Oct 2013 Modified: Traitet Th. Website: http://www.spock.innoemenu.com / Web Service: http://www.spock.innoemenu.com/ WebService.asmx. WEB SERVICE (CAN NOW USE). UPDATED WEB SERVICE. STATUS FOR UI CONTROL.
E N D
E-MENU DEV. DOC Created: 3 Oct 2013 Created: Traitet Th. Modified: 3 Oct 2013 Modified: Traitet Th. Website: http://www.spock.innoemenu.com/ Web Service: http://www.spock.innoemenu.com/WebService.asmx
XCODEWHEN WEB SERVICES ARE CREATED Add Function name in ServiceUtils.h +(NSMutableArray *) F51_GetTableStatusByTableNo: (NSString*)UserName: (NSString*)DeviceName: (NSString)TableNo; 2. Add Web Services Details in ServiceUtils.m //==================================================================== // WEB SERVICE: F51_GetTableStatusByTableNo //==================================================================== +(NSMutableArray *) F51_GetTableStatusByTableNo: (NSString *)UserName: (NSString *)DeviceName: (NSString)TableNo; { //================================================================ // 1) PREPARE PARAMETERS //================================================================ NSString *MethodName = @"F51_GetTableStatusByTableNo"; NSString *SortingColumn = @""; NSArray *ArrInputValue = [[NSArrayalloc] initWithObjects: UserName, DeviceName, TableNo, nil]; NSArray *ArrInputColumn = [[NSArrayalloc] initWithObjects: @“UserName", “DeviceName”, “TableNo” , nil]; //================================================================ // 2) VALUE //================================================================ return [self CallWebservice:MethodName :ArrInputValue :ArrInputColumn :SortingColumn]; }