0

I have to write a C program to convert XML file to WBXML format, without using external conversion library. Is it possible?

I have created the XML file in C and now want to convert it into WBXML file.

Alexandru C.
  • 3,337
  • 1
  • 25
  • 27
user1196792
  • 66
  • 2
  • 12

1 Answers1

0

You want to know if it is possible? - Yes.

You want to know how? - check the implementation of one of the external libraries. I'm sure you can get an idea if you browse the source code.

Alexandru C.
  • 3,337
  • 1
  • 25
  • 27
  • if we direct created WBXML file which contain phone contact, how can we send to server and how server decode it.we have to send code page(user define tag used in creating wbxml) to server? – user1196792 Jun 06 '12 at 06:28
  • Check the libwbxml code. There are intuitive functions like xml2wbxml and wbxml2xml. You have to send any additional decoding information to the server also. – Alexandru C. Jun 06 '12 at 07:25