Studio Creator available on Edusoft?

Java Studio Creator is not available on Sun Edusoft. It is also not available from the CD media in the Academic subscription at our University.
How can I get the complete version of Java Studio Creator for use in academic projects? A 30-day trial is not useful in these contexts because projects can run longer.
Thanks
Manish

Thanks, yes it does and I have requested our campus contact to see how we can get it.
But I would like to make the following suggestion:
1. It is very difficult to find the software on the Sun Edusoft site. For wider use in the academic community (and students), it should be available as a free and unrestricted download. I use:
http://www.sun.com/products-n-solutions/edu/promotions/edusoft/individual/

Similar Messages

  • Reminder: Java Studio Creator training available

    Java Studio Creator training is coming to Burlington MA, San Francisco, and Atlanta. The instructors are industry experts Paul Anderson and Gail Anderson, authors of the Java Studio Creator Field Guide, Second Edition. For more informaiton, see http://developers.sun.com/prodtech/javatools/jscreator/learning/training/index.html.

    Did anyone get a chance to checkout this course. I am curious to find out what people thougth
    - Joelle

  • Help needed with Sun Java Studio Creator and EJB in a Portlet Project

    Hi
    I have created an web-application with JSF in Sun Java Studio Creator 2. The web application uses a lot of EJB's which acts as the dataProviders. In a typical jsp page i have more that one data providers(the EJB's) getting used. When i run the project everything opens up properly in the browser and the application seems to be fine.
    But when i create a JSP 168 Portlet project and do exactly the same thing for some reason the Apache Pluto(comes as the default Portlet Container with Studio Creator) conks off.
    Then i started going ahead step by step:
    1. First i created a portletpage and added only one dataProvider(EJB) and ran the project...It gets deployed properly in Pluto and the browser comes up and everything shows up fine.
    2. Just to re-confirm i did the same thing with another dataProvider(EJB). So still we have just 1 EJB in the portlet page. As expected it also worked fiine.
    3. Then when I added more that one dataProviders(EJBs) in the porlet page the Apache Pluto conks off(saying that Pluto is not available)
    I tried doing a lot of things but nothing works...Surprisingly the same thing works when u create a JSF web Application project but the same thing does not work when u create a JSR 168 JSF Portlet Project...
    Did anybody face the same problem..Is it a bug in the Studio Creator...Any help would be highly appreciated.

    Hi,
    There are a few discussion threads in the feedbackprograms portal for Creator 2 EA 2. The URL is:
    https://feedbackprograms.sun.com/login.html
    In the EA discussion forum you will find threads which discuss the concerned topic. In specific look for threads titled:
    # Deploying Portlets
    # Taking a JSC Portlet to Tomcat creates a Faces Mapping Error
    # Problem with Pluto when trying to deploy a portlet
    # Request: JSR-168 Portlet Project without JSF
    We kindly request you to post your further queries related to EA in the above mentioned forum.
    Cheers
    Giri

  • Error in deploying the java studio creator application to tomcat

    Hi,
    I'm trying to deploy my Sun Java Studio application to Apache Tomcat 5.0.28.
    A simple JSF web application built using the creator works fine after deploying the war file under tomcat/weapps directory.
    In case of a application with databse connection I'm getting the
    " com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null' "
    above error. My application connects to Oracle database using the Oracle Server type provided by the Studio Creator.
    I have copied
    jstl.jar
    standard.jar
    to webapps\%app%\WEB-INF\lib
    The below url is currently not available ( Page not Found )stated as a solution in most of the querries regarding the deplyment to tomcat.
    http://developers.sun.com/prodtech/javatools/jscreator/reference/tips/deploy_to_tomcat.html
    Thanks for any help
    abhi

    I had similar problems.
    I used mysql with tomcat and have mysql in my Creator environment as well but still had the driver message you experienced.
    I found that simply copying the WAR file into the webapp directory in tomcat caused a faulty deployment (it was creating /etc/tomcat5/localhost/YourProject.xml as a directory, not as a file)
    I updated my Projects/MyProject/build.xml to include a deploy target and I manually execute the ant deploy step (having not figured out how to tweak the internal ant within Creator)
    Note that this requires two jar files (see comments in the ant definition)
    <project name="YourRoster" default="default" basedir=".">
        <description>Builds, tests, and runs the project YourProject.</description>
        <import file="nbproject/build-impl.xml"/>
       <property file="build.properties"/>
       <property name="appdir" value="."/>
       <property name="distdir" value="${appdir}/dist"/>
       <property name="warfile" value="${distdir}/${app}.war"/>
       <property name="builddir" value="${appdir}/build"/>
       <path id="classpath">
          <pathelement location="${servlet.api.jar}"/>
          <pathelement location="${jsp.api.jar}"/>
          <fileset dir="${builddir}/WEB-INF/lib">
             <include name="*.jar"/>
          </fileset>  
       </path>
       <!-- requires tomcat/server/lib/catalina-ant.jar -->
       <target name="lrp-init">
          <tstamp/>
          <fail unless="app" message="Run ant -Dapp=... or update 'build.properties'"/>
       </target>
       <target name="deploy-tomcat" depends="dist"
          description="Deploy web application.">
          <echo message="Deploying ${app} ..."/>
          <taskdef name="deploy"  
             classname="org.apache.catalina.ant.DeployTask"/>
          <deploy url="${manager.url}" username="${username}"
             password="${password}" path="/${app}"
             war="file:${warfile}"/>
       </target>
       <target name="undeploy-tomcat" depends="lrp-init"
          description="Undeploy web application.">
          <echo message="Undeploying ${app} ..."/>
          <taskdef name="undeploy"   
             classname="org.apache.catalina.ant.UndeployTask"/>
          <undeploy url="${manager.url}" username="${username}"
             password="${password}" path="/${app}"/>
       </target>
       <!-- requires ant-contrib (http://ant-contrib.sourceforge.net) -->
       <target name="try.undeploy-tomcat" depends="lrp-init"
          description="Call the undeploy task (which may fail).">
          <taskdef resource="net/sf/antcontrib/antcontrib.properties"/> 
          <trycatch>
             <try>
                <ant target="undeploy-tomcat"/>
             </try>
             <catch/>
          </trycatch>
       </target>
       <target name="redeploy-tomcat" depends="try.undeploy-tomcat,deploy-tomcat"
          description="Undeploy and deploy web application.">
       </target>
    </project>In addition, the build.properties...
    jsf.dir=/opt/jsf-1_1_01
    tomcat.dir=/opt/tomcat5
    app=YourProject
    username=tomcatAdminUser
    password=tomcatPassword
    manager.url=http://localhost:8080/manager
    servlet.api.jar=${tomcat.dir}/common/lib/servlet-api.jar
    jsp.api.jar=${tomcat.dir}/common/lib/jsp-api.jar
    jsf.lib.dir=${jsf.dir}/lib
    jstl.lib.dir=${tomcat.dir}/webapps/jsp-examples/WEB-INF/lib
    commons.lib.dir=${tomcat.dir}/server/lib
    jsf.libs=jsf-api.jar,jsf-impl.jar
    jstl.libs=jstl.jar,standard.jar
    commons.libs=commons-beanutils.jar,commons-digester.jarHope this helps.
    ...Lyall

  • Basic vs Standard componets in Sun Studio Creator

    Hello,
    I am fairly new to JSF and trying to build a JSF webapplication. I am using Sun Studio Creator
    I would like to know what is the difference between the Basic and Standard components...is there a specific one I should be using, or any would be fine ?
    Thank you very much for the help.

    Yes you can create Portlets for JBoss Portal using JSC as I have been doing a project with it! However, it isn't quite straightforward as exporting a war file. You need to delete a couple of JSC exported files, create at least 2 JBoss specific files to make it work in JBoss Portal. Then to use the user restrictions part of JBoss Portal i.e. assigned specific portlets to specific users, you will need to create another file. I'll post on this in due course (once I've found my crib sheet!).
    There are a couple of issues though especially with the table components.:
    The BASIC table in JSC gives you a sort by column and this sends out a stream of error messages in JBP when it is used. Fortunately, the workaround is to just untick the table "sortable" box. That removes the sorting ability and the table works fine as does the paging ability. You can also set the number of rows returned. The major issue you will discover about the BASIC table component is that the empty message i.e. no results returned/found will also give you an endless stream of error data. I worked around it by running a separate SQL query to get a result and then allow the page with the table to be shown otherwise redirect it. Not exactly elegant but it works. The STANDARD table component does not give this error. You don't see these any of errors when deployed in the Pluto portal that comes with JSC.
    I also found that the choice of database is also an issue. JBoss recommends Postgresql but although it did work to a point in JSC, it did throw up an error with dropdown databinding (no idea!). So I changed to Mysql 5 which works fine in JSC but JBP requires a small workaround but prefers Mysql 4. If you're asking why not stick with v4? Well my project required the use of Views which aren't available in v4 let alone foreign keys. Think "compromise" and you will be fine!

  • Java Studio Creator Update 2

    Dear,
    I have installed Java Studio Creator Update 2 on my PC and I have prepared a prototype. now I have noticed that there are some components "xmlns:ui = " http://www.sun.com/web/ui ".
    My question is: Can these components be used to Run Time to cost zero or it is necessary to acquire a license?
    Thanks thousand for your answer, regards Guido: -)

    Where did you get Update 2? I can see only Update 1 available for download

  • Some Questions about Sun Java Studio Creator IDE

    I am quiet new to the IDE, but I experienced some
    behaviours I do not actually understand.
    I hope I can get some help here.
    Sun Java Studio Creator Update 9
    Each time I change the font size and type using the
    "Advanced" option of the IDE the font I changed correctly.
    But after closing and restarting the IDE the fonts are set
    back to the default undoing my changes.
    Is there a way to use code completion for the jsf tags within jsps ?
    I know that there are code clips for adding jsf components to the jsp,
    but (coming from eclipse ide) I'd appreciate a feature like the code completion for the jsf components. If there is a way by configuring, how can that be acchieved ?
    Trying to add a "taglib declaration" to the jsp e.g. "<%@taglib uri="..." prefix="..." I get the warning that the tags of the xml must be welformed.
    How can I add those taglib declarations correctly ?
    Using the "File System View" after each change made e.g. to a jsp the
    tree collapses and I have to navigate to the tree again to find my resources.
    Is this common behaviour or to be configured ?
    Thx for any support.

    Hi,
    1. The changes made to the font size and type are indeed getting reset in Creator update 9. However this behaviour is not seen in the latest version of Creator which is Creator 2 EA 2. The final version of this will be available very soon and we encourage you to try the new release which has lot more features and lot of bug fixes. For more details please visit:
    http://developers.sun.com/prodtech/javatools/jscreator/ea/jsc2/
    The following thread will explain about the tags and how they should be well formed:
    http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=47615
    The behaviour of the File System View was encountered in Creator update 9 as you have mentioned. Once again this behaviour was not see in the latest version Creator 2 EA 2.
    So we recommend you to try out the latest version.
    We appreciate your valuable feedback and thank you for the same.
    Cheers
    Giri

  • Studio Creator Licensing Question

    I'm currently a developer looking into 2 things...
    1.) Evaluating the tool and...
    2.) Creating a website for a non-commercial uses for a non-profit....
    Am I on safe grounds as far as the non-commercial usage? If not, how soon could I purchase it....etc.?

    You can purchase the SDN Standard subscription which includes a copy of Java Studio Creator today, we launch on Monday 6/28!. There is a free 30 day trial version of the subscription services and 30 day trail for Creator available as well.
    SDN/Creator does not have a not-for-profit clause in it's license, so you will need to purchase the $99 SDN Standard subscription once the 30 day trial expires or you intend to commence production development.
    We may, if there are many customer requests, look to see if we need to change this in a later release.
    Thanks,
    Dan

  • Studio Creator 2

    I was browsing Top Coder's site and found a reference to Studio Creator 2.
    http://www.topcoder.com/tc?module=Static&d1=tournaments&d2=tco05&d3=sun
    Is this separate from the current version of Studio Creator? Or is it the new update we've been looking forward to? And, while I know it's not Sun's policy to publish release dates, if Studio Creator 2 is a separate product would the early access be available soon?
    Cre

    Hi,
    The company policy do not allow us to reveal the new features. What I can share with you though is that it should be available shortly.
    Please keep watch on the Creator web page for the latest announcement.
    Thanks,
    Creator Team.

  • Studio Creator updates

    When will the next official update come out for studio creator?

    Hi,
    An announcement shall be made once the new update is available. So please keep checkcing this forum and the Creator home page. Also configure your IDE to check for updates at regular intervals. This would be of immense help.
    Cheers -)
    Creator Team

  • 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.

  • JavaScript problems with JSF or Studio Creator

    Hi All,
    Studio Creator has generated this code
    <h:form binding="#{general$forgotpassword0.form1}" id="form1">
    <h:inputText binding="#{general$forgotpassword0.txtLogin}" id="txtLogin" styleClass="frmObjects" />
    <h:commandButton action="#{general$forgotpassword0.btnSubmit_action}" binding="#{general$forgotpassword0.btnSubmit}"
    id="btnSubmit" onclick="alert('hello'); return checkLogin();" styleClass="frmObjects1" title="btnSubmit" value="Continue"/>
    </h:form>
    now after compilation, I get form1:txtLogin for txtLogin
    Now how can I perform client side JavaScript Validation on form1:txtLogin??Thanks
    Sudhakar

    Hi Sudhakar,
    There are code clips available which demonstrate how to make use of javascript. These are available at:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/codesamples/codeclips.html
    The codeclips that would be of interest to you in particular are titled Set focus, Select on Mouse over and Javascript template. Using these you should be able to do the client side validation using javascript.
    Hope this helps
    Cheers
    Giri :-)
    Creator Team

  • Turn off automatic code generation in Java Studio Creator

    A feature in Java Studio Creator automatically adds getter methods for all managed beans in every Page Bean, getter methods for all Session Beans and Application Beans in every newly created Session Bean and so on.
    What is annoying is if these automatically generated code is commented out or deleted, they are added back again by the IDE.
    We have a large project where the number of managed beans is quite significant. It doesn't make sense to clutter the code for every managed bean with unnecessary getter methods. Is there a way this feature can be disabled?

    I have a similar situation.
    I have a large project with several classes with properties.
    It is convenient to use the 'add properties' option to add a property to the class.
    However, when you do that, it is a private member and you need getter and setter methods to access the private members.
    What I do to get around this is to just create a class and manually add properties as public members so they can be accessed without getter or setter methods.
    By doing this, you expose these members to the world, but for large projects where the classes are not intended to be available for general use, you cut down the generated code by about 80%.
    The other advantage is that you can define all the class members at the start of your class and avoid the problem of having the definition and getter / setter methods concatenated at the bottom of the class.

  • [installation] studio creator on Suse 10.1

    Hi there,
    on my laptop (1,7 Ghz cpu, 1 Ghz ram), runs Suse 10.1(kernel Linux 2.6.16.13-4-default i686) and I'd like install studio creator wich is at moment on XP (and I'm not very happy about the performance).
    But looking at http://developers.sun.com/prodtech/javatools/jscreator/sysreqs/index.jsp#04
    it seems that it can only runs on Red Hat Enterprise Linux 3.
    Did anyone try it on Suse, what will be the conseguence if I proceed anyway?
    Thanks in advance for your reply.

    Have you tried downloading and installing the latest HotFixes from the Update Center, on your window machine? The HotFixes have several performance improvement fixes.
    http://developers.sun.com/prodtech/javatools/jscreator/downloads/hotfixes/index.jsp
    Regarding creator on suse 10.1, users have reported that it runs fine:
    http://forum.sun.com/jive/thread.jspa?threadID=97305&messageID=334105

  • Problem with Java Studio Creator and Tomcat Server

    Hi Gays ,
    I have problem:
    here is the error from tomcat 5
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: java.lang.RuntimeException: java.sql.SQLException: statement handle not executed: getMetaData
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java: 601)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.ja va:316)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87 )
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    if i develop application on my pc ( java studio creator with sun apps bundlled) is working perfectly,
    but i migrated application to Tomcat Server ( Database the same - Oracle 10 g)
    i can't show value ( as text) from datasoruce ( is in SessionBean1)
    (Category-.>Subcat->Items->details( url from items table[items.jsp])
    this is a working url "/faces/testpage.jsp?auk_id=31 "
    ( working with sun apps server , but not on Tomcat 5)
    below prerender method in details.java and fragment of details.jsp
    public void prerender() {
    try {
    String idauk = (getExternalContext().getRequestParameterMap().get("auk_id").toString());
    System.out.println("wartosc auk_id " + idauk);
    if (idauk != null) {
    getSessionBean1().getDetailsRowSet().setObject(1,idauk);
    getSessionBean1().getDetailsDataProvider().refresh();
    details.jsp
    xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{testpage.page1}" id="page1">
    <ui:html binding="#{testpage.html1}" id="html1">
    <ui:head binding="#{testpage.head1}" id="head1">
    <ui:link binding="#{testpage.link1}" id="link1" url="/resources/stylesheet.css"/>
    </ui:head>
    <ui:body binding="#{testpage.body1}" id="body1" style="-rave-layout: grid">
    <ui:form binding="#{testpage.form1}" id="form1">
    <ui:staticText binding="#{testpage.staticText1}" id="staticText1" style="position: absolute; left: 120px; top: 96px" text="#{SessionBean1.testDataProvider.value['Name']}"/>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>
    Help People ! Any Ideas I'm stuck, why is working with Sun Servet but not with Tomcat and only just thing ?
    Thanks in advance for helping me to resolve the night problem :)

    Hi I found solution, i puted on the page a table -component (with brand new automaticly created dataprovider) , then i set properties visible= false for table, and now I can bind statictext with database field and deploy on tomcat server .
    But i think it is not a elegant solution in page source i habe noused-code.
    Have Any another Ideas. HELP PEOPLE !!!!
    Mariuszek: I use Creator.because right now I can see result of my job and i can qickly change ideas ,
    I tried with JDeveleper but i did'nt find this functionality (wich version do you prefered ?) , unfortunately i have to deploy my application on Tomcat. This is my study project, and i make this to become a Master of Techinal Univeristy ;), Deadline time is 30 th September :(
    greetings

Maybe you are looking for

  • Mini DVI to VGA adaptor

    Hi - having a frustrating time trying to buy a mini DVI to VGA adaptor for a macbook with a core 2 duo - none on the apple shop, only ones for intel core duo which does not fit (says review)  I need to to connect a monitor to the MacBook.  Help

  • Issues with Z10 syncing with Outlook calendar

    Hi, I am looking for help to resolve an issue I am having. When I add items to my calendar on my Z10 it never sends them to Outlook. I keep track of my workorders during the day on my phone and need to print them out at the end of the day and I have

  • FK as PK in Child tables

    I have an employee table and three tables as child of employee table 1. Instructors 2. Airmen 3. Examiners FK from employes is acting as Primary key in child tables and relationship is identifying. how could i restrict empID(FK) not to copy in three

  • Can i have a link for online reservation for repair my iphone 5?

    Hi there, My iphone 5's screen is cracked. i just want to book a reservation for repair or swap with new phone paying extra money.  So could you please send me a link for reservation?

  • Dockbarx problem in XFCE4

    Hello! I'm trying to install dockbarx with yaourt from the AUR. However, I'm having a problem... When trying to install I get this error message: /tmp/alpm_GYIvxX/.INSTALL: line 4:    You may need to rebuild python-keybinder against python2 2.7: comm