sun

Is there equivalences between Microsoft and Oracle/Sun technologies?

Hello is it possible to say what are the Microsoft equivalents technologies compared to Sun? For example: Microsoft | Oracle/Sun --------------------------------------------------------------- Visual Studio | JDeveloper,NetBeans //thanks justin,danswain IIS ...

MyFaces vs. Sun's Reference Implementation - latter not free?

Hi all Just a stupid beginner's question, which will be quickly solved, but I am curious. http://www.irian.at/myfacesexamples/home.jsf says: "MyFaces - The free JavaServerâ„¢ Faces Implementation" Errr ... is Sun's implementation not free, then? Thanks & Cheers Er ...

macro to copy data from various workbooks to one single sheet

I have a worksheet which is same for 9 offices named STAT 1, STAT 2 etc. when i get all these filled up worksheets i want to place them in one folder with a blank file named "Template". In the template sheet i want a macro that will open the STAT1 , STAT 2 etc copy all the rows into the "template" worksheet. however columns H to J col U...

Sun Directory Server error replicating between 6.3.1 and 5.2

Hi, I am trying to replicate data from server A (Sun DS 6.3.1) to server B (Sun DS 5.2). On server A, using DSCC I had specified the connection to be Authentication by DN and had entered the correct DN (cn=replication manager, cn=replication, cn=config) and password. I had verified this through using command line to run the replication ...

Why did Sun develop the Java platform?

Why did Sun (now owned by Oracle, I know) develop the Java Plaform? How does it make business sense? It seems to me like it would be a very expensive project (also, any ideas on how much they spent/are spending to develop/maintain the platform?). Are they making money by selling support or something? ...

how to use asadmin deploy for Sun Application Server Plaform Edition 9.1?

I try to use the command so that i can schedule the deployment using cron trigger. But however i been encountering this error. java.io.IOException: Remote host closed connection during handshake What could be the reason and how do i resolve it? Is it something to do with the port i define? I defined the port used in the admin-server...

Java Virtual Machines (JVM) and their performance comparison...

I was wondering if there somebody knows if there are some benchmarks which compare the following jvms. sun jvm vs. openjdk jvm vs. rockit jvm vs. j9 jvm vs. apache harmony. Which one is has the best performance? ...

ThreadLocal pondering (Or: Is sun's javadoc wrong?)

I've been reading about ThreadLocal, trying to understand how it works and why we need it. So far what I've been able to learn is the following: ThreadLocal class allows to hold 1 instance of an object at the thread level The instance is created by overriding initialValue() The instance is actually stored in the each thread's HashMap ...

Export SSL Certificate

Does the Admin Interface in Sun Web Server 7 support exporting SSL certificates? If so, how? Please provide a reference..... If not, could someone point me to the location where the certs are stored? ...

Where is Java EE 6 SDK for Windows 7 x64?

Sun's website is confusing. I am looking for Java 1.6 Enterprise Edition SDK for WINDOWS 7 64-bit. I found the 64-bit Standard Edition, and the 32-bit Enterprise edition. Can anyone help? Thanks ...

Pmi Client is not created while using with sun java instead of IBM java

Hi!! My task to monitor the IBM Websphere through pmi client.Pmi client is an agent provided by the IBM to get MBeans and is running under IBM Java. I tried it to run under Sun java. But, it fails to create the Pmiclient. Did Anyone come across this issue? ...

Is Oracle's site slower than Sun's?

Thanks to the ubiquitous fast Internet, I've gotten in the habit of using Google to search for Java API docs, rather than digging through the online the API docs or the copy I have stored locally for speed. Looking for a class like Pattern (was that in java.util or java.text? If I knew, I wouldn't have to go searching for it!), I just Go...

Are there any major shortcomings to using Sun's JSP template solution?

This is 10 years old, but still appears to be one of the most widely accepted JSP template solutions. Is this still a viable approach for basic templates? http://java.sun.com/developer/technicalArticles/javaserverpages/jsp_templates/ I've heard some developers discuss Tiles, but from what I can tell the biggest benefit of tiles is that...

Sun Java jstat does not work .. sometimes !

I frequently use jstat to obtain GC related statistics. However, there are times when I simply cannot obtain any of the statistics from a JVM. It just says that it cannot find the process id, even though its the correct id. Digging slightly deeper, it seems to be related to the "/tmp/hsperfdata" related files. On servers that have this ...

Sun One web server CSS problem with Mozilla

Hi all, I have a css problem with Firefox. The css files on my website don't work on Firefox but it works fine on IE. I am using Sun One web server and the mime.types file is already configured for css and the virtual server's obj.conf file has ObjectType fn="type-by-extension" in the default Object. Anyone here know what could be ca...

What is the latest version of Sun One Web Server?

I could not find the version number anywhere in the sun's website. Anyone help me to find the latest version number. ...

Sun Java HTTPServer has a bug, how to fix it?

I'm using com.sun.net.httpserver.HttpServer in my project. However, it seems that the server leaks connections when it gets invalid data from the HTTP connection. The bug is this one: http://bugs.sun.com/view_bug.do;jsessionid=dfe841c3152d878571573bafceb8?bug_id=6946825 Now, this is reported to be fixed in version "7(b94)" - however, w...

Has Oracle removed Sun net.ftp classes?

I have an older project that uses the sun.net.ftp.FtpClient class to download a file from an ftp server. It appears that Oracle has finally removed this unsupported/deprecated feature from Java. Any suggestions on what should be used to replace it? I was considering org.apache classes but I have never used them. The best solution would b...

sun vs eclipse autoboxing difference

I am trying to create a static entry to a bunch of non-static util methods and getting this error with the sun compiler that I am not getting in eclipse: "type parameters of X cannot be determined; no unique maximal instance exists for type variable X with upper bounds X,java.lang.Object" public class Resource { protected <X> X from...

Android Client connecting to the Server over SSL

I am trying to create an SSL connection from android client to the server over SSL. In the very beginning I was always getting javax.net.ssl.SSLHandshakeException: no cipher suites in common on the server when connection was attempted. After some investigation I realized that Android uses Bouncy Castle SSL implementation and the cip...