How to Sun Repositories

I have been reading for two days, google, pdf, forums and I still have no idea how to list the repositories for solaris 10. I would also like to see what is offered in the repositories. For instance is jdk-1.6.* offered in the repositories? I do know that the main one is SUNW?. I have other work to do so I need as much help as someone is willing to give
Thank you so much

larka06 wrote:
I have been reading for two days, google, pdf, forums and I still have no idea how to list the repositories for solaris 10. This one is real easy. There no repositories for Solaris 10. If you use OpenSolaris then you can use repositories to get additional software for the OS by using the pkg command.
For Solaris 10 there are additional places to get software but you use the pkgadd command instead. Blastwave, Sunfreeware, the Companion CD, or websites such as OpenOffice or java.sun.com can provide software in package format for you.
alan

Similar Messages

  • How does Sun make money from Java? Silly question.

    Hi,
    From what I have read about the J2SE licensing, we are able to download the SDK and develope commercial applications with it for free.
    Have I made a big mistake in my reading? How does Sun make any money from Java?
    Thanks very much.
    Prem.

    related topic
    a lot of companies package a free or trial version of software like
    Rational Rose
    TextPad
    VisualAgeForJava
    DreamWeaver
    etc.....
    the versions may be limited in many ways
    they want public and students to use it to become popular
    students get jobs and convince boss to buy enterprise edition
    they make money
    I didn't mention sun in the above list cause they are special!!!!!
    some other interesting topics include GNU liscence and
    COPYLEFT
    check it out

  • How do Sun Convergence Communicate with LDAP?

    Please tell how do sun convergence communicate with LDAP server.what api do these calls use.and where do we can find it.
    Looked at the login page,it is was calling iwc.protocol.iwcp.LOGIN_URL variable.
    login_url was assign as below:
    iwc.protocol.iwcp.LOGIN_URL = iwc.config.session.contextPath + "/svc/iwcp/login.iwc";
    please let us know what is iwcp ?
    And what is contextPath its refering?
    Also please let us know what kind of frame work does convergence uses to communicate with LDAP.
    If possible,advice some documentation to read about this function.
    thanks in advance
    Edited by: testxtest on Jul 14, 2009 12:50 PM

    testxtest wrote:
    Please tell how do sun convergence communicate with LDAP server.Convergence uses the standard LDAP protocol to access data from the LDAP servers.
    what api do these calls use.and where do we can find it.The LDAP protocol technical specifications are defined here:
    http://tools.ietf.org/html/rfc4510
    Looked at the login page,it is was calling iwc.protocol.iwcp.LOGIN_URL variable.
    login_url was assign as below:
    iwc.protocol.iwcp.LOGIN_URL = iwc.config.session.contextPath + "/svc/iwcp/login.iwc";
    please let us know what is iwcp ?What is it you are trying to achieve?
    And what is contextPath its refering?The "contextPath" is the Convergence server URL base for the current session e.g. http://server.aus.sun.com/iwc
    Also please let us know what kind of frame work does convergence uses to communicate with LDAP.The Convergence server uses java ldap-pool libraries.
    If possible,advice some documentation to read about this function.Once again, what is it you are trying to achieve, and most importantly, why?
    Regards,
    Shane.

  • How the Sun Java Forums Work (Briefly)

    I am wondering if anyone could give me a brief overview of how the Java sun forums work -- esp. when someone creates a new thread.
    How exactly does the JSP know to link to that thread? Is it generating a unique ID from the database or using it's own custom code? How does it point to that thread? (I'm SO FRUSTRATED. I've tried to figure this one out for about a MONTH.)
    I've started to create a help desk, where it takes form data and posts it to the database. (That issue solved.) The database assigns it a unique ID -- primary key. I'm having trouble displaying the problem record for that ticket ID. (I'm new to Java and really been pulling my hair over this one for about a month.)
    Let me go into some more detail:
    I have these form objects:
    - Name
    - Technical Summary
    - Severity
    - Problem
    This is a standard html form page. The standard html page posts to a JSP page, where the JSP page uses a prepared statement to insert the form data into the database. The query page, (query.jsp) has a table, which only shows TicketID, Name, Technical Summary, and Severity. Obviously, the TicketID is an int and generated by the DB, as 1, 2, 3, 4, and so on...
    So if someone created an issue it'd be assigned a unique ticket id. Note that from the query page, it DOES not show the problem. I WANT there to be a link to get the problem record in that row.
    If anyone could help me out with this one, that would be great.

    Below is the CORE JSP Query Code. Obviously, I did NOT post the HTML b/c that would look **REALLY** weird. Any help on resolving my problem, would relly be helpful! Please hep! :)
    <%@ page import="java.sql.*"%>
    <%
    String first_name = user.getFirstName();
    String last_name = user.getLastName();
    %>
    <%
    String userid = user.getUserId();
    %>
    <%
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;
    try {
    Class.forName ("com.mysql.jdbc.Driver");
    conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/helpdesk", "root", "password" );
    stmt = conn.createStatement ();
    rs = stmt.executeQuery ("SELECT * FROM history WHERE userid = '"+userid+"' ");
    %>
    <% while( rs.next() ){%>
    <%
    int ticketid = rs.getInt("ticketid");
    String technical_subject = rs.getString("technical_subject");
    session.setAttribute("technical_subject", technical_subject);
    %>
    <TR>
    <TD width="76" align="center">
                   <font face="Arial" style="font-size: 8pt"> <%out.println(ticketid);%> </font></TD>
                   <TD align="center" width="131">
                   <font face="Arial" style="font-size: 8pt"> <%=rs.getString("severity")%> </font></TD>
                   <TD align="center">
                   <font face="Arial" style="font-size: 8pt"> <%=rs.getString("issue_type")%> </font></TD>
                   <TD align="center">
                   <font face="Arial" style="font-size: 8pt"> <%out.println(technical_subject);%> </font></TD>
                   <TD align="center">
                   <font face="Arial" style="font-size: 8pt; font-weight: 700">View
                   Complete Issue</font></TD>
    </TR>
    <%}%>
    </TABLE>
    </BODY>
    </HTML>
    <%
    }catch
         (Exception e){
    out.println("There was an exception. Stack trace will be printed to the error log.");
    e.printStackTrace();
    System.out.println ("A fatal exception occured when fetching the database results. See the stack trace error for more information. Verify you are requesteting the correct data type");
    }finally{
    //this is important. You should close all three to free up resources. Always. In a finally block.
    rs.close();
    stmt.close();
    conn.close();
    %>

  • 2 way SSL: How does Sun implement handling malformed certificate requests?

    Hi
    I'd like to know how sun implements the following 2 way ssl-scenario:
    When an SSL server requests client authentication, it sends a message
    to the client that says "here is a list of the names of CAs that I trust
    to issue client certs. If you have a client cert from one of these
    CAs, then send it to me". That list is NEVER supposed to be empty.
    But the hint above suggests that it is. If your server has not been
    configured with the names of CAs that it trusts to issue client certs,
    it's sending an empty list.
    When an SSL client receives such a malformed request, with an empty
    list of trusted client CA names, it may either (a) choose to send
    back a response that means "I have no cert issued by any of the
    issuers you have named", ***or (b) send back any certificate you have***
    ***and hope the misconfigured server will accept it.***
    Please advice? What is the switch to tell the client to send any certificate?
    Thanks a lot
    Christian

    That list is NEVER supposed to be empty.It doesn't actually say that anywhere in the RFC.
    When an SSL client receives such a malformed request, with an empty
    list of trusted client CA names, it may either (a) choose to send
    back a response that means "I have no cert issued by any of the
    issuers you have named", ***or (b) send back any certificate you have***
    ***and hope the misconfigured server will accept it.***That's not how I read the RFC. I would say the client should decide there is no suitable certificate available, and send back an empty ClientCertificate message. That in turn may provoke the server into sending a fatal handshake failure alert.
    What is the switch to tell the client to send any certificate?There is no such switch.
    More to the point, why is the server's CA list empty? That must mean that it has an empty truststore. That's the problem you should fix.

  • How does sun cc support GNU C?

    I fail to build theora on solaris_x86, it seems some it does not support GNU C style.
    $cc -V
    cc: Sun C 5.8 Patch 121016-02 2006/03/31
    usage: cc [ options] files. Use 'cc -flags' for details
    How can I deal with this situation,
    - Waiting for new complier
    - Write patch for theora(Do not know how to, any idea?)
    Sample code are:
    static const __attribute__ ((aligned(8),used)) ogg_int64_t V128 = 0x0080008000800080LL;
    __asm__ __volatile__ (
    " .balign 16 \n\t"
    " pxor %%mm7, %%mm7 \n\t"
    ".rept 8 \n\t"
    " movq (%0), %%mm0 \n\t" /* mm0 = FiltPtr */
    " movq (%1), %%mm1 \n\t" /* mm1 = ReconPtr */
    " movq %%mm0, %%mm2 \n\t" /* dup to prepare for up conversion */
    " movq %%mm1, %%mm3 \n\t" /* dup to prepare for up conversion */
    /* convert from UINT8 to INT16 */
    " punpcklbw %%mm7, %%mm0 \n\t" /* mm0 = INT16(FiltPtr) */
    " punpcklbw %%mm7, %%mm1 \n\t" /* mm1 = INT16(ReconPtr) */
    " punpckhbw %%mm7, %%mm2 \n\t" /* mm2 = INT16(FiltPtr) */
    " punpckhbw %%mm7, %%mm3 \n\t" /* mm3 = INT16(ReconPtr) */
    /* start calculation */
    " psubw %%mm1, %%mm0 \n\t" /* mm0 = FiltPtr - ReconPtr */
    " psubw %%mm3, %%mm2 \n\t" /* mm2 = FiltPtr - ReconPtr */
    " movq %%mm0, (%2) \n\t" /* write answer out */
    " movq %%mm2, 8(%2) \n\t" /* write answer out */
    /* Increment pointers */
    " add $16, %2 \n\t"
    " add %3, %0 \n\t"
    " add %4, %1 \n\t"
    ".endr \n\t"
    : "+r" (FiltPtr),
    "+r" (ReconPtr),
    "+r" (DctInputPtr)
    : "m" (PixelsPerLine),
    "m" (ReconPixelsPerLine)
    : "memory"
    );

    For
    static const __attribute__ ((aligned(8),used)) ogg_int64_t V128 = 0x0080008000800080LL;
    Put
    #if !defined(__GNUC__)
    #define __attribute__(X) /* nothing */
    #endif /* __GNUC__)
    For the assembler, you'll either have to extract it to a separate assmbly file and assemble it with as (or gas), or else port it to C.
    Paul

  • How to migrate Repositories.

    I do have installed MDM 5.5 SP04 and Oracle 10g on the same machine and made all the repositories on the server.
    Now i need to create a new server and i need to transfer all the repositories which were made on the earlier server onto the new one.
    Actually the problem is our old server has crashed and now v r not able to open any of the MDM components not even console manager coz the server has stopped and it is not running and v need to migrate all the old repositories.
    And v haven't archived the old repositories.
    Is it possible to migrate all the repositories to the new server.If so please lemme know.
    Please help......

    hi Tejas,
    have  a look at this doc
    How to Transport Master Data Management (MDM) Objects Between MDM 5.5 Systems  
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20751e78-f81f-2a10-228f-eb3a16421b4d
    is this what you're looking for ?
    Regards,
    michal

  • How to delete repositories??

    how can i entirely delete the master and work repository?? will it affect anything??

    Hi
    You can go to topology Manager and delete the repositories
    Again you need to login to the RDBMS on which the master and work repositories have been created.
    You need to delete all the tables inside the schemas in which those have been created.
    All the metadata for master and work repositories lies in those schemas.
    please refer for deleting work repositories
    http://docs.oracle.com/cd/E14571_01/integrate.1111/e12643/admin_reps.htm#BABEEHDD
    Again when you are going to recreate please follow below link
    http://odiexperts.com/creating-master-and-work-repository
    Thanks

  • How implemented Sun debugging?

    Hi folks,
    does anyone know how Sun implements debugging capabilities for their current Java Virtual Machines? I am just wondering if they use the Java Virtual Machine Tool Interface (JVMTI) or if they have other ways to inspect / control programs?
    Cheers, riejo

    There is an ASCII-art diagram of the debugging stack on this page:
    http://java.sun.com/j2se/1.5.0/docs/guide/jpda/architecture.html
    Hope this helps.

  • How-To Sun JES 5 on Solaris 10 -Zones

    Hi Experts,
    I am in a process of installing JES 5 on Soalris 10 ( T2000 server with Global and non-global Zones).I ahve installed the below components in various zones :
    Shared components -- Gloabl zone
    Directory Server --Zone 1
    Access Manager over web server-- Zone 2
    Now, where should i install portal server provided that i want a Applicaiton server also.
    Please put some light on this .
    thanks
    Lokesh

    Hi ,
    Many thanks for the reply.
    Basically I want to go with the choice of having PS over Application Sever in a New Zone.
    I tried Installing Application server and Portal server in a new Zone,while installing I provided the values for the already Installed Directory Server and Access Manager (which are on diff zones).
    The Installation of Portal server was successfull but config failed.I looked into the /var/opt/SUNWportal/logs/config/portal.fabric.0.0.log and found the below error
    [#|2007-10-31T14:17:49.638+0000|SEVERE|SJS Portal Server|debug.com.sun.portal.fabric.config|ThreadID=10; ClassName=com.sun.portal.fabric.config.ValidatePortalInputData; MethodName=validateAMSDK; |PSFB_CSPFC0056:Error while validating the SSO Token.
    com.iplanet.sso.SSOException: Error occurred while creating SSOToken.
    at com.sun.portal.util.SSOUtil.createSSOToken(Unknown Source)
    at com.sun.portal.fabric.config.ValidatePortalInputData.validateAMSDK(Unknown Source)
    at com.sun.portal.fabric.config.ValidatePortalInputData.<init>(Unknown Source)
    at com.sun.portal.fabric.config.ConfigurePortal.main(Unknown Source)
    Since the Access Manager and Portal server are on different web containers ( Webserver and Portal Server respectively) , I suppose the above errors are related to those.
    Please let me know -
    1) Is the deploymen architecture Correct?
    2) What can be done to solve the above problem.
    Thanks for your time on this post.
    Rgds
    Lokesh

  • How install sun studio 12??

    hi humans! :] i`m looking for one guide for install sun studio in ubuntu but wen i try to install it hi tell`s me that i have`n a root for install and describes the root and no works ?!

    This guide is very short:
    1. Download tarfile installer of Sun Studio Express (Sun Studio 12 does not work on Ubuntu) from http://developers.sun.com/sunstudio/downloads/express/index.jsp
    2. cd to directory where you want it installed and run
    sh sunstudio-Express...(the file you downloaded).

  • How is Sun Java & IBM XML Certifications helpful

    Sun Java Certifications
    http://educational-world.blogspot.com/2007/06/sun-java-certifications.html
    IBM � XML Certification
    http://educational-world.blogspot.com/2007/10/ibm-certified-solution-developer-xml-11.html

    Sun Java Certifications
    http://educational-world.blogspot.com/2007/06/sun-java-certifications.html
    IBM � XML Certification
    http://educational-world.blogspot.com/2007/10/ibm-certified-solution-developer-xml-11.html

  • How to sun all calendars from iPad to iMac to iCloud?

    Ever since I upgraded to the Maveric operating system for my imac, I've having trouble syning all icals from iphones to ipads to imac.  A lot of times, events entered through the imac just won't syn up with my iphone nor ipad.  Is anyone elese experiencing this problem?  Does anyone have any solution to this problem?  By the way, I don't save the most important information on iCloud, but devices can be updated through Wifi at home only.  Got hacked too many times through public wifis.

    Almost same problem. My iphone will sync to iCal on mac but if I add something in my iCal on my mac it won't sync with my iphone. It used to work...

  • How to install Solaris 10 on sun ultra enterprise 450

    I just got a used sun ultra enterprise 450 and need to get a username and password. If I cannot get easily how do I reinstall the OS. What OS can I put on its? I am new to some equipment. It also came with a a storage unit for extra hard drives and how would I use it and set it up also?
    It now says type ctrl-d. What do I do?
    http://www.unix.com/sun-solaris/114206-how-get-root-password-how-install-sun-os.html
    http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-install-solaris-10-on-sun-ultra-enterprise-450-739614/

    This same question was cross-posted to another forum site
    [http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-install-solaris-10-on-sun-ultra-enterprise-450-739614/|http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-install-solaris-10-on-sun-ultra-enterprise-450-739614/]
    with the same unintelligible drivel.
    O.P.
    Go to Docs.Sun.Com and get the system's documentation. Also go get the OBP 3.x Command Reference manual while you are there. All you questions are answered in that documentation, except for those that are easily found with Google.
    [Example of a Google search for your question.|http://www.google.com/#hl=en&q=solaris+root+password&aq=f&oq=&aqi=g9&fp=KxYPMM6r3XA]

  • Implement Sun VDI in Sun ray 150, how???

    Hi
    I want implement Sun VDI software in my sun ray 150, but not find anything document about the implemetation,
    my questions are:
    Where is the implement, in sun ray 150, in server, where???
    how implement sun vdi???
    Where I find documents about implement sun vdi?
    thanks

    here is the documentation
    http://wiki.sun-rays.org/index.php/VDA_Cookbook
    //Lars

Maybe you are looking for

  • Error while opening query

    Hi When i am trying to open query I can able to see the the query when I click on Change it is giving error message. "Inconsistency in loading. Please check use of deleted objects" When I try to execute that query it is giving error and disconnecting

  • Automatic batch creation at VL01N

    Hi, At the time of creating Outbound delivery in Tcode VL01N for particular material  I want the batch field to take the batch number automatically. Setting : Material ( Batch option is already checked in material master). Is it possible. Pl explain.

  • 2008 Mac Pro and Apple Cinema Display 27"

    Is there some sort of adapter that would allow me to plug the new Apple Cinema Display 27" with a 2008 Mac Pro? Or what change would I have to make to be able to work this out?

  • Problem with brand new Imac, please help

    I was suggested that it would be best for me to post this topic here in this forum. Hi I am new to Mac, I had just gotten my 17" imac isight last week, for the most part i am very happy with it. But last night I was having some troubles with it. I ha

  • ICR Process 002  File Upload Error

    Hello,           I am uploading items for Process 002 via a file. The system is, unlike process 003, not checking for existing documents but treating all records as new data. Hence i now have multiple duplicate records. Does anyone know where the pro