I would appreciate your help in understanding why this is not supported or what am I doing wrong.
Thanks
My sample ice file is
When I run slice2java I get following errorCode:#ifndef TEST_ICE #define TEST_ICE module com { module xxx { module data { module testsomething { module service { interface TestSomething { int getPoints(); }; interface TestSomethingHandler { TestSomething* getSomething(string name ); }; }; }; }; }; }; #endif
slice2java --output-dir c:\myproj\src c:\myproj\ice\test.ice
c:\\myproj\\ice\\test.ice:16: interface name `testsomething' cannot differ only in capitalization from enclosing module `testsomething' (first defined at c:\\myproj\\ice\\test.ice:11)
c:\\myproj\\ice\\test.ice:22: module name `TestSomething' is capitalized inconsistently with its previous name: `::com::xxx::data::testsomething'
c:\\myproj\\ice\\test.ice:22: `TestSomething' is not a type

Reply With Quote