| Thread | Last Post | Replies |
|
| Equivalent to c# default credentials for Webservice | 19 Feb 2010 00:32 GMT | 3 |
I have a C# Soap Web Service installed on a machine. One told me, because of a new patch, when calling the WS I'd have to pass it default credentials, as the following C# code does:
> "myWs.Credentials = CredentialCache.DefaultNetworkCredentials" |
| JDK and Eclipse | 17 Feb 2010 16:06 GMT | 12 |
I am a newbie on Java but I have worked on MS technologies for a while. I wanted to know if I have Eclipse installed on my system, do I still need to have JDK installed to compile my Java programs?
|
| Applets, accessibility, zoom, CTRL+"+", CTRL+"-" in browsers | 17 Feb 2010 15:47 GMT | 3 |
In modern browsers, the shortcuts CTRL+"+" and CTRL+"-" zoom in/zoom out HTML pages. The applet area zoom in/zoom out as well, but the the disposition of GUI elements within the applet area don't (FLASH programs behave well: you zoom in, the area and its components zoom in
|
| Secure login with java | 16 Feb 2010 04:05 GMT | 6 |
I am trying to develop a standalone java program to login to a website and then process the html page content. The html login page of the website uses post method. Could anyone let me know how I should start and which packages I should use to accomplish this?
|
| signed applet frustration | 12 Feb 2010 04:07 GMT | 4 |
I have a signed applet (certificate bought from Thawte) that has print- related functions which would alert users for accessing the printers if it wasn't signed. Applet was working perfectly until I had to make some changes in the code. I complied the code, created the jar file,
|
| Putting binary char[] into BigInteger | 11 Feb 2010 14:56 GMT | 2 |
I'm making a simple checksum function (new to java). I need to put the binary value of a char[] into a BigInteger. For example, lets say achar[] = {0xFFAA, 0xAAFF}, I need to get abiginteger.intValue to = 0xFFAAAAFF. The obvious way would be to add one char and multiply by 0x1000 ...
|
| Design question: "threaded view" in table component | 11 Feb 2010 13:35 GMT | 7 |
For a personal hobby project, I'm writing a usenet client. One of the "obstacles" I'm facing is the question of how to design the table that displayes the articles headers, and more specifically how to design a functionality that allows to display "threads" of related
|
| Regular expression in Java | 11 Feb 2010 00:51 GMT | 15 |
I am trying to create a new profile management system, and I have some regular expression I used in PHP e.g. "<\/b> (.*?) aar" Where I get the String between and aar Is there any way I can do this in Java?
|
| Register Soon for Sun Tech Days 2010 Conference | 11 Feb 2010 00:03 GMT | 3 |
Attention Java developers! Do you want to excel in your field? Then Sun Tech Days 2010 conference is an opportunity for you to share your ideas, clear doubts, improve your skills and learn about new, innovative technologies. Industry experts would be there to provide
|
| Do you care about blind access to Linux? | 08 Feb 2010 16:13 GMT | 6 |
Posted with permission, .. Hi everyone, Recently Oracle has purchased Sun. One of the first things they did was to lay off the Gnome accessibility leader as well as the Orca
|
| Write two regular expression to one | 06 Feb 2010 19:55 GMT | 5 |
I do not know if this is the right place for this question, but I think so I want to write two regular expression which is: String st = str.replaceAll("\\n", "").replaceAll("\\r", "");
|
| using JButton and JRadioButton | 05 Feb 2010 22:39 GMT | 3 |
I want to know how to use both JButtons and JRadioButtons in the same program since they both access the same:
|
| HTTPUrlConnection does not download the whole page | 04 Feb 2010 20:43 GMT | 15 |
I have a problem with this code, as you can see in print, where it prints the error in the page's code: public void print(String link) { String page = this.getPage(link);
|
| Convert encodings | 03 Feb 2010 22:16 GMT | 3 |
I am downloading a webpage using the HttpURLConnection, where I get the InputStream, but are there are any ways I can convert the webpage's charset to the client's charset I am getting the webpage's charset by using this:
|
| Add *.jars to *.jars possible/recommendend? Eclipse setup for this? | 03 Feb 2010 16:20 GMT | 4 |
Assume I want to create a new program and to pack everything into a *.jar archive. To run the program one (or more) additonal external *.jar is required. Ok, the potential user could install the two *.jar files independently and add them to his CLASSPATH. This is somehow ...
|