We have to have a "register" method available via web service that is written in java so hence forth we do not have access to the Drupal API. But we need to be able to register a user successfully. Simply adding a user to the users table will not do it as the newly created users are never able to login successfully. Again I love the Drupal API and would always use that as that is the "correct" way to do it but in this case we just dont have the faculty to do that. Any insights to this dilemma ?
|
You'll want to step through the There isn't any deep magic to what Drupal does with saving that type of data: it's all in the database. So, while it's not ideal that you can't use the Drupal API, you're really only dealing with two database inserts: the Based on your info, I suspect the missing link is that you're not adding a row to the
Where Everything else in |
|||||
|
|
While Mark's method is probably the most efficient, it's not the easiest to implement or maintain. Contrib modules can react to when users are being inserted in the database, and without Drupal you'll miss this and would need to implement each module by hand. A simpler solution would be to create a menu callback you can call from your Java implementation. All you really need to do, is to post the relevant info and to Drupal and let it call To avoid letting anybody create users this way, you can create a setting for allowed IPs and check that requestee's IP in the access callback. That should be the easiest and most secure solution, since only the server(s) will be able to create users, and a brute force attack won't be able to succeed. |
||||
|
|
|
The easier solution would be to create a custom module that implement The other alternative is to implement |
|||
|
|