Skip to Main Content

Java SE (Java Platform, Standard Edition)

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.

Problem in Java3D executing.

843799Apr 11 2007 — edited Apr 12 2007
I am new to java3D. i got a sample program which has the following code :
package org.kraysis.Java3D;

import com.sun.j3d.utils.geometry.ColorCube;
import com.sun.j3d.utils.universe.SimpleUniverse;
import javax.media.j3d.BranchGroup;

public class HelloJava3D{

	public HelloJava3D(){
		SimpleUniverse universe = new SimpleUniverse();
		BranchGroup group = new BranchGroup();
		group.addChild(new ColorCube(0.3));
		universe.getViewingPlatform().setNominalViewingTransform();
		universe.addBranchGraph(group);
	}

	public static void main( String[] args ) {
		new HelloJava3D();
	}
	
}	
I am runing on PIII 1.0 GHz machine. I am using intel 810 Graphics Adapter. And i am getting the following error.

javax.media.j3d.IllegalRenderingStateException: GL_VERSION
at javax.media.j3d.NativePipeline.createNewContext(Native Method)
at javax.media.j3d.NativePipeline.createNewContext(NativePipeline.java:2681)
at javax.media.j3d.Canvas3D.createNewContext(Canvas3D.java:4823)
at javax.media.j3d.Canvas3D.createNewContext(Canvas3D.java:2372)
at javax.media.j3d.Renderer.doWork(Renderer.java:876)
at javax.media.j3d.J3dThread.run(J3dThread.java:256)

DefaultRenderingErrorListener.errorOccurred:
CONTEXT_CREATION_ERROR: Renderer: Error creating Canvas3D graphics context
graphicsDevice = Win32GraphicsDevice[screen=0]
canvas = javax.media.j3d.Canvas3D[canvas0,0,0,248x222]
Java 3D ERROR : wglGetExtensionsStringARB not support !
- The specified procedure could not be found.


Fallback to use standard ChoosePixelFormat.
Java 3D ERROR : OpenGL 1.2 or better is required (GL_VERSION=1.1)

Do any one have a clue how to resolve it.

Comments

Dude!
Answer

You need to contact Oracle sales and can review licensing information available on the web. No one here can or will give you any official licensing advice.

Marked as Answer by user1441180 · Sep 27 2020
BPeaslandDBA

I would also be wary of the Nutanix claims about running Oracle on their hyperconverged solution. I had a Nutanix salesman repeatedly tell me things I know are false as far as Oracle licensing is concerned. The salesman did also mention some things which could be true but I thought was in a grey area. In the end, my company decided not to buy their solution, but not for Oracle licensing reasons. So I never looked into licensing Oracle on Nutanix in any more depth after that.

I also remember the early days of VMWare and that company's literature on Oracle licensing for their products. VMWare's claims on how to reduce licensing costs using their products were later debunked by Oracle Corp. My point of this is just because the vendor makes claims about how Oracle licensing will work on their product doesn't mean its fact. Oracle Corp is the only one that can determine licensing specifics, not some third-party vendor. And Oracle is already on record that saying any form of soft partitioning is not used as a means to limit the number of licenses needed.

You're doing the right thing about questioning Oracle licensing on Nutanix. I don't trust Nutanix nor VMWare to be the definitive answer on licensing for some product they have no control over. Trust the products vendor, Oracle. After all, Oracle is the one that will audit you. I'm not saying licensing on Nutanix is a bad nor a good thing. I truthfully do not know. But before I would commit to running Oracle on Nutanix, I'd get the answers from Oracle and no one else..and I'd get it in writing.

If your reseller is unhelpful, then might I suggest its time to find another reseller? There are lots out there. You can also contact Oracle Sales directly and not go through a reseller.

I also found this link which may be of interest to you: http://www.redwoodcompliance.com/oracle-licensing-in-nutanix/


Cheers,

Brian

user1441180

Hi,

Thanks for both responses. We are not looking for official advice, we would just like to find any relevant documentation.

Will contact Oracle sales.

Thanks,

William

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on May 10 2007
Added on Apr 11 2007
1 comment
693 views