Discussion:
[Erp5-dev] Sending user information for log in ERP5 Instance
Diego Manhães Pinheiro
2006-06-30 00:48:56 UTC
Permalink
Hi,

I have the following situation:
-An user logs on to a non-ERP5 Zope instance.
-If wanted he can log on to a ERP5 instance afterwards.

How can I make his/hers logon to ERP5 transparent? I mean, how can I
send user/password information to ERP5 from another non-ERP5 Zope
instance?

Thanks in advance,
-----------------------------------
Diego Manh?es Pinheiro
Linux User #375020
Franck Martin
2006-07-03 08:55:11 UTC
Permalink
Post by Diego Manhães Pinheiro
Hi,
-An user logs on to a non-ERP5 Zope instance.
-If wanted he can log on to a ERP5 instance afterwards.
How can I make his/hers logon to ERP5 transparent? I mean, how can I
send user/password information to ERP5 from another non-ERP5 Zope
instance?
Thanks in advance,
-----------------------------------
Diego Manh?es Pinheiro
Linux User #375020
_______________________________________________
Erp5-dev mailing list
Erp5-dev at erp5.org
http://erp5.org/mailman/listinfo/erp5-dev
Hi,
If you want you can send password and username into POST var or into
URL (very bad thing).
If you edit source code of login_form you will see two inputs named
__ac_name and __ac_password.
You just have to generate a form who send it to the view form like :
http://127.0.0.1/erp5/view?__ac_password=password_string&__ac_name=zope_username
Loading...