JOSSO's <ignore-url-patterns> example needed -


just wondering if show me example of how works josso's partner-app in joss-agent-config.xml?

just solved today. set url patterns josso ignore-url-patterns tag need use tag namespace:

<agent:partner-app context="/" id="liferay">
   <agent:ignore-url-patterns>
      <s:value>*.css</s:value>
      <s:value>*.js</s:value>
      <s:value>*.gif</s:value>
      <s:value>*.jpg</s:value>
      <s:value>*.png</s:value>
   </agent:ignore-url-patterns>
</agent:partner-app>

this assumes have xmlns:agent="urn:org:josso:agent:core" , xmlns:s="http://www.springframework.org/schema/beans".

the xsd ignore-url-patterns uses "##other" scope must tag namespace. i've used spring's <value /> tag because simple container string , work great holding various url patterns want use.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -