SWING, STUDIO CREATOR OR WHAT PLEASE

I am new to development and started on VB where they had a GUI that was easy for me to learn. I was worried when I switched to JAVA, although I enjoy it I was worried about the GUI, until I found Studio Creator. Can you use Studio Creator for programming where you use it with patterns and such in the development of software programs? It seems to be able to take the code (my cursory view of the manual).
I downloaded the manual and it seems just for web use, is there something similar in JAVA that I can use for software development that is as user friendly? Thank you for you help I know that this is a novice question but figured this might be the right forum.
Thank you in advance for your time and help.

Yes, Creator is designed for creating web applications.
For creating more types of applications, take a look at NetBeans:
http://www.netbeans.org
It has many nice features including the ability to visually design stand alone application forms:
http://www.netbeans.org/kb/55/quickstart-gui.html

Similar Messages

  • Studio Creator, Socket Connection to External Device

    I am porting an existing & successful project from Netbeans 3.6 into Studio Creator to take advantage of some of the tools in the IDE for this application. The project requires opening a socket connection from the Server PC to an external Device (PLC) that is a Client on a static IP & a dedicated fixed port.
    I am struggling to get past some security settings specific to AccessControlExceptions. Here is the code method being used to test:
    public String button1_action() {
    // Call methods to open connection, init streams, send command, and close connection.
    try {
    // Open Socket up and accept client connection
    ipSocketObject = new ServerSocket(port);
    bfSocket = ipSocketObject.accept();
    // Establish Streams
    is = new BufferedReader(new InputStreamReader(bfSocket.getInputStream()));
    os = new PrintWriter(bfSocket.getOutputStream(), true);
    System.out.println("Got to here...");
    // Clear the msCounter #13002
    os.println("r13002=0");
    pattern = "13002";
    do{ret=is.readLine();} while ((ret.indexOf(pattern)) ==-1);
    is.close();
    os.close();
    bfSocket.close();
    ipSocketObject.close();
    } catch (IOException e) {
    e.printStackTrace();
    return null;
    The Socket Connection is established, but the command string is not processed before Studio Creator generates a AccessControlException Fault. I have experiemented putting in a SocketPermission statement with out success.
    Is anyone aware of some sample code I might be able to review for opening socket connections to clients in a Studio Creator Application? Please excuse this request if too rudimentary- I am an Industrial Controls guy by trade... :)

    Sorry I know of no such application at this time, and unfortunately have not done socket work myself for many moons....
    What JDK was your previous application written under? I googled for AccessControlException and socket and seems that sometimes accounts for some issues... you can also search for that combination in the forum advanced search and might find something there.... one more long shot suggestion based upon your statement "the command string is not processed".... could it be that you need to flush the stream...?
    Sorry I don't have more to offer...
    v

  • Studio Creator and Swing applications

    Is there any plan that Studio Creator will have ICS BX like simple swing/GUI creation features for the client/server development?
    Client/server is not dead and lots of us out there are still looking for easy Java client/server develokpment tools. That will be so useful if you include those features so that like in BX or visual basic, we will be able to use Creator as a 4GL to rapidly develop client/server applications.
    I have purchased Creator hoping that one day it will be the only IDE that I will use for RAD of Java applications for client/server or intranet/internet.
    Currently I am using JDeveloper ADF Client for developing client/server apps.
    thank you.

    Thank you. I guess we need to wait until the Mako release will be available.
    I do understand that most IDE developers such as Sun, Oracle, Borland, etc. are focusing on Enterprises where administration is one of the biggest issues. But for small businesses and for some security reasons, there are still lots of demand for the client/server applications. Besides, in unix/linux environment (even on Microsoft platfoms with 3rd party products) it is possible and sometimes cheaper to have a network mounted client/server application running as effectively as a web based one, with a similar or less administration workload.
    When Oracle announced the end of support for Oracle Forms 6i for the client/server (by 2008), many Forms 6i users moved to MS Visual Basic, instead of moving to the Forms services (9i, 10g) which Oracle hoped for. Many found alternatives such as Oracle 's very own JDeveloper (ADF client) for their client/server applications or Open Source alternatives such as Python with PyGtk bindings, etc. What I am trying to say is that whoever says that client/server is dead and they are not programming for the client/server anymore, it is bull****.
    I hope the Creator development team remembers the client/server developers and improve the Creator accordingly. Otherwise, for guys like me who is developing database applications running especially against Oracle, there is no good reason to move from JDeveloper to Creator.
    You should also consider adding more Open Source database support in Creator. Postgresql support will be nice given that it is BSD licensed and you can even deliver it with Creator. Using only Creator to create rich GUI applications running against either Postgresql or Mysql will be great and may be only way to attract more developers to this IDE from JDeveloper or JBuilder or even Eclipse. Telling people, "oh this product (Creator) is for web only, if you need Swing then use Netbeans" does not make any sense if you want to sell this product to guys like me.
    Thanx for reading.

  • Problem installing  Sun studio creator Please help

    can come one please help me with this
    i am trying to install sun studio creator on ubunutu but i get an error message saying unable to complete the install
    the install logs shows the following error
    (27-Dec-2005 17:37:35), Setup.product.install, com.sun.installer.PostInstallCoreAction, msg1, Sun Java Studio Creator Error encountered while installing Sun Java Studio Creator. Please review the log file under this directory: /home/karl/Creator
    (27-Dec-2005 17:37:40), Setup.product.install, com.sun.installer.PostInstallWizardAction, err, Error setting pointbase port
    (27-Dec-2005 17:37:40), Setup.product.install, com.sun.installer.PostInstallWizardAction, err, Skipping PostInstall actions due to Application Server installation failure with exitcode: -500
    any help would be most appreciated
    karl

    http://forum.java.sun.com/thread.jspa?threadID=5308609

  • IDE STUDIO CREATOR OR SWING

    I am new to development and started on VB where they had a GUI that was easy for me to learn. I was worried when I switched to JAVA, although I enjoy it I was worried about the GUI, until I found Studio Creator. Can you use Studio Creator for programming where you use it with patterns and such in the development of software programs? It seems to be able to take the code (my cursory view of the manual).
    I downloaded the manual and it seems just for web use, is there something similar in JAVA that I can use for software development that is as user friendly? Thank you for you help I know that this is a novice question but figured this might be the right forum.
    Thank you in advance for your time and help.

    It is not Studio Creator or Swing.
    Studio Creator is an IDE. And IDE is a nice tool to can speed up and improve the development of code. However, if it is generating code (especially GUI code), and you don't know how to do it by hand, then I would recommend you learn Swing by hand first before you use and IDE to generate it for you. It will save you headaches in the future. Here is a good Swing tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/index.html

  • Basic question - what is Java Studio Creator?

    What is the difference between Java Studio Enterprise and Java Studio Creator? I've been using JSE but have never used Java Studio Creator.
    Looking at the info about it, it appears to be another IDE to create Java applications, but I'm wondering what exactly is the difference between the two. Why would someone use one over the other?

    - If you are learning java, you may want to check out:
    http://java.sun.com/new2java/index.jsp
    New to Java Programming Center
    Making Sense Out of Java Technology
    Tutorials, articles, and other learning tools for new developers.
    - As for the IDE, Java Studio Enterprise is based on an older version of NetBeans.
    You should check out the latest version of NetBeans, 6.0:
    http://www.netbeans.org/
    Documentation: http://www.netbeans.org/kb/index.html
    Community: http://www.netbeans.org/community/index.html
    Register to Join the NetBeans Community
    Once registered you have the opportunity to submit bugs and feature requests in IssueZilla, submit news for the NetBeans Community, and contribute code or even create a project of your own. Welcome to the team!
    You can also joint the mailing lists (http://www.netbeans.org/community/lists/top.html), especially [email protected] , to discuss issues and get community help on NetBeans related questions.

  • Opening .pdf stored in oracle in studio creator

    I used iText libraies to open stored (as Blob or Clob type data) .pdf in oracle 10g release 2 database in studio creator.
    I'm using thin client driver...in oracle
    All things (uploading and retrieving ) works fine with the built in database..(point base)
    But when it comes to connect with oracle and for both retreieving and uploading the stored pdf,it is not working....
    Please help me regarding this matter

    Can you answer a few questions, to help track this down:
    What happens when you try to retrieve or upload a .pdf using Oracle?
    Can you store/retrieve .pdf files from the Oracle DB with a standalong application? That would tell you whether the problem lies with Creator, or Oracle.
    Finally, which JDBC driver are you using? Java Studio Creator bundles some Sun-branded drivers, which are supported. It sounds like you may be using the Oracle driver, which is not as compliant with the JDBC spec.

  • Tree component in Sun Studio Creator

    Hello.
    I have a problem with Tree component in Sun Java Studio Creator when i use it.
    Error:
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: java.net.MalformedURLException: no protocol: /layout/layout.dtd
    Please, tell me, how to use this component?
    Thank you.

    java.net.MalformedURLException: no protocol:
    /layout/layout.dtdDid you ever bother to read the error message? It tells you what's wrong, and it tells you how to fix it.
    "/layout/layout.dtd" is not a valid URL. Fix that.

  • JSF conflict with Sun Java Studio Creator

    I was trying to use JSF but when i was installing Sun Java Studio everything went ok but there was a step saying "Deploying Web Services" that tool a lot of time about 10 minutes. So i cancelled it and the Sun Java Studio Creator was working well then when i was running the small application it didnt do anything. I think something wrong with the application server. I uninstalled Sun Java Studio Creator and installed it again.
    This time no problems in installation. Then when i was creating a new JSF application when i press finish an error(1) appears and the finish button is dimmed so i have to press cancel and another error occurs(2), but the project gives an error message(3)
    I have been trying to solve this problem but i dont know what to do.

    Please check / post the Creator log file ( Tools -> Java Studio Creator Log File)
    Check / post the server log file as well, which will give more info.
    To view the Sun Java System Application Server log file:
    In the Servers window, right-click the Deployment Server node and choose View Server Log.
    In any text editor, open the log file in the following location: install-directory\SunAppServer8\domains\creator\logs\server.log

  • Weblogic 8.1 & Sun Java Studio Creator

    I'm in a new position where I need to deploy web apps created in Sun's Java Studio Creator to Weblogic 8.1, that hits an Oracle 8i back end.
    I'm curious to see if anyone on this board is using a similar mix of technologies. If so, what drivers are you using in your Studio Creator data sources?
    Thanks!

    Check it out. You will see, there is a problem.
    Error message from Sun Java Studio Creator:
    Start file:///C:\Documents and Settings\computer user\.Creator\EA\websvc\TFormat.wsdl 06/25/2004 12:23:22:�Parsing WSDL. Please wait ..WSDL - file:/C:/Documents and Settings/computer user/.Creator/EA/websvc/TFormat.wsdl 06/25/2004 12:23:49:�Error Parsing WSDL. Please see the log file for details. Exception = modeler error: failed to parse document at "file:/C:/Documents and Settings/computer user/.Creator/EA/websvc/TFormat.wsdl": org.xml.sax.SAXParseException: Content is not allowed in prolog.
    }}

  • Java Studio Creator and JDK

    I'm trying to create a game application using java and i've downloaded both java studio creator and JDK. However i'm having problems of writing the program. Should i use notepad and compile it using JDK? Or can i simply use the java studio creator and type in my java codings? And i cant seem to type in any codings in the java studio creator.
    Can someone help me please? Thank you.
    Message was edited by:
    burpyjac

    Hello, Burpyjac!
    I don't understand what you want to do exactly. If you would like to write an applet for a website maybe Java Studio Creator is not what you want, it's an IDE for developing web applications running in an application server like Glassfisch, SJSAS, Tomcat and the like.
    If your game need animation, drawings in a panel and the like you would need another IDE like Netbeans for example to develop an applet. Of course you can just use Notepad, but a IDE like Netbeans is much more comfortable (syntax highlighting, project managment, debugging).
    Java Studio Creator is an IDE for web applications and it is based on Netbeans (if you saw both you will notice). If your game can live without graphics maybe you can use it - but be aware that this applications do not run alone, you need an application server.
    Cheers,
    Jan

  • How to avoid Java Studio Creator 2 to use the regional settings?

    How to avoid Java Studio Creator 2 to use the regional settings to select the language that will be used to display the IDE in a certain language?
    My country settings are set to Belgium (French) but I want to have my IDE running in English.
    What should I change in the defautl properties of JSC2 to avoid this behaviour?
    Please, don't tell me to change my regional settings, it is not a valid answer :-)
    Best regards,
    Abdelkrim BOUJRAF

    just modify creator.conf in directory etc/
    add: -J-Duser.language=en
    in the netbeans_default_options line:
    like this:
    netbeans_default_options="-J-Duser.language=en -J-Xms96m -J-Xmx384m -J-XX:PermSize=32m -J-XX:MaxPermSize=128m -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled -J-Xverify:none -J-Dnetbeans.javacore.background_scanning=true -J-Dsunappsrvint.home=\"C:\Program Files\Sun\Creator2\SunAppServer8\""

  • Error installing sun java studio creator

    I have downloaded the installable for sun java studio creator 2 update 1 for windows platform. I am unable to install the package. Following is the error Iog I get, when used in debug mode(Notice the last part ErrOut indicating the error). What is going wrong ?
    file type: 0
    file id: 0
    length: 178
    offset: 319579
    file name: instructions.txt
    file type: 5
    file id: 1
    length: 1009
    offset: 319757
    file name: Verify.jar
    file type: 2
    file id: 2
    length: 729
    offset: 320766
    file name: launch.txt
    file type: 4
    file id: 3
    length: 16766119
    offset: 321495
    file name: Windows-Sun-1.4.2_04.exe
    file type: 6
    file id: 4
    length: 249333158
    offset: 17087614
    file name: windows.jar
    Executing launch script command: "C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE5.tmp/bin\java.exe" -cp "";"C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE6.tmp\windows.jar";"" -Dtemp.dir="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp" -Dis.jvm.home="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE5.tmp" -Dis.jvm.temp="1" -Dis.media.home="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE6.tmp\windows.jar" -Dis.launcher.file="D:\installables\Java Studio Creator\creator-2_1-windows-ml.exe" -Dis.jvm.file="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE5.tmp\jvm" -Dis.external.home="D:\installables\Java Studio Creator" -Xms20m -Xmx60m run in working directory D:\installables\Java Studio Creator
    Output from the launch script execution
    StdOut:
    ErrOut:
    Assertion failed: errno == 0 && count == (size_t) size, file ../../../src/share/native/sun/awt/font/fontmanager/fontobjects/fontObject.cpp, line 506
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information.

    Hi,
    Which version of windows are you using? which jdk? Did you have any conflicting products installed earlier.
    have you checked the install faqs?
    http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/index.jsp
    Thanks
    K

  • Problem installing sun java studio creator

    I have downloaded the installable for sun java studio creator 2 update 1 for windows platform. I am unable to install the package. Following is the error Iog I get, when used in debug mode(Notice the last part ErrOut indicating the error). What is going wrong ?
    file type: 0
    file id: 0
    length: 178
    offset: 319579
    file name: instructions.txt
    file type: 5
    file id: 1
    length: 1009
    offset: 319757
    file name: Verify.jar
    file type: 2
    file id: 2
    length: 729
    offset: 320766
    file name: launch.txt
    file type: 4
    file id: 3
    length: 16766119
    offset: 321495
    file name: Windows-Sun-1.4.2_04.exe
    file type: 6
    file id: 4
    length: 249333158
    offset: 17087614
    file name: windows.jar
    Executing launch script command: "C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE5.tmp/bin\java.exe" -cp "";"C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE6.tmp\windows.jar";"" -Dtemp.dir="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp" -Dis.jvm.home="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE5.tmp" -Dis.jvm.temp="1" -Dis.media.home="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE6.tmp\windows.jar" -Dis.launcher.file="D:\installables\Java Studio Creator\creator-2_1-windows-ml.exe" -Dis.jvm.file="C:\DOCUME~1\JATINK~1\LOCALS~1\Temp\LRE5.tmp\jvm" -Dis.external.home="D:\installables\Java Studio Creator" -Xms20m -Xmx60m run in working directory D:\installables\Java Studio Creator
    Output from the launch script execution
    StdOut:
    ErrOut:
    Assertion failed: errno == 0 && count == (size_t) size, file ../../../src/share/native/sun/awt/font/fontmanager/fontobjects/fontObject.cpp, line 506
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information.

    Hi Soumik,
    Here is the URL to the Sun Java Studio Creator Forum: http://swforum.sun.com/jive/forum.jspa?forumID=123
    I apologize for missing out on giving the link in my previous post.
    Thanks
    Giri :-)

  • Integrate Hibernate with Studio Creator

    Hello,
    while I tried to integrate Hibernate to my Studio Creator application, I already despaired by receiving a Sessionfactory.
    Here is my code:
    Configuration cfg = new Configuration().configure(
    new URL("http://localhost:28080/ArtistTrackApp/resources/hibernate.cfg.xml"));
    cfg.addURL(new URL("http://localhost:28080/ArtistTrackApp/resources/Artist.hbm.xml"));
    SessionFactory sessionFactory = cfg.buildSessionFactory();
    The last row throws a courios exception:
    java.security.AccessControlException: access denied (java.lang.reflect.ReflectPermission suppressAccessChecks)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
    at java.security.AccessController.checkPermission(AccessController.java:427)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
    at java.lang.reflect.AccessibleObject.setAccessible(AccessibleObject.java:107)
    at org.hibernate.property.BasicPropertyAccessor.getSetterOrNull(BasicPropertyAccessor.java:233)
    at org.hibernate.property.BasicPropertyAccessor.createSetter(BasicPropertyAccessor.java:214)
    at org.hibernate.property.BasicPropertyAccessor.getSetter(BasicPropertyAccessor.java:209)
    at org.hibernate.mapping.Property.getSetter(Property.java:255)
    at org.hibernate.tuple.PojoEntityTuplizer.buildPropertySetter(PojoEntityTuplizer.java:259)
    at org.hibernate.tuple.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:103)
    at org.hibernate.tuple.PojoEntityTuplizer.<init>(PojoEntityTuplizer.java:55)
    at org.hibernate.tuple.TuplizerLookup.create(TuplizerLookup.java:64)
    at org.hibernate.tuple.EntityMetamodel.<init>(EntityMetamodel.java:257)
    at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:412)
    at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:108)
    at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:55)
    at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:215)
    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1154)
    at artisttrackapp.StartPage.prerender(StartPage.java:285)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.prerender(ViewHandlerImpl.java:860)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:295)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:210)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:185)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:653)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:534)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doTask(ProcessorTask.java:403)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:55)
    The same Code in an eclipse environment works, so the configuration file and the mapping file are definetly right. I suppose it has something to do with the application server thing?!
    What the hell should I do?
    Please help me!
    Greetings

    In order to use Hibernate, you will need to grant the required permissions (detailed below) in the server config. Modify your server.policy file as follows:
    The server.policy file is located under <app server home>\domains\creator\config\server.policy
    // Basic set of required permissions granted to all remaining code
    grant {
         permission java.lang.RuntimePermission  "loadLibrary.*";
         permission java.lang.RuntimePermission  "queuePrintJob";
         permission java.net.SocketPermission    "*", "connect";
         permission java.io.FilePermission       "<<ALL FILES>>", "read,write";
            // work-around for pointbase bug 4864405     
            permission java.io.FilePermission "${com.sun.aas.instanceRoot}${/}lib${/}databases${/}-", "delete";
            permission java.io.FilePermission "${java.io.tmpdir}${/}-", "delete";
         permission java.util.PropertyPermission "*", "read";
         permission java.lang.RuntimePermission     "modifyThreadGroup";
         // -------------------- TRY THIS ----------------------
         // Permission for CGLib, part of Hibernate framework
         permission java.lang.RuntimePermission "getProtectionDomain";
         permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
         permission java.util.PropertyPermission "*", "read, write";
    ...Restart your app server. Do you still get the problem?

Maybe you are looking for