Updates to the 'Studio Creator' IDE

Where / how do we gets updates to the IDE?

There isn't any available yet.
Final version of Creator is due in a few months.
-Alexis

Similar Messages

  • Java Studio Creator IDE Download Error

    So I just watched a demo on the Java Studio Creator IDE and thought I'd go ahead and download it. So I followed the link from within the demo. I then had to create an account. That went just fine. After I got logged in, I went to the following url:
    http://developers.sun.com/members/promo/freetools/index.html
    I clicked on the following hyperlinked text:
    Download the Java Studio Creator IDE.
    Which opened up a new window witht the following url:
    http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=8&PartDetailId=JSCI9-4Q2FT99M&TransactionId=try
    However, that page encountered an error and directed me to:
    https://jsecom15k.sun.com/ECom/docs/FatalException.jsp;jsessionid=4786D8507DCAD6EF89AC9207D1A224E0
    Which simply had "Fatal Exception" on the page.
    Leave it to Sun to gloat about a new product and then not even be able to download it. Pretty lame if you ask me. Sun can't even get something as simple as a file download from the web to work, how well do you expect their development environment or resulting application to work.

    Hi,
    sorry that you had trouble with the download:-( I just tried your steps and they seem to work for me;-) I guess, it was a temporary problem in the `global' download center.
    But I would suggest if you want to try something new, go to
    http://developers.sun.com/prodtech/javatools/jscreator/ea/jsc2/index.html
    That's an EarlyAccess version of our upcoming release. The link you followed will bring you to the release product.
    Thanks,
    -- Marco

  • 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

  • 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

  • How do I update my studio creator from source 1.4 to 1.5

    every time I try to make a foreach loop this message follows
    for-each loops are not supported in -source 1.4
    (try -source 1.5 to enable for-each loops)
    how can I get source 1.5

    Please see this FAQ "Does Java Studio Creator support Java 5?"at http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/configuration/index.html
    Does Java Studio Creator support Java 5?
    The Java Studio Creator IDE does run on the Java 5 platform, however all web applications are constrained to being compiled and run with a target Java 1.4 platform.
    For a Java Class Library project, it is possible to choose a target platform of 1.2, 1.3, 1.4, or 1.5 ... but only 1.4 libraries will work with a Java Studio Creator generated application.
    Also: http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=59829
    btw, <creator_userdir>/build.properties defines the user properties and defines the variable "default.javac.source" which is set to 1.4 by default. Not sure if changing it to 1.5 helps...

  • Peculiar behavior in Studio Creator 2 update on hp  amd 64  bit

    I'm a newbie, the Studio Creator program is incredible!
    using the awesome Studio Creator 2 update, with the "Most Excellent"
    tutorial: "CreatorFieldGuide", page 354, to perform the "step 3",
    you must type in the class and hit the Save all button on the toolbar to assign the style , if you hit enter -or - tab you will loose your typed in class -(it will dissappear) ,
    also in the properties window ; styleClass's pop-up
    is blank , seemingly not connected to the style sheet.
    also , the pallets work fine ,but quirky, placing the mouse
    over a pallet will cause it to open/close or go from the right side
    of the screen to the left side of the screen, but they work to date except
    for this one quirk.
    using hp pavilion model a1268c
    amd 64 bit processor dual core
    windows xp media version 2005
    some day I'm going to try a solaris os
    Thank you,
    Douglas1

    I'm a newbie, the Studio Creator program is incredible!
    using the awesome Studio Creator 2 update, with the "Most Excellent"
    tutorial: "CreatorFieldGuide", page 354, to perform the "step 3",
    you must type in the class and hit the Save all button on the toolbar to assign the style , if you hit enter -or - tab you will loose your typed in class -(it will dissappear) ,
    also in the properties window ; styleClass's pop-up
    is blank , seemingly not connected to the style sheet.
    also , the pallets work fine ,but quirky, placing the mouse
    over a pallet will cause it to open/close or go from the right side
    of the screen to the left side of the screen, but they work to date except
    for this one quirk.
    using hp pavilion model a1268c
    amd 64 bit processor dual core
    windows xp media version 2005
    some day I'm going to try a solaris os
    Thank you,
    Douglas1

  • Studio Creator and configurable datasources problem

    At design time we've binded components to a creator-configured datasource. As a result the Studio Creators generates in a '_init' method of a session bean code like
    'rowSet.setDataSourceName("java:comp/env/jdbc/mydb");'
    (where 'rowSet' is a 'CachedRowSetXImpl').
    So far so good.
    In the next step we tried to make the datasource jndi name configurable to use this code to connect to different databases. It works fine in a web/app-server environment at run time.      
    But unfortunately the Studio Creator doesn't accept this code. Using something other than the shown hard-coded jndi string in a statement like the example above results in a component error...
    This means that we've to use different code at design time and build/runtime? At the moment after working at the design every time we change the code (substitution using ant, e.g.: "java:comp/env/jdbc/mydb" --> getDatasourceName() ) and build the archive.
    Is there is any other way to avoid this problem? We dislike such one code patching...
    Regards, Thomas

    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

  • Studio Creator Modules MIME type

    Hi:
    This is kind of a weird question. I need to know the MIME type of the Studio Creator 2 update modules. Out IT guy blocked ALL MIME types in the company's firewall and we have to request types to be added to the safe list.
    Many thanks for your help.
    William J Ortiz
    [email protected]

    William,
    The file type is ".nbm". I don't think their is actually a mime type setup on the various platforms.
    Hope that helps!
    -David

  • 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

  • Sjds2 and Java studio creator 2

    Hello
    is there a particular download version of Java studio creator 2 for JDS2?
    In the Studio Creator prerequisites document for linux, the supported OS is Red hat linux
    regards
    Raul

    Hi Abdelkrim,
    Try to place variable ArrayList mySelectedXXX
    to SessionBean and change your prerender code to something like that to reflect changes:
    //prerenderer method
    // you need this check in order to execute this code only first time page is rendered
    if (getSessionBean1().getMySelectedXXX() == null) {
        getSessionBean1().setMySelectedXXX(new ArrayList());
        while (resultSet.next()) {
            getSessionBean1().getMySelectedXXX().add(new Long(resultSet.getLong("id_XXX")));
        checkboxGroup1.setSelected(getSessionBean1().getMySelectedXXX());
    }Also you'll need to execute getSessionBean1().setMySelectedXXX(null); when you leave the page.
    Roman.

  • License Question On Java Studio Creator 2

    Hello. At the 2006 Java One Conference, I picked up a free DVD set of the Java All Access Kit/Sun Developer Kit. Within the kit contained the Studio Creator 2. I would like to install the software but I am concerned upon the issue of the license. I do not have an entitlement nor have ever purchased Studio Creator 2. The DVD that I picked up at Java One, was that an Evulation Use copy? I am unsure. With that, I am writing to see if someone can assist me & answer a question I have: Is the evaluation valid for a period of 90 days from first use? This was listed in the EULA during the Studio Creator's installer.
    Thank you for your attention - any assistance/help is appreciate.
    -Amanda Waltman, NCDDC Systems Administrator

    While I can't tell you what was on the DVD that you got at JavaOne, I can tell you that Sun Java Studio Creator 2 is free. You can even download the latest full version at http://developers.sun.com/prodtech/javatools/jscreator/downloads/index.jsp

  • Studio Creator 2 deploy to Tomcat 4.x?

    Due to some legacy vendor apps we are running we are stuck with Java 1.3 for a little while yet.
    I'm trying to test Studio Creator 2 with Apache Tomcat 4.x (JDK1.3) and my war file is being rejected with a java.lang.UnsupportedClassVersionError. I'm guessing some of the classes within the war file were compiled using Java 1.4 (specifically LifecycleListener)
    Within Studio I'm using the option to Export the War file to J2EE 1.3.
    It lists Tomcat 4.x as a valid target environment, which makes me wonder why this is not working.
    Does anyone know if this is possible and has anyone successfully deployed a Studio project to Tomcat 4.x?

    There is a forum specifically for Java Studio Creator. You might want to repost your message in that forum. Hopefully the Studio Creator experts watching that forum can help anwsering your question.
    The url of the Java Studio Creator is
    http://swforum.sun.com/jive/forum.jspa?forumID=123

  • Studio Creator - How to set -source

    Trying to compile a Java 5 style project the studio creator suggests
    to set
    ' -source 1.5'
    Where exactly is this to be set?
    Urs

    OpenZoom currently only has limited support for Deep Zoom Collections. To find out more, check out the following two community threads:
    http://getsatisfaction.com/openzoom/topics/working_with_output_from_deepzoom_composer
    http://getsatisfaction.com/openzoom/topics/deep_zoom_collections_support_for_openzoom

  • I need help with setting up my Sun Java Studio Creator

    Hello all, i need help with setting up the Studio Creator, i"m new to all that staff so is there anyone to help me just a little with all that if yes email me at [email protected] or get me on AOL Instant Messanger with the screen name: wretch17
    thanks :-)

    Hi,
    Welcome to the Creator community! Thanks for your interst in Sun Java Studio Creator. Please feel free to post any question related to creator on this forum .
    Take a look the creator website at
    http://developers.sun.com/prodtech/javatools/jscreator/
    CreatorTeam

  • How to change the source level in java Studio creator

    Hi,
    I am using Sun Java Studio Creator 2 Update 1 IDE, in this IDE how to change the source level to 1.5 for an existing project.
    Thanks in advance,
    Rajesh.

    Hi!
    Unfortunately Sun Java Studio Creator 2 Update 1 doesn't support 1.5 source level. But You can try to download NetBeans IDE (from http://www.netbeans.org) and there with Visual Web project You will find the same functionality as for Creator. And 1.5 source level is supported by NetBeans.
    Thanks,
    Roman.

Maybe you are looking for

  • Can't use cam in GoToMeeting on MacBook

    I have installed (and yes, deleted and reinstalled several times) the GoToMeeting app on my old MacBook, running OS X 10.6.3. While in a Meeting, I can see the others on my screen, and text and talk, but they can't see me. Under Preferences/Webcam, I

  • Flash Player Active X

    When viewing flash player files, i see the video but no sound. what could the problem be? I have adobe flash active x version 9.0.124.0

  • Horizontal table with checkboxes

    Hi, I need to create a horizontal table. With this i mean the column aren't on top but on the left side and the data goed from top to bottom. You often see this construction to make it easy for user to compare values. I also need to display in the la

  • Deleted files automatically return

    Hi there, I have a strange problem. Somehow when I delete a collection of .torrent files (and empty secure my trash), after a while the deleted files 'automatically' return in my movies-folder. I want them deleted... What can cause this problem? It d

  • Happy Birthday, Lennart!

    I'm not here; I'm away on holiday: but I just had to pop in and say All Best Wishes to Lennart, who's answered so many questions Electrifyingly, has Trained us all to isolate our problems, whose Carriage under stress is exemplary, and who Steams ahea