jazy smith

Ranch Hand
+ Follow
since Nov 18, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by jazy smith

Hi all,
I am fetching webpage from secure server ( https ) which has print button on it. Clicking on print button would fire ActiveX control for printing. Thing is, when I click on print button, I get IE security popup saying "page contains secure and non secure items". I know why is it coming up because ActiveX control is running on HTTP ( non secure ) server (that is my local machine). Now, this is the code snippet. The report object is ActiveX object. As soon as ActiveX control executes and gives the result back to javascript, I get that pop up window.

Is there any way I can hide or disable that popup through programming ? disabling from IE option, I know. But i want to do that through javascript.

Any idea ?
Hi all,

I recently came across the below java code for getList(). can anyone help me debugging it. I can't understand the syntax. if anyone have simple example of such syntax, I'd be obliged.


13 years ago
Hi Bear,

so what could be the way if I want to use the same two code and want to pass parameter to another jsp using same jquery function. From your reply what I understood is , I have to create event handler. Any help or link you can provide to run this simplest example. ( i want to use same jquery ajax function and want to pass data to another jsp )

thanks in advance,
Hi all,

I have this code snippet where I am passing data to another jsp file. and in Ajax.jsp , my code is . Now when I click on text box in index.jsp, I am getting alert promt saying data has been saved. but when I display Ajax.jsp the value is null. My doubt is , am I really passing data to another jsp ? Am I wrong in code ? Please correct me.
Hi all,

I have piece of code as mentioned below. I want to parse each string array value associated with each object array. (e.g. for obj[0], I need the first string value as "a" and second string value as "ap" ) How would I get them ?

Any idea ?

13 years ago
Hi all,

I am a fresher in IT industry. I have heard few software development words like " development, Integrated System Test environment, System Test environment, User Acceptance environment, Production Environment " Performance Test

I need to understand the correct sequence of above environments. Example, when does the IST environment comes into picture. when does UAT comes into picture.

Typically what I understood is the below sequence. Please correct me if I am wrong

Dev -> Integrated System Test -> System Test (Staging) -> User Acceptance Testing (UAT environment) -> Production
13 years ago
Hi all,

When I am trying to deploy my application on tomcat 6 ( i have jdk 1.6 ) in eclipse, it says following error,

"The server does not support version 3.0 of the J2EE Web module specification."

any idea ?

thanks
14 years ago
Hi all,

I have a page called frames.jsp.

I have one image whos dimensions are 795 X 79. I want to place this image on the topframe such that it should always come in the center of the frame without causing any scrollbars on the top frame. Please note that I don't want any scroll bars on that frame. even If I open the page in different screen size, it should get adjusted with the screen size ( I mean it should take screen dimensions dynamically and adjust itself to the center of the frame. )

thanks in advance
Hi all,

I am new to HTML.


I have html page where I have two frames. left and right. left is the name of folders and right is the list of files. Now in menu page i have 3 folders. Initially the right frame is blank.
I want to make a page where If I click on perticular folder(in the code below it's folder.jsp), the command should go to (findfiles.java) servlet and retrieves the list of files under that directory and display those files to the right frame.

so where I am stuck is once I have all the files depending on user's choice in findfiles.java, How can I display those files to right frame ?


Hope to hear from you soon.
@ Bear : You're the best man ! it worked. Awesome !

If you don't mind, would you please let me know why is it so ? why jsp didn't show up the correct format while the same code written in servlet, turned up perfect !

Would you please share your logic ?

thanks again
14 years ago
JSP
Hi all,

I am downloading a text file from unix box through SFTP using java. And I am dispaying that file using JSP.
In my jsp,

the whole functionality works fine. It does fetch the file from unix box and saves that file to my local windows, except in my file at the beginning I see,
and the at the end of the file also the same tags ending. I guess it must be the problem with charecter set encoding. But not sure. Any idea ?

thanks in advance.
14 years ago
JSP
Hi all,

I am beginner in HTML. I have one html form. Inside that I have one combo box that has 3 options. I want the functionality such that if I select one option, and then by clicking submit button, I want that option to be passed to one servlet where I can get the value of that option.

If you can provide me piece of code, that would be great.

Thanks