Archived

This forum has been archived. Please start a new discussion on GitHub.

ICE with XML

hello,

Can anybody say me, how can I change XML message between Ice server and client? Is that possible with Ice Protocol?

thanks

Comments

  • xdm
    xdm La Coruña, Spain
    Hi Senol,

    The simplest is that your client an server interchange string parameters using Ice, the content of the strings could be xml or other format.

    For example with the following interface your client can send a string data with the xml, and the server can reply it with other string that could be also in xml format.
    interface MyInterface
    {
       string post(string data);
    };
    

    Hope this help,
    José