Questions tagged [sun]

Sun Microsystems is a computer company, bought by Oracle in January 2010. It is most famous for its line of computers based on its own SPARC processors, the Solaris operating system and the invention of the Java platform.

Sun Microsystems, Inc. was a company that sold computers, computer components, computer software, and information technology services and that created the programming language, and the Network File System (NFS). Sun significantly evolved several key computing technologies, among them Unix, RISC Processors, Thin Client Computing, and virtualized computing. Sun was founded on February 24, 1982. At its height, Sun headquarters were in Santa Clara, California (part of Silicon Valley), on the former west campus of the Agnews Developmental Center.

More info:

http://en.wikipedia.org/wiki/Sun_Microsystems

http://www.oracle.com/us/sun/index.htm

240 questions
0
votes
1 answer

Problem with deploying bookstore1 tutorial application on netbeans

When I deploy bookstore1 application from Java EE 5 tutorial onnetbeans 6.7 rc1 and glassfish 2.1 I get this error: Deploying application in domain failed; Error loading deployment descriptors for module [bookstore1] -- UnsupportedClassVersionError:…
Piotr Kaleta
0
votes
2 answers

How to migrate SUN jvm to IBM jvm

I am having a situation where I am developing my code using SUN JDK 1.5 but when deploy into IBM WebSphere 6.1, I hit this error: 00000018 Digester E org.apache.commons.digester.Digester endElement End event threw exception…
huahsin68
  • 6,819
  • 20
  • 79
  • 113
0
votes
1 answer

Android http basic authentication

I have a problem with the Android http url connection. I have this method: private String getHtml(String urlString) throws Exception { StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); URL url = new…
user1066441
  • 1
  • 1
  • 2
0
votes
1 answer

Modbus Error: [Input/Output] Modbus Error: [Invalid Message] No response received, expected at least 8 bytes (0 received) pymodbus TCP python Huawei

I have a Huawer SUN 2000 inverter with a dongle and a raspberry Pi 4B. I am trying to read data via modbus TCP with the pymodbus library but I get the following error: Modbus Error: [Input/Output] Modbus Error: [Invalid Message] No response…
0
votes
1 answer

Cannot Import sun.net.*

I'm trying to compile a java code from Java 1.8 to Java 18 but I'm getting the error the type sun.net is not accessible I've read some stuff online that sun.* cannot be used anymore. Is this related to this problem? If not are there any workarounds…
0
votes
2 answers

IDE choices for Sun One Webserver 6.1

Currently I am using Sun Java Studio Creator 2 Update 1. I would like to know what are the other choices. Creator2U1 is quite OK except the "Theme" feature. I tried to remove the theme and I could not remove it. The reason why I want to remove theme…
Jacob
  • 435
  • 1
  • 6
  • 12
0
votes
1 answer

From Static to dynamic linking on Solaris 10

Apparently Solaris 10 does not support static linking anymore. Therefore, I am wondering if anyone can assist me rewriting the makefile so that it supports dynamic linking. Essentially, the following linker command gives me an error message that…
Mike
  • 71
  • 1
  • 3
0
votes
3 answers

Java Enterprise Server Vs Glassfish

I'm sorry, if my questions looks naive. recently during a technical discussion, one of our architect referred about using Java Enterprise Server in his organization. He said, we're using it since 3-4 years. As far as Application servers from Sun…
Vicky
  • 5,380
  • 18
  • 60
  • 83
0
votes
2 answers

The Java Petstore 2.0 Blueprint

I am currently trying to find the jave ee 5 blueprint of the pet store 2.0. The pages which have been linked by sun aren't valid anymore. I also tried to find the pages at oracle. http://java.sun.com/blueprints/code/ Does anyone know where i can…
ich-bin-drin
  • 543
  • 3
  • 12
  • 23
0
votes
1 answer

Application in Sun app server hangs after processing a few messages

Appliation server Sun appserver 8.1 JVM - java 1.5.0.11 We have a JMS receiver processing messages deployed in Sun application Server 9.x After processing about 50 odd messages the appserver hangs. Upon restart the 50 odd messages gets processed and…
Chiths
  • 1
0
votes
3 answers

Bug in Java when printing factorial recursive method? Output printed before 'printing command'

I am currently learning java and at point of learning recursive. I tried these two identical methods but one of them in my opinion is acting strange. Is it a bug in Java? Or is it just me who can't get the logic. Does anyone can give explanation…
falah
  • 1
  • 3
0
votes
1 answer

Installing Anaconda or Python on Sun Solaris 11.4 with Sparc architecture

I am trying to install Python or anaconda on Sun solaris 11.4 system with Sparc architecture. Somebody has idea on the python or anaconda installer compatible to same
digvijay
  • 71
  • 4
0
votes
1 answer

com sun tools jar not found even if it exists in openjdk 11 lib folder

In my openjdk 11 lib folder i have placed tools.jar C:\Program Files\AdoptOpenJDK\jdk-11.0.6.10-hotspot\lib\tools.jar. But while building project with mvn install command i get the following error Could not find artifact com.sun:tools:jar:1.8 at…
mahfuj asif
  • 1,691
  • 1
  • 11
  • 32
0
votes
1 answer

Where does the tmpname function write temporary files in a Sun Solaris environment?

I am in a Unix environment (Sun Ultra 5 with gcc v.2.95.3) and I am trying to understand where my compiler writes temporary files using the tmpnam function. I am aware that this works is deprecated but mine was only curiosity. I acted like this: I…
Roberto Rocco
  • 450
  • 2
  • 11
0
votes
0 answers

is there a replacement for Sun's package in android studio

I made an android project that imports into the sun package. the sun package that I use is sun.security.jca.GetInstance. I know if this sun package cannot be used, is there a substitute for this package? I currently use JDK 9 and have changed to JDK…