udaykiran pulipati

Greenhorn
+ Follow
since Dec 21, 2012
Merit badge: grant badges
Biography
Software Engineer
For More
Hyderabad
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by udaykiran pulipati

Previously I got this error

To get rid of this use below code when you redirect the page

10 years ago
JSF

Bear Bibeault wrote:

udaykiran pulipati wrote:Use 0 value for session timeout, the session never timeout.

Click below link

How to avoid session timeout in jsp



That will not help. He's asking about the browser timeout, not the session timeout.




I gave solution to his problem. I also face this problem previously, after adding session - config in web.xml the problem is solved.
10 years ago
JSP
Add below config in web.xml for get rid of session timeout.

<session-config>
<session-timeout>-1</session-timeout>
<!-- session never timeout -->
</session-config>

Click below link

How to avoid session timeout in jsp
10 years ago
JSP
Use negative value -1, session never timeout.

Click below link for answer

How to avoid session timeout
11 years ago
JSP
Use 0 value for session timeout, the session never timeout.

Click below link

How to avoid session timeout in jsp
11 years ago
JSP
You are not declared Id in query



It solves your problem
If you have 3 maven projects and 1 web project, With out re declaring dependency in child project just refer below Element in child pom.xml file



For Example MySqlMavenServices is a Maven project it is referred to MySqlMavenWeb project
pom.xml file in MySqlMavenServices



pom.xml file in MySqlMavenWeb project

11 years ago
Here is the code for get ipaddress and system details using Java.

11 years ago
Hi,

I want create a new schema in myeclipse derby but gives an error when datatype int is used.

here is my code:



I need PHONENO column with size 10 and PINCODE column with size 6
Update your hibernate.cfg.xml file with below one

Your Dsl_member.hbm.xml file is not correctly mapped in hibernate.cfg.xml file.
use resource attribute for connect to database because in this file table is mentioned not in pogo class.

My hibernate-cfg.xml:
I have problem while closing rich modelPanel.

I have two rich:modelPanel s in my page.
1. When I click on Head to Head button 'Start a Head to Head Rivalry' modelPanel is open. After open I click on Esc key on keyboard it is closed well
2. But in that I have a h inputtext for entering user after enter username, I click on 'StartRivalry' button in 'Start a Head to Head Rivalry' modelPanel then 'Create a Challenge' modelpanel is open. In this I click on Esc key the modelPanle is closed againg I click on Esc key on keyboard the 'Start a Head to Head Rivalry' stay on, it is not closed.


'Start a Head to Head Rivalry' modelPanel UI




'Create a Challenge' modelPanel UI






I have a problem while closing parent modelpanel after closing the child modelPanel in richfaces.
can anybody tell me how to solve this problem.
Thanks
udaykiran.
12 years ago
JSF
I want to connect facebook from my project (Gameplay). My site having singin / singup details, using this I automatically create an account or signin into my Gameplay project. Here there is another option for signin i.e using facebook connect. whenever I click on facebook connect button at that time I login in facebook and using those details of facebook, I want to create an account in my Gameplay project.

I completed the task i.e how to connect facebook from Gamepaly project but I didn't know how to retrieve the facebook user account details after signin into facebook into my Gameplay project.

I am using java, jsf, hibernate technologies for this project.
Help me how to resolve this.
12 years ago
JSF