Hi All,

 

I am trying to add a static name other than the war name in the URI.

It should be as follows:-

 

http://<server-name>:<port-number>/<webapp-name>/<customer-name>

 

And the above should be there always whenever the new request is been served.

 

I am using cocoon2.1.7 and I use two xmaps sitemap.xmap and dynamicmap.xmap.

Whenever it comes to sitemap.xmap I need to route it to dynamicmap.xmap where my project specific pipelines are in place.

I am using the following match for routing the request from sitemap.xmap to dynamicmap.xmap

 

    <map:match pattern="**">

      <map:mount uri-prefix="" check-reload="yes"

                 src="">

    </map:match>

 

It was working fine.

Now I am trying to add the customer name to the URI

And I tried the following

 

    <map:match pattern="**">

      <map:mount uri-prefix="{customer/name}" check-reload="yes"

                 src="">

    </map:match>

 

It is not matching Am I miss something.

Any other suggestions where I can route the request with the customer name.

 

Note :-

 

The following matches on sitemap.xmap made this possible on cocoon2.1.5 version

 

    <map:match pattern="">

      <!-- TODO: security check here -->

      <map:redirect-to uri="{customer/name}/" />

    </map:match>

 

    <map:match pattern="{customer/name}">

      <map:redirect-to uri="{0}/" />

    </map:match>

 

    <map:match pattern="{customer/name}/**">

      <map:mount uri-prefix="{customer/name}" check-reload="yes"

                 src="" dynamicmap.xmap"/>

    </map:match>

 

    <map:match pattern="*">

      <map:redirect-to uri="{customer/name}/" />

    </map:match>

    <map:match pattern="*/**">

      <map:redirect-to uri="/webapp/{customer/name}/" />

    </map:match>

 

 

Please give me some suggestion so that I can try out.

 

 

Thanks and Regards,

Baskar

 

 

 


The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.

www.wipro.com

Reply via email to