[JBoss Portal] Iframe portlet and webmail
by BOCQUIER, Olivier
Hello,
I am currently using JBossPortal 2.6.3, and we have some sort of problems with an iframe portlet.
The iframe portlet is embedded in the portal and points to a webmail that runs ok.
This webmail (squirrelmail) runs on an apache server and works fine, it logs users in automatically with a plugin i added.
When the webmail is requested directly on the apache server, or even through an iframe written in a simple html page, everything works fine.
However, when the iframe is inside a portlet within the portal, i noticed that the php files that enable the connection with the IMAP server are loaded 6 times instead of just once, and the connection failed most of the time.
I think i might be able to solve the problem if i find out how the iframe portlet works exactly, and why it requests 6 times the url.
So if you have any ideas where the problem comes from, fell free to tell me ;)
Infrastructure:
JBossPortal 2.6.3
Apache 2.2.3
SquirrelMail 1.4.13
Cyrus-IMAP
--
Olivier BOCQUIER
This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
18 years, 2 months
[JBoss Seam] - Re: Help - post login and EntityHome instance
by mars1412
"terryb" wrote :
| If I view View or Edit form, both of wich utilise EntityHome, and then right after I click on Add form, the Add form shows record which was focused by View or Edit form.
|
Did you solve that?
I have the same problem and I am quite stuck.
I have no idea why this entity is not cleared...
I have a parent/child connection:
the parent's edit page shows a list of the childs
when I first access the parent's edit page, a conversation is started, including the parentHome
the list of childs has a select s:button with propagation=end and it passes the childs id to the child edit page
this should be ok - I want to end the parents edit conversation and the childs pages.xml starts a new conversation for the child
| <begin-conversation join="true" />
|
| <action execute="#{childHome.wire}"/>
|
| <param name="childId" value="#{childHome.childId}"/>
| <param name="parentId" value="#{parentHome.parentId}"/>
| ...
|
I don't understand this:* I open the parentList - no conversation exists
| * I open a parentEdit page - one conversation exists: cid=3
| * I click on a child in the list and come to the childEdit page
| * now one conversation exists, but it still has the cid=3
|
should not the cid 3 have ended (the s:button says so) and a new conversation begun (the childEdits page.xml file says so?
I suspected that join=true on the start-conversation might be the reason: but even without join=true, the cid is the same.
please help
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4129653#4129653
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129653
18 years, 2 months