Skip to Main Content

Java APIs

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

java.net.SocketException: Software caused connection abort: socket write er

843790Dec 20 2006 — edited Dec 22 2006
Hi. I am writing a multiplayer chekers game. But i have a problem with networking. I got this error:java.net.SocketException: Software caused connection abort: socket write error
	try {
			s = new Socket(this.getCodeBase().getHost(), DEFAULT_PORT);
			in = new DataInputStream(s.getInputStream());
			out = new DataOutputStream(s.getOutputStream());
                        listener = new StreamListener(in, button_array);

			// Let the user know we are ready
			this.showStatus("Connected to "
					+ s.getInetAddress().getHostName()
					+ ":" + s.getPort());
		}
		catch (IOException e) { this.showStatus(e.toString()); }
and the other part of the code is...
try{
                        out.writeInt(c);
                        d=in.readInt();
                        System.out.println("-----"+d);
                    }
                    catch (IOException e2) {System.out.println(e2.toString()); };
Where am i wrong??

Comments

Dude!
Probably not VMware but free Oracle Virtualbox, which does the same.

Quick Start Guide for the VirtualBox Template for Oracle VM Manager

http://www.oracle.com/technetwork/server-storage/vm/template-1482544.html
922188
Yes, it works wery well on VMware ESXi
Dude!
Like its predecessor ESX, ESXi is a "bare-metal" hypervisor.

According to http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&externalId=2003936

+"The Unbreakable Enterprise kernel is not supported on any version of ESX/ESXi host. "+ The requirements for the latest version of Oracle OVM are Oracle Linux 5 Update 5 64-bit or later. As of 5.6, the UEK kernel is default.
Avi Miller-Oracle
Dude wrote:
+"The Unbreakable Enterprise kernel is not supported on any version of ESX/ESXi host. "+ The requirements for the latest version of Oracle OVM are Oracle Linux 5 Update 5 64-bit or later. As of 5.6, the UEK kernel is default.
Oracle VM Manager doesn't require the UEK. You can boot back into the Red Hat compatible kernel and still run Oracle VM Manager, under VMware ESXi.
user12892082
We have oracle vm manager running as a guest on vmware ESXi. Imported Templates etc all is well, except when trying to launch the Oracle Virtual Machines Console, Get a VNC error. tightvnc is installed were you able to open the virtual machines consoles?
Kirill.Boyko
We are running VM manager 3.0.3 on OEL 5.8 on top of ESXi. Together with yum/nfs virtual server on OEL 6.2 with UEK and btrfs on top of the same ESXi. Works like a charm for more than 3 months. Now planning to installl separate virtual machines on ESXi for EM 12c, because we have quite a
big pool of Oracle VMs to manage.
1 - 6
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 19 2007
Added on Dec 20 2006
4 comments
266 views