Jsp « Development « Java Swing Q&A





1. Is it possible to display Swing components in a JSP?    stackoverflow.com

I was wondering if I could pop up JOptionPanes or other Swing components from within a browser using JSP.

2. How to make a nice jsp GUI without using HTML tags?    stackoverflow.com

I'm new to servlets and JSP and I'm trying to discover forms, and how to make my own web form. I know HTML but and I see examples for using HTML ...

3. how to send a message from jsp/servlet/swing?    stackoverflow.com

thank you t give me answer of my past quetion. this question is for the swing/jsp/servlet. i want a code for send a message by smtp or other using swing / jsp ...

4. What are common Servlet-JSP GUI widgets?    stackoverflow.com

I'm just getting involved with Servlets, Tomcat, JSP etc and was wondering what people typically use for GUI's in their JSP pages (for client-side interactivity). I've used jQuery, YUI, extJS, etc. ...

5. GUI for Editing XML?    stackoverflow.com

i need to create GUI for editing xml document showing the XML in tree view and displaying the need node name and value in a text box for editing. Please let ...

6. Code generation between JSP <-> Swing    stackoverflow.com

Is there any tool that can convert already programmed Swing J2SE into JSP J2EE shell?. Thanks!

7. Any tool to change JSP web page look and feel uses JSP filters    stackoverflow.com

I am running my website in Apache and Tomcat server. I want to change (or maintain) same look and feel across all the web pages. However I dont want to change ...

8. Java - what is the best framework for developing web gui with eclipse(app is java and jsp)?    stackoverflow.com

I would like to develop a facebook application with Java and JSP and I'm looking for a good web GUI framework. Thanks.

9. can i use java code as it is in a jsp file?    stackoverflow.com

