Slashdot Mirror


User: BlueKitty

BlueKitty's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Gluing C++ to Java with Perl on The Power of Multi-Language Applications · · Score: 1

    I'm working on a project with a server written in C++ that uses XML to communicate with a Java client.

    I wrote a lengthy Perl script that parses the C++ classes (whose instantiated objects are transmitted via XML), and generates equivalent Java classes. This allows autogeneration of the Java classes whenever the C++ classes are tweaked.

    The Java classes can parse incoming XML and populate themselves accordingly. They can also generate outbound XML. There are setters/getters for all members.

    No one at my company has ever seen this done before.

    Blue