imran mansuri

Greenhorn
+ Follow
since Oct 18, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by imran mansuri

It is not on live url. It is in internal url.

The problem is when i write following code :

<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>


<html>
<head>
<title>enter your name page</title>
</head>
<body>
<f:view>
<h1>
<h:outputText value="JSF 1.2 Tutorial"/>
</h1>
<h:form id="UserEntryForm">
<h:outputText value="Enter Your Name:"/>
<h:inputText value="#{UserBean.userName}"></h:inputText>
<h:commandButton action="welcome" value="OK" />
</h:form>
</f:view>
</body>
</html>

It prints following:

JSF 1.2 Tutorial
Enter Your Name:#{UserBean.userName} OK

in browser.

where blue colored text is in text bxo and orange colored text is button.
13 years ago
JSF
Hi,

I am new to JSF. I am trying to execute the program given in Roseindia site. However, the browser does not seems to recognize #{.....} and displays as it is written in JSP.

Please help.

13 years ago
JSF
Hi,

We have one requirement related to session re-generation. We want to re-generate session before redirecting/forwarding a logged in user to next page.

We have implemented a code to copy all the session attribute in a Hash Map, then we have invalidated the current session.

Subsequently, we created new session and moved all the Hash Map entries to new session as attributes.

We have verified that all the attributes are available in new session and can be accessed properly.

However, the user is redirected to login page instead of moving him to the desired page.

Any help for this is appreciated.
14 years ago
I am using the MSSQL database with ssl enabled. I connect to the database using jtds driver for connection. I establish the secure connection with the MSSQL.

While creating the connection I am facing following sporadic problem of database connectivity:

java.sql.SQLException: Network error IOException: signed overrun, bytes = 528

Most connections are successful but some are not. Please any body can suggest some solution for this problem.

Thank You in advance.
Hi,


I have a webservice which is lying in one package in one application. It is using applications other classes which are lying in other package. Now I have created webservice by using only the package in which the webservice classes are stored.

After I have created the webservice when i call it from client it can not access the application (in which webservice created) classes used in Webservice untill I create a jar file of application's other classes and put it in AXIS folder(As I am using AXIS for Webservice deployment and access). I tried to put the applicatin in classpath of the AXIS but it does not work.

Can Any one help me in fixing this problem as I dont want to keep 2 copies of the application one in AXIS and other in Tomcat/webapps/.

Thank You.
17 years ago