Hi Madhawa, AFAIU In the implementation it get the links and add them to a Map where key and value both are same. When we do a request it check from the map whether the key exist for the path. If exist it will be bypass otherwise it will redirect. In your case /odataservices/* will be the key and when you request http://localhost:9443/odataservices/* since the link key matches this will bypass the login. But when you request something like http://localhost:9443/odataservices/abc then this will not match based on the implementation so it will redirect to the login page.
Thanks Thusitha On Tue, Jul 21, 2015 at 6:34 PM, Madhawa Gunasekara <[email protected]> wrote: > Kind reminder on this..! > > On Sat, Jul 4, 2015 at 9:39 AM, Madhawa Gunasekara <[email protected]> > wrote: > >> Hi All, >> >> I was able to invoke the servlet by using above mentioned reference. but >> I couldn't skip the login page for the all the scenarios. I was able to >> skip the login page for only https://192.168.1.103:9443/odataservices/* >> url request only. Please find my servlet declaration below. I need to >> handle requests like ' >> https://192.168.1.103:9443/odataservices/wso2services' from the servlet. >> which begining with particular word 'odataservices'. >> >> Any help on this matter in highly appreciated. >> >> What should I missing here ? >> >> <component xmlns="http://products.wso2.org/carbon"> >> >> <servlets> >> <servlet id="ODataServlet"> >> <servlet-name>ODataServlet</servlet-name> >> <url-pattern>/odataservices/*</url-pattern> >> <display-name>OData Services Callback Servlet</display-name> >> >> <servlet-class>org.wso2.carbon.dataservices.odata.ODataServlet</servlet-class> >> </servlet> >> </servlets> >> <framework-configuration> >> <bypass> >> <authentication> >> <link>/odataservices/*</link> >> </authentication> >> </bypass> >> </framework-configuration> >> </component> >> >> >> Thanks, >> Madhawa >> >> On Fri, Jul 3, 2015 at 5:20 PM, Madhawa Gunasekara <[email protected]> >> wrote: >> >>> Hi All, >>> >>> I have requirement to insert a servlet in DSS to process some specific >>> http requests( GET,POST). I have done some implementations by refering [1]. >>> but when I send the request it will redirect to the login page due to >>> the authentications, How can I fixed that? and also servlet methods didn't >>> hit but I can find my servlet class in Servlet listings also. >>> >>> [2015-07-03 15:20:30,885] DEBUG >>> {org.wso2.carbon.ui.deployment.beans.CarbonUIDefinitions} - Listing all >>> Servlet items as of now... >>> [2015-07-03 15:20:30,885] DEBUG >>> {org.wso2.carbon.ui.deployment.beans.CarbonUIDefinitions} - >>> --->ServletDefinition = ODataservicesCallbackServlet : >>> DataservicesCallbackServlet >>> >>> Any help on this matter is highly appreciated. >>> >>> [1] >>> https://github.com/madhawa-gunasekara/carbon-commons/blob/master/components/ntask/org.wso2.carbon.ntask.core/src/main/resources/META-INF/component.xml >>> >>> Thanks, >>> Madhawa >>> -- >>> *Madhawa Gunasekara* >>> Software Engineer >>> WSO2 Inc.; http://wso2.com >>> lean.enterprise.middleware >>> >>> mobile: +94 719411002 <+94+719411002> >>> blog: *http://madhawa-gunasekara.blogspot.com >>> <http://madhawa-gunasekara.blogspot.com>* >>> linkedin: *http://lk.linkedin.com/in/mgunasekara >>> <http://lk.linkedin.com/in/mgunasekara>* >>> >> >> >> >> -- >> *Madhawa Gunasekara* >> Software Engineer >> WSO2 Inc.; http://wso2.com >> lean.enterprise.middleware >> >> mobile: +94 719411002 <+94+719411002> >> blog: *http://madhawa-gunasekara.blogspot.com >> <http://madhawa-gunasekara.blogspot.com>* >> linkedin: *http://lk.linkedin.com/in/mgunasekara >> <http://lk.linkedin.com/in/mgunasekara>* >> > > > > -- > *Madhawa Gunasekara* > Software Engineer > WSO2 Inc.; http://wso2.com > lean.enterprise.middleware > > mobile: +94 719411002 <+94+719411002> > blog: *http://madhawa-gunasekara.blogspot.com > <http://madhawa-gunasekara.blogspot.com>* > linkedin: *http://lk.linkedin.com/in/mgunasekara > <http://lk.linkedin.com/in/mgunasekara>* > > _______________________________________________ > Dev mailing list > [email protected] > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- Thusitha Dayaratne Software Engineer WSO2 Inc. - lean . enterprise . middleware | wso2.com Mobile +94712756809 Blog alokayasoya.blogspot.com About http://about.me/thusithathilina
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
