igor.vaynberg wrote:
> 
> no it is not possible, if you specify servlet mapping as /foo/bar then
> it can only handle requests that are under /foo/bar. servlet container
> will not route /foo/zad to the servlet.
> 
> -igor
> 
> On Thu, Aug 14, 2008 at 10:59 AM, miro <[EMAIL PROTECTED]> wrote:
>>
>> Is it possible to map two classes with different path?
>> for example
>> mountBookmarkablePage("/searchPCR", SearchCarRegistration.class);
>> mountBookmarkablePage("/companyLookUp", CompanyLookup.class);
>>
>> the basic prefix which   wicket listens to is     /secure/index.jas
>>
>> so I can access SearchCarRegistration.class  using
>> /secure/index.jas/searchPCR
>> is there way I can change  the prefix for  CompanyLookup.class  like I
>> want
>> to access CompanyLookup.class
>> using /secure/companyLookUp   , is this possible  ?
>>
>>
>>
>>
>>
>> --
>> View this message in context:
>> http://www.nabble.com/using-mountBookmarkablePage-tp18986524p18986524.html
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 


Its not with the servlet, ok lets say I mapped /* to wicket filter.
In this case all the request  are routed through this filter , 
In my  WebApplication I  book marked two pages
mountBookmarkablePage("/searchPCR", SearchCarRegistration.class);
 mountBookmarkablePage("/companyLookUp", CompanyLookup.class); 
in this case path to SearchCarRegistration.class  will be
http://foo/searchPCR    right ,
and  http://foo/companyLookUp will be for  CompanyLookup.class.
what is the url for homePage .
We specidfy HomePage in application, so how will I be able to call home page
?
  


 
-- 
View this message in context: 
http://www.nabble.com/using-mountBookmarkablePage-tp18986524p18987974.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to