1. Issues on Running JNLP on Java Swing coderanch.com |
2. Need To Create A JNLP file for a swing application coderanch.comHi All, I created an application in Java Swing, and created a jar file for the application. And then I signed the jar file using the using RSA-Signed Certificates as in the http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/rsa_signing.html Now I needed to create the jnlp file and after that I have to put that jnlp file in a web server as per the client suggestion. But ... |
3. Swing App and JWS coderanch.comHello I have a Swing App that uses lots of 3rd party jar like log4j, jdom, iText etc. Is it advisable to put effort on JWS for deploying my application because I read all jars have to be digitally signed, how can i sign a third party jar, is it not content infringement. Also I read that we can't use usual ... |
4. Connecting to Multiple webservices through one GUI coderanch.comHi, I have a small issue regarding webservice configuration.I am using Axis-1.2 version Actually our GUI is connecting to one webservice hosted in one pc.And doing the job correctly. Now we are saying to invoke multiple webservices hosted in different pcs from only one GUI. Please give me suggestions how to do this? With Regards, Rama Krishna.Y |
5. Attach web cam with application coderanch.com |
6. How do I consume Web Services in Swing coderanch.com@Ulf Dittmer I'm sorry I think I should rephrase the question. How do I construct a SOAP request for a web service using java. I have posted the WSDL generated using WTP. |
7. Stand alone to web coderanch.com |
8. Download Swing application from web coderanch.comHi All, I have a web application , in that if i click "Download Software" link from the screen, it should download swing application which is similar to software downloads. Feature suppose to implement are. 1. Need to download the swing application from web 2. Create shortcut for the downloaded swing application 3. It should show some popups if the latest ... |
9. Web application vs Swing application coderanch.comGood morning to all nice people of JavaRanch.. I need some advice from you. The question is simple, the answer I'm sure won't be so easy.... I've been working for a long time on a project which aims to develop a java-based ERP. This ERP let the user work with a LOT of data: some forms may have even an half ... |
10. web browser project coderanch.comya, i kow n now i got api of lobo.. bt as i'm running the program written below with netbeans,, it is not working..not showing anything at all import org.lobobrowser.gui.*; import org.lobobrowser.main.*; import javax.swing.*; public class LoboTestFrame extends JFrame { public static void main(String[] args) throws Exception { // This optional step initializes logging so only warnings are printed out. PlatformInit.getInstance().initLogging(false); ... |
11. simple web browser in java coderanch.comWell, you asked how to create an HTML parser; the javax.swing.text.html.HTMLEditorKit class can be used to do that (I'm assuming you've read its javadocs by now). How you plan to use that HTML parser is something you haven't told us. Should we take it that you still plan to build a Java browser? Since we've already established that a full browser ... |
12. Swing GUI Controlling items on internet explorer web page? coderanch.com |
13. Web App UI that doesnt use web browser coderanch.comI dont know where to put this question. But here it goes. Does anyone know the approach to make a web app whose UI doesnt use browser? (So those annoying HTML tags can be avoided and we can use the old good desktop UI API). If we need software, is there free ones (AIR is not free CMIIW). Thanks. |
14. Upload files from Swing Desktop Client to server coderanch.comHi, We are trying to development a swing based application where in we need to upload files to server. Basically these files are additions to a manuals library. Copies of this manual library are kept in two different LANs apart from the LAN local to server. As soon as the client uploads a manual, the request should go to the server, ... |
15. How to acces a web cam? coderanch.comHi, My question is as mentioned in the topic, How to access a web cam using JAVA? I have heard some saying we need to use "JAVA Media Library" but that's all I know, and even have no idea whether it is correct or not and if it is, what that media library is. Please help me, and direct me to ... |
16. Griffon and WebServices coderanch.com |
17. Looking for a Java web browser coderanch.com |
18. display web page coderanch.com |
19. Web Page java-forums.orgJava Code: ///////////////////////////////////////////////////////// // Bare Bones Browser Launch // ///////////////////////////////////////////////////////// import java.lang.reflect.Method; import javax.swing.JOptionPane; public class BareBonesBrowserLaunch { private static final String errMsg = "Error attempting to launch web browser"; public static void openURL(String url) { String osName = System.getProperty("os.name"); try { if (osName.startsWith("Mac OS")) { Class fileMgr = Class.forName("com.apple.eio.FileManager"); Method openURL = fileMgr.getDeclaredMethod("openURL", new Class[] {String.class}); openURL.invoke(null, new Object[] {url}); ... |
20. Automating Web application using Java API java-forums.orgHi guys, I am fairly new to web automation using Java. My requirement is to open a website and log on if it's already not logged on. If already logged on, log out and then try again. Finally verify that the user has successfully logged on. Could you guys help me by pointing me to the JAVA APIs I can use ... |
21. Peristence Web Service for Rich Client (Swing) applications ??? (CRUD operations) java-forums.orgHi All, I am rewriting my client-server rich client database application (Swing) to a three-tiered application with a Netbeans RCP rich-client. I don't want to write a custom web-service for each and every persistent class of my application so I thought there may be a generic persistence web-service for CRUD operations. Is there such a persistence service??? Here are my ideas/requirements: ... |
22. Java application issue in displaying web page. Please help java-forums.orgHello All, I am trying to display a web page in a java swing application using JEditorPane. and it works fine. Last day I tested this application in a machine connected to college network in Dublin and in that network the web page is not displaying. I can browse the web page using browser(IE,Mozilla etc) with out any problem. any one ... |
23. Start Swing GUI program by Java Web Start with IE in Eclipse debug mode java-forums.org |
24. Java to build a GUI for a web-director-cabin java-forums.orgI've 1 stereo mic linked to a mac 3 ip-cams linked to a modem I want to send the 3 videos directly in live-streaming at the same time (in synchr), from the modem to the web, and also to send the audio-stereo from the mac to the web (in synchro with the videos) I need to build a little free-app for ... |
25. Can Java desktop GUI also be seemlessly served on web? java-forums.orgHello experts, I would like to outsource a custom Java GUI development for the desktop, but would like to keep the option for offering it on web browser. Could you help me answer the follow two questions? 1. Could the same Java GUI be used for the desktop as well as the web browser (assuming a proper web server is installed ... |
26. Web GUI with Glassfish java.netAs it seems, using JSC2 is possible, I exported an application to a war file and deployed with Glassfish and things kinda work, but JSC2 does not support annotations, and this makes things very hard when EJBs cannot get injected into JSC files... it is actually possible to use annotations with JSC2 and compile everything via ANT, but this is very ... |
27. Glassfish Web-Gui (Sources/Project-files) java.net |
28. Swing, java web designs. question! java.net |
29. Where are the installed web services on gfv3 GUI? java.net |
30. discrepancy between asadmin and web-admin gui in Glassfish v3. java.netHong Zhang wrote: > Yes, we should have consistent behaviors for these two. > Looking at the code, the JPASniffer does not declare itself to be > visible to the user, so the asadmin list-applications seem to have the > expected behavior. We need to figure out how the gui displays the > information and make the two of them consistent. ... |
31. Cannot change the look and feel of a web content liferay.comHello, I am trying to remove the borders of a portlet using the look and feel user interface. But it doesn't work, I keep on getting the "Portlet unavailable..." message. Sometimes it works,sometimes it does not. Version I am using : 6.0.1 on mysql and glassfish. Liferay has an incredibly poor user experience, it really makes me feel sick! Sorry, I ... |
32. Change look and feel of Web Content List liferay.comHi, I would like to ask is that possible to change the look and feel of web content list.. I would like to change the colour of title row as well as those content row. I have try to change in \html\portlet\journal_articles\view.jsp. However, i found out that those colour of row wasn't in view.jsp. I would like to know is there ... |
33. Web Form Portlet - Look and feel liferay.comHi I am trying to customize the look and feel of some web form portlets. I already found the option of the advanced styling, but I don't know exactly how to adopt the design. My question now is how and where can I customize the look and feel of the web form portlets - the shortest and easiest way ;-) ?? ... |
34. Swing to Web forums.oracle.com |
35. How to send web request using Swing with POST method? forums.oracle.com |
36. Front End (GUI) for Java Web Based Appl. forums.oracle.com |
37. where is swing forum,can you give me the web address,thanks. forums.oracle.com |
38. Web Browser using GUI forums.oracle.com |
39. Making a Swings Application as Web based forums.oracle.comWith JApplet, JApplet will be executed on the Client machine in the web-browser when the client points to it. This means that Client need not be installed on the client machines. A controller-servlet needs to be made such that it can re-direct the requests to the appropriate business objects. Applet-Servlet communication shall happen using ObjectStreams. |
40. SWING and Web Service Client forums.oracle.comHi, I'm new in Web Services and Im trying to make just a Swing client for the HelloService in Glassfishv3. I've read some soap, WSDL and jax-ws documentation but I still didn't know how to do it. The Swing client is just a JTexfield and a Button to send the name to the helloservice, and in the actionListener method I wrote ... |
41. Swing Component to load a web page forums.oracle.com |
42. Application with both Web Service and GUI forums.oracle.comHi, I am developing an application with a user interface. The thing is that there is a method that can be called through a Web Service. It seems that I can only run the application either as a client (with the interface) or as a Web Service, but I want the application to run as a whole with both things available, ... |
43. web browser for swing forums.oracle.com |
44. [Help]-The needed web application is a gui forums.oracle.comHello all, I'm new in working with jsp and establishing web applications. I have a java GUI interface and I need to establish this interface as a web service using netbeans compiler and jsp language. All what I found as a tutorial is to establish a web service using an html index file which I don't need in my project. Please, ... |
45. Dynamically build web GUI interface forums.oracle.comHi, I am planning to build web GUI interface. Instead of desiginning statically, I want to store GUI meta data in a xml file and build web GUI from the meta data. I would like to know if there any java tools available already to build web GUI from meta data. THanks RR |
46. connecting a Swing app to a web app forums.oracle.comRead: http://java.sun.com/docs/books/tutorial/networking/TOC.html Basically, it goes like this: you have a web app. So there are URLs that point to your web app, right? Create a java.net.URL object that points to the web app. From there, you can just grab content, or you can create java.net.HttpURLConnection objects for more fine-grained control. You'll need that fine-grained control to do things like manage cookies, ... |
47. Generate GUI for web based application forums.oracle.comCurrently we have a requirement wherein we are suppose to generate the GUI of the web based application. User will add / modify XML file, which will be parsed by our application at build time to generate the UI related classes. The application has to be on java platform. However currently we are open for choosing the view technology. It can ... |
48. Swing on tomcat Web Server forums.oracle.com |
49. GUI Builder for Java-based Web Applications forums.oracle.comI am currently trying to review possible GUI Builder tools for Java-based web development. A GUI Builder that would work for web pages with JSP code, and/or web pages using JSF. Does anyone have any suggestions? I am not interested in GUI Builders for Swing or SWT (which is what most of my searching keeps turning up). Personally, I don't like ... |