cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with Iviews of External Facing Portal

Former Member
0 Kudos

Hello people of the forum,

I have an External Facing Portal, and all my anonymous content I have developed it with jsp in Netweaver Developer Studio and created Iviews from the par I publish to the portal. It works fine and it displays the content without having to login, but the problem comes when the was is reestarted , after that the iviews display the login page , but it doesn't make any sense that the portal is doing this since the iviews are anonymous, I have cleared the cache from the http provider in the Visual Administrator , I have cleared the navigation cache in System Administration in the portal and also the browser cache and it still displays the login page on the anonymous iviews of my External facing portal. Do you guys know a way to fix this since I need that these iviews display normally without requiring login from the user since this portal is public.

Thanks a lot

Luis

Rewarding points will be given.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Have you assigned permission to the anonymous iViews?

For that select that iView and click open --> permission. you ll get permission editor window .In that select the anonymous group and assign read permission.

Regards

Hemalatha

Former Member
0 Kudos

Hi Luis,

Which version of portal are you on? I used to face this problem. Why dont you try setting a component profile property for all your components in portalapp.xml which is called <b>AuthScheme</b> (its not a standard property). Set its value to <b>anonymous</b>. Redeploy the par files then. After doing that try restarting WAS and check again. You could try for instance on just one component for example.

Hope this might help you.

Former Member
0 Kudos

Just open up the portalapp.xml in your project and for every component that you would like to make anonymous you add this:

<component-config>
        <property name="SafetyLevel" value="no_safety"/>
</component-config>
<component-profile>
        <property name="AuthScheme" value="anonymous"/>       
</component-profile>

Good luck !

Former Member
0 Kudos

Hello Guys,

I already , tried all of this but it still displays anonymous iviews with logon page, the rare thing is that the first 2 iviews in the navigation display ok but the rest of the iviews in the rest of the navigation links they display the login page.

Any other solutions are welcome.

Thanks

Luis

Former Member
0 Kudos

The iviews that you have made may be anonymous, but the content that is inside them is not. The content may be being drawn from infomation that is located on your portal in areas that require autorization to get to. Double check the content inside the iview, it may have to be copies to an area that is accessable to those that are anonymouse.

Former Member
0 Kudos

I don't see any content like this in the iviews. They are made from a jsp for example this is one of the jsp's that have the problem. In the jsps that work fine right now it has the same html and code it varies only in the text it displays. I dont' know if there could be something else that it is making the iviews to ask to login. Any other ideas are welcome.

Thanks

Luis

<%@ page import = "com.sapportals.portal.prt.component.*"%> <%@ page import = "com.sapportals.portal.prt.resource.IResource"%> <% String mimeUrl = componentRequest.getWebResourcePath(); %> <style>

.azulito

p {

font-family: Arial, Helvetica, sans-serif;

font-size:10pt;

text-align:justify;

}

.imagen .font { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: none; color: #FFFFFF; text-decoration: none; } .table








 


!!/images/promocion.gif" width="150" height="30">



!!/images/zeta_premier.gif">




<!Entre más Litros Acumule Mayor Será el RegaloOfreciéndole más Servicios...y además...MUCHOS REGALOS>

Nuestra Misión


!!/images/tanques.jpg" width="170" height="121" class="imagen">
Ser Líderes
en nuestros productos y servicios, principalmente en la comercialización
del Gas L. P., mediante la satisfacción y seguridad
de nuestros clientes.



Mejorar la calidad
de vida de nuestros trabajadores y sus familias, satisfaciendo
sus necesidades materiales y espirituales.







!!/images/soldando.jpg" width="170" height="122" class="imagen">
Apoyar el crecimiento
y desarrollo de la comunidad. Participar en la
conservación y mejoramiento del medio ambiente.



Generar
un rendimiento económico superior que garantice
el crecimiento continuo y que compense la inversión
y confianza de nuestros accionistas.



Dirigir
todos nuestros esfuerzos al logro de la Excelencia.





Si desea
solicitar sus pedidos de Gas L.P. para su Hogar o la Industria
marque:



*01
- 800 - 011 - ZETA* (
lada sin costo )

01 - 800 - 011 - <font color="#0000CC">9382</font>




*¡Con
Gusto le Atenderemos!
*

Former Member
0 Kudos

Is the text coming from the same location within the portal that the anonymos text is?

Former Member
0 Kudos

Hello,

Yes it is in the same portal in the same location.

Thanks