I am sending bundle from native to web.
bundle *reply= bundle_create(); bundle_add(reply,"test","A");
message_port_send_message(remote_app_id,remote_port,reply);
This send the bundle from native to web and i can receive it and show it in web app.
But when i am trying to send a string array as a bundle, i can not receive it from web app. but the nativa app log shows that the bundle is sent correctly.
this is the following code i have written:
char *array[]={"A","B","C","D"};
bundle *reply=bundle_create();
bundle_add_str_array(reply,"service",array, len(array));
what can i do???