cancel
Showing results for 
Search instead for 
Did you mean: 

Contents with XMLFormBuilder/WPC has no directory construction in URI.

Former Member
0 Kudos

Contents created with XML Form Builder or Web page composer shows "irj/servlet/prt/portal/prtroot/docs/guid/...." when I access to those contents.

Also, My search engine needs to have specific URI pattern, such as ".*/SITE/AAA/BBB/XXXX" for search.

Can I change the "irj/servlet/prt/portal...." URI to "SITE/AAAA/BBB/...."?

If possible, please let me know the way.

Thank you.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hi,

You cannot change this URL to "SITE/AAAA/BBB/...."!!, as this will affect the whole portal behaviour.

Check this to know how Portal Requests Are Handled:

http://help.sap.com/saphelp_nw70/helpdata/EN/44/42c08f81ce2152e10000000a114a6b/frameset.htm

To know more about Request URL:

http://help.sap.com/saphelp_nw70/helpdata/EN/2f/60b942dc2eb611e10000000a155106/frameset.htm

http://help.sap.com/saphelp_nw70/helpdata/EN/44/42c2ed81ce2152e10000000a114a6b/frameset.htm

The only thing what I can think of is to add SITE url-pattern in servlet-mapping in the web.xml.

But any way this does not solve your problem.

http://help.sap.com/saphelp_nw70/helpdata/EN/44/42c08f81ce2152e10000000a114a6b/frameset.htm

<servlet-mapping>

        <servlet-name>prt</servlet-name>

        <url-pattern>/SITE/*</url-pattern>

    </servlet-mapping>

Regards,

Praveen Gudapati