留言板

[SOLVED] Passing User Name and Password to an IFrame

Branden Boucher,修改在14 年前。

[SOLVED] Passing User Name and Password to an IFrame

New Member 帖子: 11 加入日期: 09-9-14 最近的帖子
I have been researching how to pass the user name and password to an IFrame and I noticed three issues.

First, if there are multiple IFrames on one page and one of them is switched to use Form authentication, the other IFrames on the page are also affected and they all try to show the same page. Is there a fix for this?

Second, even when you are just testing and only have one IFrame on the page that is switched to use basic authentication, you have to hard code in the login. If you switch to Form type authentication, there is no way to pass in the user name and password (or even just the user name) that was used by the user when he/she logged in to liferay. I did notice an updated proxy.jsp had been created and I tried using that, but it did not work. And that is where the Third issue comes in.

Third, when I tried to use the updated proxy.jsp file and it didn't work, I backed up the file and tried modifying it to throw in some test code. I then noticed when I tried to revert back to the backup file, the debug info still showed up. I later found the code modifications I had made inside of a proxy_jsp.class file. I am really worried that if I tried to make more changes, I will not be able to revert back to a backup. Can someone explain what is going on here?

Please help me on these issues as they are stopping us from continuing on with some intended projects for Liferay.
Branden Boucher,修改在14 年前。

RE: Passing User Name and Password to an IFrame

New Member 帖子: 11 加入日期: 09-9-14 最近的帖子
I know that there are some other threads on some of these issues but I have not found my answers yet. Anyone else out there in the same boat?
thumbnail
Jason Morton,修改在13 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 31 加入日期: 10-8-18 最近的帖子
I am having a similar issue. I am in an iFrame, using form auth, method POST. I am getting the username but the password is coming up blank.


field name: username value: @email_address@
field name: password value: @password@


result:

username: test@liferay.com
password:
Patrice Laramee,修改在13 年前。

RE: Passing User Name and Password to an IFrame

New Member 帖子: 4 加入日期: 11-1-25 最近的帖子
Jason Morton:
I am having a similar issue. I am in an iFrame, using form auth, method POST. I am getting the username but the password is coming up blank.


field name: username value: @email_address@
field name: password value: @password@


result:

username: test@liferay.com
password:


I experience the same issue. Anyone filled a bug report or it's a known bug/security feature?

Thanks
thumbnail
James Falkner,修改在13 年前。

RE: Passing User Name and Password to an IFrame

Liferay Legend 帖子: 1399 加入日期: 10-9-17 最近的帖子
Patrice Laramee:
Jason Morton:
I am having a similar issue. I am in an iFrame, using form auth, method POST. I am getting the username but the password is coming up blank.


field name: username value: @email_address@
field name: password value: @password@


result:

username: test@liferay.com
password:


I experience the same issue. Anyone filled a bug report or it's a known bug/security feature?

Thanks


I too noticed this. It's because the "password" field is filled in from session data, and so you have to enable the password to be stored in the session before this field will be correctly filled in.

So set session.store.password=true in your portal-ext.properties.
Alexandre Sarrazin,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 71 加入日期: 12-1-3 最近的帖子
I don't find my file "portal-ext.properties" where is it ?
thumbnail
Hitoshi Ozawa,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
I don't find my file "portal-ext.properties" where is it ?


You have to create it under \ROOT\WEB-INF\classes
Try googling around because it's been written in books, wiki, and serveral forum posts already.
Alexandre Sarrazin,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 71 加入日期: 12-1-3 最近的帖子
Ok, i've my portal-ext.properties , and after i write just this :

session.store.password=true

And after ? emoticon
thumbnail
Olaf Kock,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Liferay Legend 帖子: 6403 加入日期: 08-9-23 最近的帖子
Alexandre Sarrazin:
I don't find my file "portal-ext.properties" where is it ?



https://www.liferay.com/documentation/liferay-portal/6.1/user-guide/-/ai/configuring-liferay-s-properties

