Skip to Content
Menú
This question has been flagged
4177 Vistes

Hello! i am developing an ios app to connect to product.product and i am trying to make a simple search call, this is how i am doing it:

NSArray *arr = [NSArray arrayWithObjects:@"active", @"=", YES, nil];

    NSArray *arri =[NSArray arrayWithObjects:arr, nil];

    [request2 setMethod:@"execute" withParameters:[NSArray arrayWithObjects:@"db_ms",1,@"pass1", @"product.product", @"search", arri, nil]];

but it's giving me Thread 1:EXC_BAD_ACCESS(code =2, adress=0x1) when creating arr array, i don't know what i am doing wrong.

 

I already managed to login with this code:

XMLRPCRequest *request = [[XMLRPCRequest alloc] initWithURL:[NSURL URLWithString:@"http://192.168.1.106:8069/xmlrpc/common"]];

    XMLRPCConnectionManager *manager = [XMLRPCConnectionManager sharedManager];

    

    [request setMethod:@"login" withParameters:[NSArray arrayWithObjects:@"db_ms",@"admin",@"pass1", nil]];

and it worked. I don't know what is the syntax to pass values to the search, i would appreciate some help.

Avatar
Descartar
Related Posts Respostes Vistes Activitat
0
de març 15
5764
1
de gen. 20
9814
0
de maig 16
6269
3
de jul. 25
2825
1
d’oct. 24
2057