Have you looked at XML over HTTPS? There's a section in this document specifically for JAVA, too:
http://documentation.tucows.com/xmlhttpspost.pdf -andrewm Alan wrote: > Heya all, > > I have posted before in various news-groups, without much success, but > I'll try here anyway :-) > > I am just looking for pointers on how to implement a Java-based OpenSRS > client. So far it's been relativelty easy except for the old chesnut: > AUTHENTICATION. There is a *woeful* lack of documentation about this > subject in the documentation, almost scandalously so; yet despite a > whole slew of newsgroup posts from similar people asking similar > questions, Tucows have seemed reluctant to clarify the issue. > > I am using the libaries by Robert Dale, but not having much success. I > have 'cooked' the key > > System.arraycopy(hash, 0, realkey, 0, 16); > md5.Init(); ; > hash = md5.Update(realkey, 0, 16) > System.arraycopy(hash, 0, realkey, 16, 16); > md5.Init(); ; > hash = md5.Update(realkey, 0, 32) > System.arraycopy(hash, 0, realkey, 32, 16); > md5.Init(); md5.Update(realkey, 0, 48); > hash = md5.Final(); > System.arraycopy(hash, 0, realkey, 48, 8); > _______________________________________________ > domains-dev mailing list > [email protected] > http://discuss.tucows.com/mailman/listinfo/domains-dev > _______________________________________________ domains-dev mailing list [email protected] http://discuss.tucows.com/mailman/listinfo/domains-dev
