Closed GoogleCodeExporter closed 9 years ago
Below is a patch that seemed to work for us. Caveat: I don't claim to
understand all of what is going on here, so use at your own risk. This was
produced by several iterations of looking at the compiler output and pushing
reasonable fixes back upstream.
Replace line 114, which currently reads:
TypeSerializerCreator tsc = new TypeSerializerCreator(logger, typesSentFromBrowser, typesSentToBrowser, context, "comet." + typeName.replace('.', '_') + "Serializer");
with this:
final String modifiedTypeName = typeName.replace('.', '_');
TypeSerializerCreator tsc = new TypeSerializerCreator(logger,
typesSentFromBrowser, typesSentToBrowser, context,
"comet." + modifiedTypeName, modifiedTypeName);
Original comment by v...@outfitr.com
on 2 Nov 2010 at 10:52
#1, this worked for me. Thanks.
Original comment by r.g.sieb...@gmail.com
on 3 Nov 2010 at 9:04
Here's the new jar-file I applied the above patch to.
Original comment by r.g.sieb...@gmail.com
on 3 Nov 2010 at 9:07
Attachments:
Issue 10 has been merged into this issue.
Original comment by rich...@zschech.net
on 7 Nov 2010 at 1:34
Original comment by rich...@zschech.net
on 9 Nov 2010 at 1:41
#1 is correct. I've create a new release 1.2.1
Original comment by rich...@zschech.net
on 9 Nov 2010 at 3:34
Original issue reported on code.google.com by
michal.c...@gmail.com
on 20 Oct 2010 at 12:28