sudzC处理参数

时间:2011-10-10 18:12:42

标签: iphone ios touchxml sudzc

我刚开始一个新项目,需要与另一家公司开发的肥皂网服务进行沟通

这些功能需要一些参数:

TPLogin

parameters required:

SLogin=XXX
SPassword=XXX

我的问题是:

如何传递这些参数,因为生成的代码提供的例子只调用没有任何参数的函数?

来自生成的exemple代码;

[service TPLogin:self action:@selector(TPLoginHandler:)];



// Handle the response from TPLogin.

- (void) TPLoginHandler: (id) value {

// Handle errors
if([value isKindOfClass:[NSError class]]) {
    NSLog(@"%@", value);
    return;
}

// Handle faults
if([value isKindOfClass:[SoapFault class]]) {
    NSLog(@"%@", value);
    return;
}               


// Do something with the NSString* result
    NSString* result = (NSString*)value;
NSLog(@"TPLogin returned the value: %@", result);

}

1 个答案:

答案 0 :(得分:1)

什么是'服务'?

[self performSelector:@selector(TPLoginHandler:) withObject:[NSDictionary dictionaryWithObjectsAndKeys:@"blarblar",@"SLogin", @"blarblar",@"SPassword", nil]];

-(void)TPLoginHandler:(NSDictionary *)info
{
    //you can access about below code.
    [info valueForKey:@"SLogin"];
    [info valueForKey:@"SPassword"];
}