129 Posted Topics

Member Avatar for tuse

The exception "java.lang.NoClassDefFoundError: org/apache/naming/resources/Resource" indicates that tomcat cannot find the above class anywhere in the classpath. In tomcat5.5 this class is in the file 'naming-resources.jar'. See if this file is present at the location <tomcat5.5>\common\lib I think due to some reason tomcat might not have installed properly. Try installing it …

Member Avatar for peter_budo
0
150
Member Avatar for newtoajax

What you are doing in the servlet is that you are setting the 'tagValue' as an attribute in the request and than forwarding the request. But for AJAX requests all you have to do is just send the 'tagValue' on the response output stream You should do something like this …

Member Avatar for Stefano Mtangoo
0
2K
Member Avatar for Stefano Mtangoo

First you missed the double quotes for page attribute. The line should be [CODE] <jsp:include page="<%=thePage%>" flush="true"></jsp:include> [/CODE] Also you can only use relative urls for the page attribute. As per the docs, The relative URL looks like a pathname--it cannot contain a protocol name, port number, or domain name. …

Member Avatar for Stefano Mtangoo
0
197
Member Avatar for agr8lemon

Try [CODE] newDisplay = ""; [/CODE] instead of [CODE] newDisplay = "block"; [/CODE] What it will do is that it will try to remove any style applied and try to set it to the elements inherent values and as a result should work in both FF and IE. Hope this …

Member Avatar for parry_kulk
0
2K
Member Avatar for KcNaveen

Yes it is possible to make the radio button disabled using javascript but the problem will be that the radio button's value wont be submitted to server if it is disabled. You will have to use some hidden fields to pass the value to the server

Member Avatar for KcNaveen
0
99
Member Avatar for letheredge

The code is fine. It seems that the EL is not evaluating in the webserver. The reasons for these may be, 1] Your web.xml should does not have reference to web-app_2_4.xsd schema or higher e.g. [CODE] <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> [/CODE] 2] You might have disabled the EL …

Member Avatar for ~s.o.s~
0
348
Member Avatar for technopup

Looking at the code snippet posted by you, I dont think you need to append 'a' as you are already passing parameters like 'a19', 'a20'.....etc in the Toggle() function. Only thing is that pass them as a string as shown in eg below [CODE] ... <input type="radio" name="abc" onClick="Toggle('a18');" value="a18"> …

Member Avatar for technopup
0
95
Member Avatar for agent7

It seems to be the problem with the line [CODE] Connection conn = DriverManager.getConnection("jdbc:postgresql://localhost:8080/Employee", "rtz_jhay","kudeta7"); [/CODE] You are trying to connect the d/b on port 8080. This port is generally used by web-servers. Try to find the port on which you can connect to postgresql. The default is 5432 Hope …

Member Avatar for parry_kulk
0
558
Member Avatar for ben05

Using <jsp:include> will help you to include the jsp with combo-box within another jsp dynamically at runtime.

Member Avatar for parry_kulk
0
107
Member Avatar for JimBoCol

As per what my understanding of the problem goes, setting the attribute 'target' wont help because the form is not submitting any form. You are just changing location in the navigate() javascript function. You can achieve what you want by changing the line [CODE] document.location.href=go; [/CODE] in the navigate() javascript …

Member Avatar for JimBoCol
0
102
Member Avatar for niths