Please forgive me if my question sounds too dumb :(... I have created a java desktop application, which has a single UI screen in Swing... The application creates a pdf report... ...





10. GUI application Building for Remote Installing and Managing Software with modifying configuration files    stackoverflow.com

I'm having one Unix application which performs some network monitoring and sniffing operation. For that application i've used many user defined environment variables in configuration file say SYSTEM_IP=10.xx.xx.xx, TX_PORT=5555, RX_PORT=6666, ...

11. How to implement dynamic GUI in JSP    stackoverflow.com

i have a requirement where i need to display some fields on the JSP. These fields are dynamic in nature, meaning, for ex:, if i changed some value in the dropdown, ...

12. Exception: java.awt.HeadlessException in jsp    stackoverflow.com

I am basically drawing a 3d chart in swings.Its working fine as standalone java application. I integrated it with jsp,but it is throwing headless exception.I am using jetty webserver. here is the stack ...

13. How to forward to or run a Java Swing application from JSP?    bytes.com

Oralloy re: How to forward to or run a Java Swing application from JSP? Akino, I think you can do what you want by creating a trival JSP page, then invoking ...

14. how to call swing application from jsp    coderanch.com

16. jsp and swing    coderanch.com





17. display GUI in JSP generated web page    coderanch.com

18. swing    coderanch.com

I won't say NO straight away, because I have little experience in swing. However, I would argue like this ... 1. Swing components are GUI building components. 2. JSP does not have a gui. ( It outputs some data in a Stream which is rendered by some other client program {browser} to be translated into a gui ) 3. Following this ...

19. creating dynamic gui's    coderanch.com

20. JSP and AWT / Swing    coderanch.com

22. swing components    coderanch.com

Are you familiar with the Model View Controller (MVC) pattern? The main idea is to keep presentation and data separate. If you use the MVC pattern in your Swing app you may find that you can reuse the non-display elements in a JSP unchanged. You will have to completely reimplement the presentation logic. As Bear says, there are quite a few ...

23. jsp/servlets vs swings    coderanch.com

25. Free GUI development tool for web    coderanch.com

JBuilder does come in a free version but that one has no specific JSP editor. I think it does have a limited HTML editor though which you can use to some effect to edit JSPs. The developer version of JBuilder has a great JSP editor though, if you use it professionally you'll quickly earn back the purchase price in increased productivity. ...

26. about swings    coderanch.com

27. can we use Swing Component in JSP page    coderanch.com

28. Swing Components in TLD    coderanch.com

Thanks a lot U all. I think The Applet solution won't be feasible enough, though it may work for now and using javascript is something which , i would prefer as the last option, should be avoided as it makes the jsp very clumsy. any ways, let me check and come back if the applet works this way . Thanks.

29. Working on Swing.. :confused:    coderanch.com

30. JSP or Swings    coderanch.com

ok sorry for that but actually i am trying to build a application which will work on LAN and their will be one administrator and various clients. clients have to submit some reports and administrator will analyse that. i am a student and want to make this application in jsp but my teacher have some basic knowledge of java. so he ...

31. Graphs in gui in JSP    coderanch.com

i don't know where to put this query of mine but since i am working on JSP for my project ...so i am putting it here. Te project needs the graphical depiction of the transactions of reports which may be a> flower type versus day b> flower type versus week c> flower type versus month d> earning versus day e> earning ...

32. Advantages or disvantages JSP vs Swing    coderanch.com

33. using swing functions in jsp    coderanch.com

34. What are best practices to implement 'Branding' (different LAF) in web application?    coderanch.com

I am doing a research and I neeed advice from people who have more experience in dynamic customizing of java web applications. In my custom case I have a simple login page with some images, labels and so on. The idea is to implement it in such a way to allow easy customization of some parts from the page. For example ...

35. Reg: Call Swing program through JSP    coderanch.com

36. GUI    coderanch.com

37. using jsp to allow a customizable look and feel GUI    coderanch.com

Hi, i am new here...nice to meet you guys~ i have a problem for my Enterprise assignment. It requires me to develop a jsp portal-like application (not using portlets), thus there is a function which needs me to allow users to customize their home page (look and feel, e.g. the text style, background colour, etc.)...therefore, i need recommendations in which i ...

38. JSP and Swing    coderanch.com

JSP is for dynamically generating Web Content (HTML). JSP requires an HTTP Browser to function. As far as I know there is no good solution for combining JSP with SWING. It's really apples and oranges. If your application has dynamic content I would recommend looking into XML, JDO, and the Properties API. Could you give us a better explination as to ...

40. Swing in JSP    coderanch.com

41. how to change my client side from JSP to Swing bra    coderanch.com

How does the front-end work? How does the JSP actually handle the chat? Do you use an Applet in some way? Is your front-end HTML simply making POST requests to the server when someone enters a chat (which, together with the session, identifies the user in some way)? Does your servlet, on receiving some message, broadcast it to all clients (and ...

43. Calling a JSP application from Swing application    coderanch.com

try { // -- Send/Recieve data to servlet/jsp... url = new URL( webAddress ); urlConnection = url.openConnection( ); urlConnection.setDoInput( true ); urlConnection.setDoOutput( true ); urlConnection.setUseCaches( false ); urlConnection.setRequestProperty( "Content-Type", "application/octet" ); outStream = new ObjectOutputStream( urlConnection.getOutputStream( ) ); // -- Send object to servlet/JSP outStream.writeObject( serviceRequest ); outStream.flush( ); // -- Get result object inStream = new ObjectInputStream( urlConnection.getInputStream( ) ); ...

44. Swings vs Jsps???    coderanch.com

The users where I work don't like the jsp/struts interface. They don't like waiting for another page to load to be able to add a record, they want to be able to add it to a blank line at the bottom of the table, etc. They much prefer the GUI interface of Swing.

45. Displaying Swing Components on JSP page    coderanch.com

Hi Earnest Thanks for responding, I feel i wasnt able to explain my problem precisely. What we need to do is at our end we have both the applications, that is the struts framework and the desktop application in swings, now what we need to do is to use a specific part of the desktop application and plug it into our ...

46. reengineer Swing to JSP    coderanch.com

47. Calling a JSP using Swing    coderanch.com

The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become. Your integrity is your destiny - it is the light that guides your way. - ...

48. send data to jsp from swings    coderanch.com

49. How to refres a jsp with the help of Swing    coderanch.com

Right and after calling the swing application from the jws I have perfrom certain action on the swing actually process on the ms-word file. And then after that click on the finish button to return on the same jsp page. But now I have some value in the session which I want to show on my jsp page on the click ...

50. JSP and Swing    coderanch.com

Guess thats unsafe.But how can I do this. Can I create a jar file and use JNLP,Webstart to start the swing application from my JSP. What I currently did is like, I set my parameters in my action class,and forwards to a jsp page.This jsp page then calls a Swing class and the windows get initiated. Now I came to understand ...

52. JSP and Swing    coderanch.com

53. How to process JSP from Swing application    coderanch.com

We currently have a web application (version control) through which users upload and download the files from server. Since it is a web application we are not able to make few restrictions at the client level. Hence we are planning to create a stand alone swing application which will act as an agent between the users and the web app. Instead ...

55. JSP + ZK integration , NO GUI stuff :-(    zkoss.org

Orignial message at: https://sourceforge.net/forum/message.php?msg_id=3848041 By: uday31in I updated my web.xml as described in a tutorial. My JSP is : -- START OF JSP ---- <% String msg = "Hello, World!"; %> --- END ...

56. No GUI stuff for jsp + zk    zkoss.org

Orignial message at: https://sourceforge.net/forum/message.php?msg_id=4238104 By: stonegu I wrote my web.xml & jsp as described in a tutorial, but it seems not work for me :( ----- system ----- WinXP, tomcat 5.5, zk 2.2.1 ----- begin web.xml ----- ">http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> zkdemo Used to cleanup when a session is destroyed ZK ...

57. is it possible to use Swing in JSP ?    forums.oracle.com

58. how to call a swing file to jsp    forums.oracle.com

59. JSP/Servlet GUI Interface    forums.oracle.com

No one is going to do it for you. And I don't think you want to be spoonfeed either. There are plenty of examples all over the web. But I think you will find you will have a lot more help if you ask specific questions. Also, start with something small, and make sure you search the forum before you ask. ...

60. Swings in jsp..    forums.oracle.com

As far as the server side code (e.g., JSP) is concerned, an applet is just another static resource, like a GIF. Just add the applet embed code to your JSP. You don't need a scriptlet to do it, if that's what you're asking. I think there's a taglib tag to make it easier. Check your docs.

61. swing in JSP    forums.oracle.com

Code in a JSP page runs ON THE SERVER, so any GUI you try to display would appear there - but will almost certainly be blocked by the servlet container anyway. If you want a GUI to display from a browser write an applet. If you want a full blown Swing app, it will have to communicate with the server via ...

62. How can I use java swing class in JSP page design    forums.oracle.com

So, you want to use layout managers within your JSPs? The immediate answer is that "it isn't a good idea". The more considered answer is "tell us what you're up to". Are you coding all presentation within a traditional JSP? That is, HTML, customer or library tags and/java scriptlets? Or are you building your HTML within your servlets and sending that ...

63. SWING/JSP application    forums.oracle.com

I'm afraid this is pretty incomprehensible. Nobody has a "swing tier" and a "jsp tier", Swing and JSP are two completely different technologies both of which present data to the user. You don't "run" a JSP. Critically Swing executes a GUI on the computer that is running the Swing program, whereas anything done by a JSP happens on the server machine. ...