kalpana gali

Greenhorn
+ Follow
since Jun 30, 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 kalpana gali

Thanks Pradeep, I will try it this way.

Ulf-- when we upgrade to java 1.5 it gives a compile error with enum's. In axis 1.2 there is a package org.apache.axis.enum which needs to be changed.
14 years ago
Is this a bug in Axis 1.4 or does the wsdl need to be modified?
14 years ago
We are trying to move to Java 1.5, as a result I upgraded the Axis to version 1.4. But noticed the axis 1.4 does not generate all the classes from the WSDL. Has anyone been able to resolve the issue? Thanks in advance.
14 years ago
Hi,

I recently took over the maintenance of a old project which is using struts 1.0. The project is running fine without any glitches. I want to upgrade the project to a newer version of struts.

My question is can I do it without rewriting the whole application.
15 years ago
Thanks Matteo, will try it this way.
15 years ago
JSP
Hi All,

I am having trouble displaying an alert message in Spanish in my JSP. the local and everything is getting picked up currently but the spanish accents are not getting converted. Here is an example of what I am trying to do. I want to display the message "Email is required" in spanish using a window.alert() method.

so when i code it like


<script language="javascript" type="text/javascript" >
function showMsg()
{
window.alert('Direcci& #243;n de correo electr& #243;nico obligatorio.' + '\n');
}
</script>

<a href="javascript:alert('Direcci& #243;n de correo electr& #243;nico obligatorio.' + '\n');" > test1 </a>
<br>
<br>
<a href="javascript:showMsg();">test2</a>


the first link "test1" works fine. but the second link "test2" does not translate the '& #243;' to the corresponding accent but displays it as it is.

I added a space after the '&' symbol for the purpose of this post as the accent was getting translated.

Can anyone help me with this.Thanks in advance

[ June 30, 2008: Message edited by: ramana neelam ]
[ June 30, 2008: Message edited by: ramana neelam ]
15 years ago
JSP