You can use an extra parameter in your showUser() javascript function and pass the type of operation as the second parameter, e.g. Change the function as, [CODE] .... function showUser(str, op){ .... [/CODE] Modify all call to showUser as [CODE] <input type="button" name="edit" value="Assign" id="edit" style="background-color:#A7C942; color:#ffffff; font-size: 1.2em;" onclick="showUser(this.value, …

Member Avatar for niths
0
115
Member Avatar for technopup

One way that I can think of is that instead of passing this.value in the onchange event of the select box you can pass the object this itself as follows, [CODE] <select name="**the name is dynamically got from database**" onChange="div_It(this);"> [/CODE] And than in the div_It() function you can use …

Member Avatar for technopup
0
146
Member Avatar for kdmuk10

System.out.println (newTi + newCh + newGi); Will not give you the desired result. Java do not have any inline function that will evaluate a expression. You will have to write the method to evaluate. You can do like check the value of 'newCh' and perform the operation on the two …

Member Avatar for kdmuk10
0
165
Member Avatar for PeterKerk

You can check the classpath set by executing the command echo %CLASSPATH% on the command window. It displays the classpath set on your system. If the classpath variable is not properly set Also try setting the classpath variable in, Control Panel -> System ->Adavanced tab -> Environment Variable -> System …

Member Avatar for parry_kulk
0
609
Member Avatar for madkat3

To prevent a form from submitting, the validating function must be called from the onsubmit event of the <form> tag and this function should than return true or false. e.g You will need to use something like the code given below [CODE] <form method="post" action="send.php" onsubmit="return sendform()"> [/CODE] Now if …

Member Avatar for madkat3
0
11K
Member Avatar for eshwarz

From the code snippet posted, I think that the issue is with missing ending ')' at the line 35 [CODE] var parameters = 'comment='+escape(encodeURI(document.getElementById('comment_box').value)) +'&phototiding='+escape(encodeURI(document.getElementById('phototiding').value)) +'&picname='+escape((encodeURI(document.getElementById('picname').value)); [/CODE] This is causing Javascript errors and that might be the cause of the issue The line should be [CODE] var parameters = 'comment='+escape(encodeURI(document.getElementById('comment_box').value)) …

Member Avatar for parry_kulk
0
101
Member Avatar for hypernova

A very nice tutorial on JavaWorld at the link given below will solve all your queries regarding use of JNDI in a standalone application [url]http://www.javaworld.com/javaworld/jw-04-2002/jw-0419-jndi.html?page=1[/url] Hope this was helpful.

Member Avatar for parry_kulk
0
121
Member Avatar for ravi25a

Your table schema is SID NUMBER(9) SNAME VARCHAR2(8) SADD VARCHAR2(16) but in the delete query is delete from student_info where stu_id=? Given the above schema, I think it should be as follows, delete from student_info where sid=?

Member Avatar for parry_kulk
0
197
Member Avatar for intes77

Formatter lets you pass an Appendable object. This is a interface that defines append methods so that the formatter can store its results in a text collector such as a stream object. Formatter formatter = new Formatter(); creates a formatter and the destination of the formatted output is a StringBuilder …

Member Avatar for intes77
0
150
Member Avatar for IsaB

The error is that "BufferedReader cannot be resolved to a type". It is caused because you have not imported the corresponding libraries. Import the libraries in JSP as <@page import="java.io.BufferedReader"> ... and so on Also the file can be placed anywhere on the server if you are using absolute filepaths. …

Member Avatar for parry_kulk
0
563
Member Avatar for elneco

In the file mystyle.css see the style [CODE] .nav-Hotels, .nav-Hotels-click { position: absolute; top: 72; left: 0px; width: 125px; height: 42px; background: url(pix/Nav.png) no-repeat -125px -72px; } [/CODE] Here top is set as top:72; Set the units for the value there. i.e top:72px; Hope this solves the issue

Member Avatar for elneco
0
100
Member Avatar for m23

Yeah you cannot use submit button as it will refresh the whole page. You will have to use a normal button. Now in the line xmlhttp.open("GET","ajax_info.txt",true); instead of "ajax_info.txt" use the url where you want to submit the form i.e. the one in the action attribute of a form and …

Member Avatar for parry_kulk
0
99
Member Avatar for techie81

java.lang.NoClassDefFoundError: com/oreilly/servlet/multipart/MultipartParser indicates that the required class/package is not in the classpath

Member Avatar for parry_kulk
0
271
Member Avatar for nlvp

I dont think there is any way to get an element by its attribute. As for the second problem try following in Line no. 6 [CODE] alert(elements[i].getElementsByTagName('data')[0].childNodes[0].nodeValue); [/CODE]

Member Avatar for fxm
0
177
Member Avatar for Chad Gary

Checkout the solution at the following link that I had found sometime back to solve a similar caching issue in IE [url]http://viralpatel.net/blogs/2008/12/ajax-cache-problem-in-ie.html[/url] Hope it helps you too

Member Avatar for parry_kulk
0
98
Member Avatar for mohanvamsi_18

First check for the type of browser and then try to attach the event as follows [CODE] if(isIE){//If the browser is IE e3s1.onselect = new Function("checkother();"); } else{//For other browsers e3s1.setAttribute("onselect", "checkother();"); } [/CODE]

Member Avatar for fxm
0
163
Member Avatar for indu_ss4

If you are using Seam than the solution given at the link below will be helpful to you. What it does is that it periodically checks for new session through javascript timer and Seam component annotated with @WebRemote. The javascript timer is reset at every normal and AJAX request. [url]http://in.relation.to/3266.lace[/url] …

Member Avatar for indu_ss4
0
3K
Member Avatar for Erco21

Try this.. Put the passing of value in a function (have appropriate parameters to the function), [CODE] function putValue(){ thetextbox[0].value = pass + cmd + box.value; } [/CODE] Now first check the browser type since event handling is different in IE and other browsers. A simple way can be, [CODE] …

Member Avatar for Erco21
0
369
Member Avatar for sarithak

Either set the styles in the css for 'divStyle' like [CODE] <STYLE> ... ... . divStyle{ ... ... visibility:hidden; ... ... } .... </STYLE> [/CODE] Or you can set it in the style attribute of the div element as [CODE] <div id="div1" class="divStyle" style="visibility:hidden;"> [/CODE] hope this helps

Member Avatar for rajarajan2017
0
225
Member Avatar for Erco21

Since the input element is not having any id, document.getElementById() wont work except in IE. You can use document.getElementsByName() which returns an array of elements of the given name. For e.g. if the input element with name 'WebGridBuilder$ctl04$ctl01' is the first element of that name than you can do something …

Member Avatar for Erco21
0
131

The End.