Re: Shiro log responded differently when access server via hostname and ip address.

2016-09-21 Thread iGem
Hiya Brian:

Please advice how to provide u sample app. As in post it in github ? or post
shiro configuration in here ?

Have you tried with ur shiro app with ip and hostname ? and you can login
without any problem ?

I'm guessing if I'm the only one having this issue maybe it's my setup
problem them.


Brian Demers wrote
> Any chance you have a sample app to help us look into it?
> 
> On Tue, Sep 20, 2016 at 10:26 PM, iGem 

> lwt.gemini@

>  wrote:
> 
>> Hiya Brian Demers:
>>
>> I'm using google Chrome browser. Results remain unchanged when I tried to
>> access to server using ip via pc. I've also cleared the cookies and
>> results
>> remain no change. Still can't login to server using ip address.
>>
>>
>> Brian Demers wrote
>> > What browser are you using on your phone? Does it support cookies ? 
>> What
>> > happens when you access the IP from a PC ?
>> > On your desktop, if you clear your cookies do you get the same result ?
>> >
>> > On Mon, Sep 19, 2016 at 11:22 PM, iGem 
>>
>> > lwt.gemini@
>>
>> >  wrote:
>> >
>> >> I've successfully integrated shiro into my spring mvc project and has
>> >> been
>> >> really happy and impressed with shiro. However I've encountered the a
>> >> road
>> >> block which I've been trying to fix for the passed few days with no
>> >> success.
>> >>
>> >> Since I'm developing on pc I've always type https://localhost/ for
>> >> testing purposes... until there's a section where I need to test it on
>> >> mobile. So I pulled out my android phone connect to the same network
>> as
>> >> my
>> >> server via wifi and typed in the url https://192.168.1.10/
>> > 
> 
>> >> to
>> >> test.
>> >>
>> >> Server shows me the login page and when I typed in username and
>> password
>> >> and
>> >> hit enter, I'm seeing the login page again which initially I thought I
>> >> entered the username and password incorrect. But After a few attempts
>> the
>> >> result remains the same, I'm still seeing the login page only.
>> >>
>> >> After checking the log file I see that when access server via IP, even
>> >> though I entered the correct username and password, I'm being
>> redirected
>> >> to
>> >> login.jsp again. This doesn't happened if I use hostname or localhost.
>> >>
>> >> I'm attaching an ss showing the different in log when access using
>> >> localhost
>> >> (log on left) and using ipaddress (log on right). I've highlighted the
>> >> log
>> >> with red color line.
>> >>
>> >> http://shiro-user.582556.n2.nabble.com/file/n7581268/
>> shiro-log.png
>> >>
>> >> Any idea why shiro respond differently ?
>> >>
>> >>
>> >>
>> >> --
>> >> View this message in context: http://shiro-user.582556.n2.
>> >> nabble.com/Shiro-log-responded-differently-when-
>> >> access-server-via-hostname-and-ip-address-tp7581268.html
>> >> Sent from the Shiro User mailing list archive at Nabble.com.
>> >>
>>
>>
>>
>>
>>
>> --
>> View this message in context: http://shiro-user.582556.n2.
>> nabble.com/Shiro-log-responded-differently-when-
>> access-server-via-hostname-and-ip-address-tp7581268p7581273.html
>> Sent from the Shiro User mailing list archive at Nabble.com.
>>





--
View this message in context: 
http://shiro-user.582556.n2.nabble.com/Shiro-log-responded-differently-when-access-server-via-hostname-and-ip-address-tp7581268p7581276.html
Sent from the Shiro User mailing list archive at Nabble.com.


Re: Shiro log responded differently when access server via hostname and ip address.

2016-09-20 Thread iGem
Hiya Brian Demers:

I'm using google Chrome browser. Results remain unchanged when I tried to
access to server using ip via pc. I've also cleared the cookies and results
remain no change. Still can't login to server using ip address.


Brian Demers wrote
> What browser are you using on your phone? Does it support cookies ?  What
> happens when you access the IP from a PC ?
> On your desktop, if you clear your cookies do you get the same result ?
> 
> On Mon, Sep 19, 2016 at 11:22 PM, iGem 

> lwt.gemini@

>  wrote:
> 
>> I've successfully integrated shiro into my spring mvc project and has
>> been
>> really happy and impressed with shiro. However I've encountered the a
>> road
>> block which I've been trying to fix for the passed few days with no
>> success.
>>
>> Since I'm developing on pc I've always type https://localhost/ for
>> testing purposes... until there's a section where I need to test it on
>> mobile. So I pulled out my android phone connect to the same network as
>> my
>> server via wifi and typed in the url https://192.168.1.10/
> 
>> to
>> test.
>>
>> Server shows me the login page and when I typed in username and password
>> and
>> hit enter, I'm seeing the login page again which initially I thought I
>> entered the username and password incorrect. But After a few attempts the
>> result remains the same, I'm still seeing the login page only.
>>
>> After checking the log file I see that when access server via IP, even
>> though I entered the correct username and password, I'm being redirected
>> to
>> login.jsp again. This doesn't happened if I use hostname or localhost.
>>
>> I'm attaching an ss showing the different in log when access using
>> localhost
>> (log on left) and using ipaddress (log on right). I've highlighted the
>> log
>> with red color line.
>>
>> http://shiro-user.582556.n2.nabble.com/file/n7581268/shiro-log.png;
>>
>> Any idea why shiro respond differently ?
>>
>>
>>
>> --
>> View this message in context: http://shiro-user.582556.n2.
>> nabble.com/Shiro-log-responded-differently-when-
>> access-server-via-hostname-and-ip-address-tp7581268.html
>> Sent from the Shiro User mailing list archive at Nabble.com.
>>





--
View this message in context: 
http://shiro-user.582556.n2.nabble.com/Shiro-log-responded-differently-when-access-server-via-hostname-and-ip-address-tp7581268p7581273.html
Sent from the Shiro User mailing list archive at Nabble.com.


No bean named 'shiroFilter' available when convert from xml to JavaConfig.

2017-07-20 Thread iGem
I've been successfully integrated shiro into my spring application and it has
been running accordingly for the passed 2 yrs. The configuration was in xml
file(defined in application-context.xml) I'm saying this to state that my
configuration using xml file is working accordingly.

Now I'm trying to convert the xml file into java config (defined all beans
in a class.. trying to NOT use xml file anymore), and I'm facing spring
unable to find shiroFilter bean, in which I've defined in my java class.

@Bean(name="shiroFilter")
public ShiroFilterFactoryBean shiroFilter(){
ShiroFilterFactoryBean sffb = new ShiroFilterFactoryBean();
sffb.setSecurityManager(securityManager());
sffb.setLoginUrl("/login.jsp");
sffb.setUnauthorizedUrl("/unauthorized.jsp");

Map chains = new HashMap();
chains.put("/userProfile/**", "anon");
chains.put("/resources/**", "anon");
chains.put("/**", "ssl, authc");
sffb.setFilterChainDefinitionMap(chains);
return sffb;
}

Been searching hints over the web but nothing helps to resolve this problem.
Any help would be appreciated.



--
View this message in context: 
http://shiro-user.582556.n2.nabble.com/No-bean-named-shiroFilter-available-when-convert-from-xml-to-JavaConfig-tp7581706.html
Sent from the Shiro User mailing list archive at Nabble.com.