And you'll have to restart Liferay in order to pick up these changes
Alexandre Sarrazin,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 71 加入日期: 12-1-3 最近的帖子
Olaf Kock:
Alexandre Sarrazin:
I don't find my file "portal-ext.properties" where is it ?



https://www.liferay.com/documentation/liferay-portal/6.1/user-guide/-/ai/configuring-liferay-s-properties

And you'll have to restart Liferay in order to pick up these changes



So, if i'm good understand , for use @password@ , it's enough to put "session.store.password=true" ?
beacause it doesn't work.... emoticon
thumbnail
Olaf Kock,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Liferay Legend 帖子: 6403 加入日期: 08-9-23 最近的帖子
Alexandre Sarrazin:
So, if i'm good understand , for use @password@ , it's enough to put "session.store.password=true" ?
because it doesn't work.... emoticon

Make sure you created portal-ext.properties, not portal-ext.properties.txt if you're on windows and hide your file extensions by default.

You can check if the setting is active by checking it in ControlPanel under "Server/ServerAdministration/portal properties".
Alexandre Sarrazin,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 71 加入日期: 12-1-3 最近的帖子
The setting is active in ControlPanel but it doesn't work , i don't understand why.

My portal-ext.properties :

session.shared.attributes=org.apache.struts.action.LOCALE,COMPANY_,USER_,LIFERAY_SHARED_,USER_PASSWORD
session.shared.attributes.excludes=
session.store.password=true
session.test.cookie.support=true
session.enable.phishing.protection=false
Alexandre Sarrazin,修改在12 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 71 加入日期: 12-1-3 最近的帖子
It work emoticon Thanks all
thumbnail
chandan B,修改在9 年前。

RE: Passing User Name and Password to an IFrame

Junior Member 帖子: 64 加入日期: 14-8-6 最近的帖子
Alexandre Sarrazin:
It work emoticon Thanks all



How did it Work for you? Please give me the complete solution. I'm currently working on the Iframe. I'm using Liferay portal 6.2 CE.
Should I change in the Portal-ext.properties.
Mohamed rizwanuzaman,修改在12 年前。

RE: Passing User Name and Password to an IFrame

New Member 帖子: 20 加入日期: 09-12-17 最近的帖子
What exactly i am looking for. Thanks..Its working. One quick update. If we enable session storing the password any secuirty issue will be there?
liu sam,修改在12 年前。

RE: Passing User Name and Password to an IFrame

New Member 帖子: 2 加入日期: 12-3-28 最近的帖子
can you tell me how you wrote your html code?
i tried everything i knew but still cant work...
Justin Jiang,修改在10 年前。

RE: Passing User Name and Password to an IFrame

New Member 发布: 1 加入日期: 13-4-12 最近的帖子
please ensure you didn't enable the CAS authentication.
Ilove Liferay,修改在10 年前。

RE: Passing User Name and Password to an IFrame

New Member 发布: 1 加入日期: 13-12-26 最近的帖子
I am trying to add an iFrame to a portlet, but I need to pass the user roles that the Liferay user has to the page that I am embedding with the iFrame. Is there a way to do this?

Thank you!
thumbnail
michael hamlett,修改在9 年前。

RE: [SOLVED] Passing User Name and Password to an IFrame

Junior Member 帖子: 30 加入日期: 13-5-23 最近的帖子
I am on Liferay 6.2
using IFRAME and passing Form Variables
@screen_name@ works
@user_id@ does not work
@email_address@ does not work

in authentication type i put FORM
in form method i put POST
in field name i use Username
in Value i put @screen_name@
this method works

if you use Value of anything else all you get when you retrieve the form variable is the text you put in the VALUE column

Liferay you need to fix this
thumbnail
chandan B,修改在9 年前。

RE: [SOLVED] Passing User Name and Password to an IFrame

Junior Member 帖子: 64 加入日期: 14-8-6 最近的帖子
Thanks, Its working correctly now. emoticon