I workaround for this was posted a couple of times in the past (but I haven't tried this myself): http://groups.google.com/group/wave-protocol/msg/4e74ee9db46d639a
We lowercase wave addresses in the ParticipantId constructor, so we can equate ParticipantId instances iff they are syntactically identical, but it's easy to imagine that we mess up somewhere where we compare string representations of wave addresses without conversion to ParticipantIds. FWIW, our intension was to insist that wave addresses should always be in canonical (lowercase) form, so we could equate them by syntactical identity everywhere, but we messed up somewhere along the way and ended up with the easy solution of converting to lowercase in the ParticipantId constructor rather than properly policing canonicity everywhere. But maybe that's good enough and we should just chase down this specific bug and fix it. On Mon, Nov 8, 2010 at 6:57 PM, Anthony Baxter <[email protected]> wrote: > That's a bug. Domain names and email addresses should be case insensitive > > On Nov 9, 2010 1:36 PM, "Joseph Gentle" <[email protected]> wrote: >> I sat with Chris and diagnosed this. It looks like somewhere we're >> tolower()'ing the computer's hostname, and the user: >> [email protected] >> is different from: >> [email protected] >> >> .... Which breaks the registration servlet. >> >> Should those usernames be the same? Is case checked in domain names? >> >> -J >> >> >> On Mon, Nov 8, 2010 at 5:42 PM, Chris Ansoff <[email protected]> wrote: >>> in setting up a wave server in the box, my computer had capital >>> letters inside the host name, I could not register users. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Wave Protocol" group. >>> To post to this group, send email to [email protected]. >>> To unsubscribe from this group, send email to >>> [email protected]. >>> For more options, visit this group at >>> http://groups.google.com/group/wave-protocol?hl=en. >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Wave Protocol" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/wave-protocol?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Wave Protocol" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/wave-protocol?hl=en. > -- You received this message because you are subscribed to the Google Groups "Wave Protocol" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/wave-protocol?hl=en.
