What can I do with Sun Studio CE?

Is the CE edition of Sun One Studio a full-fledged development platform? Can I develop an application to distrubute to others with it? A fast glance at the docs and help files shows very little about packaging a distributable application.
Thanks,
Dave

The distribution is a bit trickier though, since you
have several ways of doing it.
The most common probably being a .jar file, applet or
webstart (apparently?).Really? People use an applet to distribute their application?

Similar Messages

  • Is it possible to integrate j2ee enviroment with sun studio developer???

    Dear all,
    I currently developing a jsp based web application with sun studio enterprise but sun studio by default does not support j2ee environment, i think it only support to j2SE.
    i want to use persistence and enterprise beans with my application but don't know, how to do it with sun studio developer.
    i can install the persistence and ejb api's separately, but i dont know whether sun developer will support them
    Can any on tell, what is the best tool for web application developement, while i will need to java uml diagrams later on.
    i would be grateful, if someone can help, i am really desprate
    shafqat zaman

    Sun Java Studio Enterprise 8.1 (built on top on NetBeans 5.0) does support j2ee (and j2se) development.
    For developing j2ee applications, both NetBeans (latest version is 5.5, http://www.netbeans.org) and SJSE can be used. For a comparison on SJSE and NetBeans, please take a look at:
    http://forum.java.sun.com/thread.jspa?forumID=747&threadID=5113472
    For a list of all development tools from Sun, please take a look at http://developers.sun.com/prodtech/devtools/free/index.html..
    i want to use persistence and enterprise beans with my application but don't know,
    how to do it with sun studio developer.For j2ee development, please check out NetBeans 5.5 ; there are several tutorials available at http://www.netbeans.org/kb/index.html. (Since SJSE is built on top on NetBeans, SJSE can also be used and all the NetBeans documents also will apply to SJSE).

  • Problems with sun studio 12 in suse linux 11

    Hi.
    I installed Sun Studio 12 suse linux with no problems. However, the debugging modules (DBX) are not working any more. When I started Sun Studio, it gave a message about modules that could not be loaded in tha moment. I did not pay attention. But I noticed that all debugging options were disabled.
    Using the module manager, I saw the DBX module was not checked, and I could not change it. I was marked with a red X. So I thought to reinstall the application. However, the uninstall utility doesn't work either.
    According with the documentation, running ./uninstaller does it, but I get the following error message instead
    Exception in thread "main" java.lang.NoClassDefFoundError: uninstall_Sun_Studio_12/class
    Caused by: java.lang.ClassNotFoundException: uninstall_Sun_Studio_12.class
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    I tried to uninstall manually, and then execute installer, by using first the software manager in linux and deleting the producregistry file manually. It worked because I executed the installer. However, in Sun Studio IDE, debugging options are still not available despite I "reinstalled" the application. I checked the log files and they say the file uninstall_Sun_Studio_12.class could not be written.
    So my questions are:
    1. Is there any other way to repair Sun Studio? What could be the possible for this module to stop working?
    2. Does anyone have an idea of why the installer cannot write the uninstaller class?
    I found that perhaps problems regarding Java / Netbeans versions could be the problem, but the ones I have installed are those packages that were installed along with Sun Studio, and both are valid.
    Thank you very much.

    Perhaps you can simply delete the Sun Studio 12 installation tree, because it will not work on SUSE Linux 11.
    This OS is not supported, so any problems you see with SS12 on SUSE 11 will not be fixed.
    But we have a newer version, that should work better.
    You can try to download and install Sun Studio Express 2008/11 (extract pre-installed image from tar.bz2 file).
    Here is a pointer to the web page:
    http://developers.sun.com/sunstudio/downloads/express
    All you need is to provide a email address, and press "Download Now" button.
    You will see a page, that gives you 2 options to download Sun Studio Express 2008/11.
    Use "Option 2": Download Tarfile Installer
    Thanks,
    Nik

  • Compiling MySQL 5.1.26-rc with Sun Studio Express on Linux?

    I managed to compile MySQL 5.1.26-rc with Sun Studio Express on Linux (OpenSuse 10.2 on x64), but I get unexpected crashes every time a connection thread exits:
    (gdb) where
    #0  0x00002b2ce0649535 in raise () from /lib64/libc.so.6
    #1  0x00002b2ce064a990 in abort () from /lib64/libc.so.6
    #2  0x00002b2cdf949795 in __pthread_unwind () from /lib64/libpthread.so.0
    #3  0x00002b2cdf944425 in pthread_exit () from /lib64/libpthread.so.0
    #4  0x00000000005048b2 in one_thread_per_connection_end (thd=0x16d88f0, put_in_cache=false)
    at /home/mysql/debug/sql//mysqld.cc:1893
    #5  0x0000000000513b75 in handle_one_connection (arg=0x16d88f0) at /home/mysql/mysql-5.1.26-rc/sql//sql_connect.cc:1122
    #6  0x00002b2cdf94309e in start_thread () from /lib64/libpthread.so.0
    #7  0x00002b2ce06da4cd in clone () from /lib64/libc.so.6
    #8  0x0000000000000000 in ?? ()If I compile with gcc using e.g. BUILD/compile-amd64-debug-max, I have no issue! But I want to use Sun Studio in order to be consistent with the Solaris version, and also because Sun Studio is likely to produce better code.
    Here is the compilation script, it downloads and extracts the source tree and builds it (it assumes Sun Studio Express is installed in /opt/sun):
    #!/bin/bash
    export PATH=/opt/sun/sunstudioceres/bin:$PATH
    wget -q http://mir2.ovh.net/ftp.mysql.com/Downloads/MySQL-5.1/mysql-5.1.26-rc.tar.gz
    tar xpf mysql-5.1.26-rc.tar.gz
    cd mysql-5.1.26-rc
    # Explicitly specify libs to avoid linking with the STL.
    export LIBS="-xnolib -lCrun -lm -lc -lrt"
    autoreconf --force --install > autoreconf.log 2>&1
    export MY_FLAGS="-g -mt -xtarget=generic -m64"
    CC=cc CXX=CC CFLAGS=$MY_FLAGS CXXFLAGS=$MY_FLAGS ./configure --with-big-tables --without-embedded-server --disable-shared --with-pthread --with-ssl -with-plugins=max > configure.log 2>&1
    gmake -j > build.log 2>&1Any idea about what is going wrong?
    Thanks.

    Possibly the actual CC (or cc) command lines are not correct. The proper way to say not to link libCstd is the command-line option -library=no%Cstd. Then you don't need to add the default system libraries like -lc to the command line.
    Can you show the actual CC command lines that are generated by the makefile? They should be in the compilation log. I'd also like to see the command line(s) used to create dynamic libraries, if any, and the final executable.

  • I/O timeout all the time on console - what can I do with my hard drive? Macbook pro late 2011

    My macbook has been extremely slow for a while and after looking on this site I discovered I should look at the console - and noticed I had I/O timeouts all the time which I gather are a problem.
    What can I do with my hard drive? If I back it up using time machine and erase the disk with zeros will the problem continue if I simply restore from time machine?
    Or should I invest in a new hard drive - but if I buy a new hard drive is there something on my computer that will wreck that one as well? i use final cut pro/studio a lot and it's got to the stage where I can barely use it - do I need a 7200rpm hard drive? My current one is a 500gb 5400rpm.
    I have 16gb of RAM in but since upgrading this from 4GB it made a difference to the speed for all of two seconds then the computer returned to its normal slow speed.
    Would appreciate any help on this issue as I'm not particularly technical.

    I wouldn't worry too much about what the Console logs are showing... although I/O timeouts, if related to reading/writing to your disk may be a problem. I would have to see the whole Console message to know for certain...
    Your hard drive is sure to be slowing you down with FCP. Your best bet would be to upgrade to an SSD, if you can afford it. It's the only way you're going to see a real speed increase in FCP as so many large temp/cache files are written to the drive.
    If you can't afford a SSD, you may want to look at a 7200rpm SATA III drive (if your MBP supports SATA III - which model do you have? 2011 or later, I'm assuming, since you note that you've 16GB of RAM?).
    You should also update your OS to 10.7.5 if your profile reading of 10.7.2 is correct. Won't help speed, but will be more reliable -> http://support.apple.com/kb/DL1582.
    Clinton

  • Is it possible to run sun studio 12 ide with sun studio 8 compiler?

    Hi, i am in the process of evaluating sun studio 12. Our company cannot move to sun studio 12 compiler collection right now as it is a huge code base and it will take us few months even before we start using sun studio 12 compiler in our development environment. Is it possible to use sun studio 12 ide with sun studio 8 compiler collection(CC, dbx etc)? Your feedback is appreciated. thank you.

    There are two parts to the answer.
    1) whether you can
    To choose a compiler set follow Tools->Options->C/C++
    and in the BuildTools tab you'll see how it picks up
    compilers from your PATH.
    This dialog doesn't govern choice of dbx, which will always
    come from the installation. However you can alter which dbx
    is used by presetting the environment variable SPRO_DBX_PATH
    to teh full pathname of a dbx of your choice.
    2) whether you should
    The IDE should work reasonably well with older compilers. They
    are not that tightly bound.
    The IDE will not work well enough with an older dbx, especially as
    old as studio 8. However, while not officially supported or tested
    the SS12 dbx should be reasonably bwd compatible with code
    generated from older compilers.
    So my recommendation is: don't use SPRO_DBX_PATH and
    give the old compilers a try.

  • Trouble viewing disassembly with Sun Studio 11

    I was wondering how someone can bring up a window with a program�s disassembly when debugging a C program with Sun Studio 11. (SPARC). I would like to be able to set breakpoints at specific assembly instructions using Sun Studios�s GUI interface rather than using typed commands with DBX. I would also like to know how to get a window that shows the current value of the registers. Any help would be greatly appreciated.
    Chris

    Oops, it appears that you can't set breakpoints
    through Disassembler window, it just shows the code
    and current position within the code, that's all.It
    gives you better view of context than dbx's 'dis' or
    'list -i' commands, though.Actually you can set breakpoints through Disassembler window:
    - select an address, click right mouse button to open context menu
    - choose "Set Breakpoint"
    If you need this feature, please file an RFE (Request
    For Enhancement) through bugs.sun.comThe Disassembler window has been significantly improved between
    EA1 and FCS. Now users can set and delete breakpoints using the
    same way as they do in source file - click on the left gray area (toggle
    breakpoints). Also Disassembler window has "Step Into", "Step Over",
    "Step Out" and "Run To Cursor" buttons.
    Thanks,
    Nik

  • After the last update is no longer contact to the internet or to whatsapp? What can I do with my iphone 5?

    After the last update is no longer contact to the internet or to whatsapp? What can I do with my iphone 5?

    No internet access when connected to an available wi-fi network and the same when connected to your carrier's cellular network, or when connected to your carrier's cellular network only?
    Any error message provided?

  • I recently upgrade to an iPAD Air. I gave my old iPAD (1st gen) to my wife.  I restored it to original factory conditions.  Now we cannot install iBook on it since it requires iOS 7.  What can we do with older iPADS that are still 100% functional.

    I recently upgrade to an iPAD Air. I gave my old iPAD (1st gen) to my wife.  I restored it to original factory conditions.  Now we cannot install iBook on it since it requires iOS 7.  What can we do with older iPADS that are still 100% functional except for the fact that you cannot updrade the iOS above version 5?

    Look at this similar problem in getting Netflix on an iPad 1. Same technique should work for you.
    https://discussions.apple.com/thread/5753106?tstart=30
     Cheers, Tom

  • What can be wrong with my iPhone 4?  There is no sound from incoming calls, SMS and even when I play music.  I already checked that it's not muted, volume is high and not set to "vibrate mode."

    What can be wrong with my iPhone 4s.  There is no sound from incoming calls and SMS even when I try to play music.
    I already checked that it is not muted, volume is high and not in " vibrate mode."

    What can be wrong with my iPhone 4s.  There is no sound from incoming calls and SMS even when I try to play music.
    I already checked that it is not muted, volume is high and not in " vibrate mode."

  • HT204406 what can I do with an error code -50 network reset message?

    what can I do with an error code -50 network reset message?

    Hi ddelacruz,
    Thanks for using Apple Support Communities.  This article has some information on error (-50):
    iTunes Store: "Error (-50)" when downloading purchased content
    http://support.apple.com/kb/ts1583
    Cheers,
    - Ari

  • Curve drenched and doesn't work - what can i do with it now?

    i went swimming with my curve in my pocket, and needless to say, it's now dead.  what can i do with it? send it somewhere for refurb? and no i didn't have insurance, so please don't rub it in!
    Solved!
    Go to Solution.

    11 times out of 10, water damaged is not covered under warranty.
    I'm very sorry for your loss.
    Hope you manage to get the moisture out, you can pull teh device apart and shave off the rust and corrosion you see buy purchasing a mobile repair kit, however rust spreads in a matter of months..
    If your issue is resolved, put a checkmark in the green box that contains the resolution.
    OR
    If it was just/or also really helpful - Give it a Kudos.. Go on Mate.. Help the rest of the clueless blackberry user world find their answer too..
    ~Gday from Down Under~

  • My iphone 5 suddenly has a white blank screen,  no liquid contact or history of fall, what can i do with this problem?

    my iphone 5 suddenly has a white blank screen,  no liquid contact or history of fall, what can i do with this problem?

    Hey there Galileo,
    It sounds like your iPhone screen is solid white and you cannot do anything with it. Take a look at these steps from the following article about that kind of issue:
    Get help with the screen on your iPhone, iPad, or iPod touch
    If you see a solid color screen (black, white or blue)
    Plug in your device to a power source. If you see the low-battery screen when you plug in, let your device charge for at least 10 minutes (20 minutes for iPad) before using it.
    Reset your device while it's plugged in.
    If resetting doesn’t fix the issue, restore your device.
    If you still see the issue after you restore, contact Apple Support.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Please help me!!!!!!! what can I do with the message " no service " I have already updated for 5.0.1 (9A406) and nothing happened. Please Help me!!!!! I´m thinking to came back to my nokia. It´s work at least!!!!

    Please help me!!!!!!! what can I do with the message " no service " I have already updated for 5.0.1 (9A406) and nothing happened. Please Help me!!!!! I´m thinking to came back to my nokia. It´s work at least!!!!

    Please DO go back to your Nokia.  I'm sure people on their support forums will love your whining and idle threats just as much as we do.

  • What can I do with Creative Cloud and Photoshop ELEMENTS besides backup my photos?

    What can I do with Creative Cloud and Photoshop ELEMENTS besides backup my photos?

    Umm, seriously? No offense, but what you are saying is basically "I just bought a Mercedes, but don't know how to drive." You can plenty of info what each program in Creative Cloud does by just typing the respective words into a web search...
    Mylenium

Maybe you are looking for