Subrahmanyam Baratam

Greenhorn
+ Follow
since Nov 24, 2008
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 Subrahmanyam Baratam

Hi Ulf,

There is no server running in that system, they are using just for storing docs.
15 years ago
Hi Ulf,

Thank you for responding, the file need to be uploaded to the new system in some location (emp: D;/orderFiles/upload.....)
15 years ago
Hi,

There is a requirement of file upload in our project.The task is finished but the change request came to me is to upload the file in different system.

Let me explain in detail...currently why the user hits the browse button and uploads the file, the file is getting uploaded in server in particular location, but as per the Change Request i need to upload this file in different system. This is entirely new to me, please share your valuable ideas.

Thanks in advance,
baratam.
15 years ago
Hi,

I need to install portal server using silent installation. I stucked
at the below place in the response file.


In the section of WEB SPHERE APPLICATION SERVER CD LOCATION, for the
below command...
-W userInputCDLocWas.cdPath="/cdimg/A-1"


WEB SPHERE PROCESS SERVER CD LOCATION
-W userInputCDLocWps.cdPath="/cdimg/A-2"


ARCHIVE CD 1
-W archiveMediaPanel1.cdPath="/cdimg/A-3"


ARCHIVE CD 2
-W archiveMediaPanel2.cdPath="/cdimg/A-4"


I am having the s/w in folders like C93LQML,C93LRML,C93LSML etc..,Can
any one of you guide me to finish these steps(What exactly we need to
mention in the above commands...)
So that I can step to the next commands in the response file.


ThankYou,
Subrahmanyam Baratam.
15 years ago
Hi,

Try to use this.value when you click the radio button.
15 years ago
JSF
Thank you for clearing the doubt Ben.
15 years ago
JSP
Ben, if there are number of images to displayed onto the page, then reading each image as a stream and displaying it wont't affect the performance.

If the performance won't affect its better to follow your code.I hope it will lead to a performance issue. Please reply.
15 years ago
JSP
Hi,

Try to use fmt or core jstls tags for this, instead of <img> tag.

Once check the below link also, it may help you.

http://forums.sun.com/forum.jspa?forumID=427


ThankYou,
Subrahmanyam Baratam,
WebSphere PortalDeveloper.
15 years ago
JSP
Hi,
I am using jsf validation and the issue is, when i used required attribute for the jsf component the default message(Validation Error: Value is required)is getting displayed, instead of this message i need to display my own custom message, to overcome this I have taken one propertie file and
added the below line, and added the property file in faces config file,

javax.faces.component.UIInput.REQUIRED = Entry is required.

<application>
<message-bundle>com.mir.registration.i18n.MyErrors</message-bundle>
</application>
and this is working fine,

But here the problem is, i need to display the message,
forexmp: For user text box --->Message is ---> User Entry is required
For Password Password Entry is required
For designation Designation Entry is reuired

in the same way for the other fields,

Is there any solution for this issue.

Thanks,
Subrahmanyam.
15 years ago
JSF
Hi,

Can any one tell the advantage of using annotaions and kindly provide a simple example how to use annotations in Java v5.0.

Thanks in advance,
Subrahmanyam.
15 years ago
Thank you very much, the problem is solved, i am getting ready to design
the next page which is also related to list boxes. I want your help to fullfill the requirement.

There are two list boxes and in the middle of the list boxes, there will be 4 buttons like ( >>, >, <<, < ).
If i select >> i need to send all the values from first list box to second list box,
If i select << i need to send all the values from second list box to first list box,
If i select > i need to send all the values which are selected in first list box to second list box,
If i select < i need to send all the values which are selected in second list box to first list box,

Please tell me if there is any predefined tag in JSF (third party is not recommeded for our client) if not, kindly guide me how to proceed further.


Thanks in advance,
Subrahmanyam.
15 years ago
JSF
Thanks, It worked but another problem with this for listBox i have used the below code in jsp,

<h:selectManyListbox size="3" id="oneListBox">
<f:selectItems value="#{Register.oneListValues}" />
</h:selectManyListbox>

//code in the bean (setter & getter for the above )

private String[] oneListBox;

public String[] getOneListBox() {
return oneListBox;
}

public void setOneListBox(String[] oneListBox) {
this.oneListBox = oneListBox;
}

When the user selects multiple items in the list box and when he submits the button, in the backend i need to get the values which are selected only.
For this i have written one method in the bean, when user hits the submit button control will go to the below method,

public String process(){
System.out.println("IN PROCESS METHOD");
System.out.println("Selected list box values>>>"+getOneListBox());
//in the about sysout i am getting null,
return "formRegist";
}

How can i get those values which are selected in the list box.
It would be better if any one give solution for this, because with this my first jsp will be finished and can move to the next.

Thanks in advance,
Subrahmanyam.
15 years ago
JSF
Hi,
Can any one please guide me in using the dropDown in jsf.
The requirement is as and when my page loads the dropDown needs to be loaded with the values from database, for this in JSF how can i achieve.

Thanks in adavance,
Subrahmanyam.
15 years ago
JSF