IFS Development Kit for v1.1

In the IFS download area, IFS 1.0.8 has a development kit listed, but v1.1 does not.
Does anyone know when the development kit for 1.1 will be available?
null

The Devkit was rolled into the product with release 1.1

Similar Messages

  • Attn: Installing the Sample Applications from the ifs Development Kit

    There are a number of problems with the sample Applications included in the
    Developer's kit. These need to manually fixed in order to get the demos to work.
    #1: Solaris Only
    The install of the iFS Development Kit, replaces the existing adk.jar with a new
    one containing some additional classes. Unfortunately the install process does not
    set the correct privileges on the new version of adk.jar. Please ensure that the
    file $ORACLE_HOME/ifs/lib/adk.jar is world readable.
    Bug # 1304730
    This issue will be resolved on the next drop of the Oracle Internet File System
    development kit.
    #2: Generic
    There is a problem with the way in which the login.jsp establishes a connection to
    the repository. The current code makes incorrect assumptions about the name of the
    iFS Service and the schema password.
    The following changes are required.
    In order to connect to the repository 4 pieces of information are required.
    1. The iFS User Name
    2. The iFS User's password
    3. The properties file to be used
    4. The database password of the user who owns the iFS Schema
    The Login.jsp needs to be altered so that it requests these four arguments before
    attempting to establish a connection to the repository.
    (The current version only requests username and password).
    All four arguments need to be provided as arguments to the login method on the
    underlying JavaBean that the JSP invokes when it want to open a connection
    to the repository.
    ***************** HERE IS THE REVISED CODE FOR INSURANCE APPLICATIONS ************
    ********************************** LOGIN.JSP *************************************
    <%@ page import = "ifsdevkit.sampleapps.insurance.InsuranceLogin" %>
    <%@ page import = "oracle.ifs.adk.security.IfsHttpLogin" %>
    <html><head>
    <jsp:useBean id="inslogin" scope="session" class="ifsdevkit.sampleapps.insurance.InsuranceLogin" />
    <jsp:setProperty name="inslogin" property="*"/>
    <%
    String REDIRECT_PATH = "/public/examples/insuranceApp/claims";
    boolean loggedIn = false;
    if (inslogin.getSession() != null && inslogin.getResolver() != null)
    // Use existing insurance login
    loggedIn = true;
    else
    // No existing insurance login
    IfsHttpLogin login = (IfsHttpLogin) request.getSession(true).getValue("IfsHttpLogin");
    if (login != null && login.getSession() != null && login.getResolver() != null)
    // Use existing IfsHttpLogin login
    inslogin.init(login.getSession(), login.getResolver());
    loggedIn = true;
    if (!loggedIn)
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    String serviceName = request.getParameter("serviceName");
    String schemaPassword = request.getParameter("schemaPassword");
    if (username != null && password != null &&
    !username.trim().equals("") && !password.trim().equals(""))
    // Login using username/password
    try
    if (serviceName == null &#0124; &#0124; serviceName.trim().equals(""))
    serviceName = "IfsDefault";
    inslogin.init(username, password, serviceName, schemaPassword);
    request.getSession(true).putValue("IfsHttpLogin", inslogin);
    loggedIn = true;
    catch (Exception e)
    %>
    <SCRIPT LANGUAGE="JavaScript1.2">
    alert("The username or Password was not valid, please try again.");
    </SCRIPT>
    <%
    if (loggedIn)
    // Redirect to the directory where the claim files reside
    response.sendRedirect(REDIRECT_PATH);
    else
    %>
    <title>Insurance Demo App Login</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF">
    <form METHOD=POST NAME="loginform" ACTION="login.jsp">
    <table>
    <tr>
    <td><b>Username:</b></td>
    <td><input type="text" name="username" value=""></td>
    </tr>
    <tr>
    <td><b>Password:</b></td>
    <td><input type="password" name="password" value=""></td>
    & lt;/tr>
    <tr>
    <td><b>Service Name:</b></td>
    <td><input type="text" name="serviceName" value="IfsDefault"></td>
    </tr>
    <tr>
    <td><b>Schema Password:</b></td>
    <td><input type="password" name="schemaPassword" value=""></td>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td>
    <input type="submit" value="Log in">
    </td>
    <td>
    <input type="reset" value="Reset">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    <% } %>
    *************************** END INSURANCE LOGIN.JSP ******************************
    This code has been changed so that it requests the four agruments that are required
    to connect to the repository and passes them to the login method on the underlying
    bean. Note that we have provided the complete source code to this file in order to
    make it simple to deploy the revised version of the code. Simply cut and paste this
    code into a new file called login.jsp. Copy the File into the iFS
    repository folder /ifs/jsp-bin/ifsdevkit/sampleapps/insurance.
    ****************************** INSURANCELOGIN.JAVA *******************************
    package ifsdevkit.sampleapps.insurance;
    * Copyright (c) 2000 Oracle Corporation. All rights reserved.
    import java.util.Locale;
    import javax.servlet.http.HttpSessionBindingEvent;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.beans.FolderPathResolver;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.adk.security.IfsHttpLogin;
    * The login bean for the Insurance demo app.
    * <p>
    * This class provide the login info. The class implements the
    * <code>IfsHttpLogin</code> interface so it can share login data with other
    * login beans.
    * @author Edward Yu
    * @version 1.0
    * @see IfsHttpLogin
    public class InsuranceLogin implements IfsHttpLogin
    * The <code>LibrarySession</code>.
    private LibrarySession m_session;
    * The <code>FolderPathResolver</code>.
    private FolderPathResolver m_resolver;
    * Default constructor required by the jsp spec for the USEBEAN tag
    * @exception IfsException
    public InsuranceLogin()
    throws IfsException
    * Make a connection to iFS
    * @param username The username to be used for login.
    * @param password The password to be used for login.
    * @param serviceName The service name to be used for login.
    * @param schemaPassword The schema password to be used for login.
    * @exception IfsException if operation failed.
    public void init(String username, String password, String serviceName,
    String schemaPassword)
    throws IfsException
    LibraryService service = new LibraryService();
    CleartextCredential me = new CleartextCredential(username, password);
    ConnectOptions connection = new ConnectOptions();
    connection.setLocale(Locale.getDefault());
    connection.setServiceName(serviceName);
    connection.setServicePassword(schemaPassword);
    m_session = service.connect(me, connection);
    m_resolver = new FolderPathResolver(m_session);
    m_resolver.setRootFolder();
    DirectoryUser user = m_session.getDirectoryUser();
    if (user.isAdminEnabled())
    m_session.setAdministrationMode(true);
    * Initialize the login bean.
    * <p>
    * The default constructor does not set the necessary fields so it needs
    * to be set instantiation.
    * @param session The <code>LibrarySession</code> object.
    * @param resolver The <code>FolderPathResolver</code> object.
    public void init(LibrarySession session, FolderPathResolver resolver)
    m_session = session;
    m_resolver = resolver;
    * Return the login's session object.
    * @return The <code>LibrarySession</code> object.
    public LibrarySession getSession()
    return m_session;
    * Return the login's path resolver.
    * @return The <code>FolderPathResolver</code> object.
    public FolderPathResolver getResolver()
    return m_resolver;
    * Called when this object is bound to the HTTP session object.
    * @param event The event when the object is bound to the Http session.
    public void valueBound(HttpSessionBindingEvent event)
    // do nothing
    * Called when this object is unbound from the HTTP session object.
    * @param event The event when the object is unbound to the Http session.
    public void valueUnbound(HttpSessionBindingEvent event)
    m_resolver = null;
    try
    if (m_session != null)
    m_session.disconnect();
    catch (IfsException e)
    e.printStackTrace();
    finally
    m_session = null; // release the resources
    *****************************END INSURANCELOGIN.JAVA ******************************
    This code has been changed so that it accepts the four agruments that are required
    to connect to the repository and uses them to connect to the repository. Note that
    we have provided the complete source code to this file in order to make it simple
    to deploy the revised version of the code. Simply cut and paste this
    code into a new file called. Save the file on the native file system
    in a file called InsuranceLogin.java in the directory
    $ORACLE_HOME/ifs/ifsdevkit/sampleapps/insurance/
    *************** HERE IS THE REVISED CODE FOR WEB COMMAND APPLICATIONS ************
    ********************************** LOGIN.JSP *************************************
    <%@ page import = "ifsdevkit.sampleapps.webcommandapp.WebCommandLogin" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta name="Author" content="Patricia Li">
    <title>Login</title>
    </head>
    <jsp:useBean id="wclogin" scope="session" class="ifsdevkit.sampleapps.webcommandapp.WebCommandLogin" />
    <jsp:setProperty name="wclogin" property="*"/>
    <%
    String REDIRECT_PATH = "/ifs/ifsdevkit/sampleapps/WebCommandApp/html/main.html";
    boolean loggedIn = false;
    if (wclogin.getSession() != null)
    // Use existing WebCommand login
    loggedIn = true;
    else
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    String serviceName = request.getParameter("serviceName" );
    String schemaPassword = request.getParameter("schemaPassword");
    if (username != null && password != null)
    // Login to iFS
    try
    wclogin.init(username, password, serviceName, schemaPassword);
    request.getSession(true).putValue("IfsHttpLogin", wclogin);
    loggedIn = true;
    catch (Exception e)
    %>
    <SCRIPT LANGUAGE="JavaScript1.2">
    alert("The credentials are not valid; please try again.");
    </SCRIPT>
    <%
    if (loggedIn == true)
    // Go to main page...
    response.sendRedirect(REDIRECT_PATH);
    else
    %>
    <title>Web Command App Login</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF">
    <h2>WebCommand Application Login</h2>
    <form METHOD=POST NAME="loginform" ACTION="login.jsp">
    <table>
    <tr>
    <td><b>Username:</b></td>
    <td><input type="text" name="username" value=""></td>
    </tr>
    <tr>
    <td><b>Password:</b></td>
    <td><input type="password" name="password" value=""></td>
    </tr>
    <tr>
    <td><b>Service Name:</b></td>
    <td><input type="text" name="serviceName" value="IfsDefault"></td>
    </tr>
    <tr>
    <td><b>Schema Password:</b></td>
    <td& gt;<input type="password" name="schemaPassword" value=""></td>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td>
    <input type="submit" value="Log in">
    </td>
    <td>
    <input type="reset" value="Reset">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    <% } %>
    ************************* END WEB COMMAND LOGIN.JSP ******************************
    This code has been changed so that it requests the four agruments that are required
    to connect to the repository and passes them to the login method on the underlying
    bean. Note that we have provided the complete source code to this file in order to
    make it simple to deploy the revised version of the code. Simply cut and paste this
    code into a new file called login.jsp. Copy the File into the iFS repository folder
    /ifs/jsp-bin/ifsdevkit/sampleapps/WebCommandApp
    ****************************WEBCOMMANDLOGIN.JAVA**********************************
    package ifsdevkit.sampleapps.webcommandapp;
    import java.util.Locale;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.beans.FolderPathResolver;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import oracle.ifs.adk.filesystem.IfsFileSystem;
    import oracle.ifs.adk.security.IfsHttpLogin;
    import javax.servlet.http.HttpSessionBindingEvent;
    * WebCommand application that illustrates the usage of the
    * File System API.
    * @version 1.0
    * @pub
    public class WebCommandLogin implements IfsHttpLogin
    private LibrarySession m_session; // Session
    private FolderPathResolver m_resolver; // Resolver
    private IfsFileSystem m_ifs; // File System object
    * Default constructor required by the jsp spec for the USEBEAN tag
    public WebCommandLogin()
    throws IfsException
    * Make a connection to iFS
    * @pub
    public void init(String username, String password, String serviceName,
    String schemaPassword)
    throws IfsException
    LibraryService service = new LibraryService();
    CleartextCredential cred = new CleartextCredential(username, password);
    ConnectOptions options = new ConnectOptions();
    options.setLocale(Locale.getDefault());
    options.setServiceName(serviceName);
    options.setServicePassword(schemaPassword);
    m_session = service.connect(cred, options);
    m_resolver = new FolderPathResolver(m_session);
    m_resolver.setRootFolder();
    m_ifs = new IfsFileSystem(m_session);
    DirectoryUser user = (DirectoryUser) m_session.getDirectoryUser();
    if (user.isAdminEnabled())
    m_session.setAdministrationMode(true);
    * Use the existing connection.
    * The default constructor does not set the necessary fields.
    * @pub
    public void init(LibrarySession session, FolderPathResolver resolver)
    throws IfsException
    m_session = session;
    m_resolver = resolver;
    m_ifs = new IfsFileSystem(m_session);
    * Return the login's session
    * @pub
    public LibrarySession getSession()
    return m_session;
    * Return the login's path resolver
    * @pub
    public FolderPathResolver getResolver()
    return m_resolver;
    * Return the IfsFileSystem API object
    * @pub
    public IfsFileSystem getIfsFileSystem()
    return m_ifs;
    * Implementation of valueBound
    * @pub
    public void valueBound(HttpSessionBindingEvent e)
    * Implementation of valueUnbound
    * @pub
    public void valueUnbound(HttpSessionBindingEvent e)
    try
    m_session.disconnect();
    catch (IfsException ie)
    ************************* END WEBCOMMANDLOGIN.JAVA *******************************
    This code has been changed so that it accepts the four agruments that are required
    to connect to the repository and uses them to connect to the repository. Note that
    we have provided the comple te source code to this file in order to make it simple
    to deploy the revised version of the code. Simply cut and paste this code into a
    new file called WebCommandLogin.java in the directory
    $ORACLE_HOME/ifs/ifsdevkit/sampleapps/webcommandapp/
    Compile the java class.
    Copy the classfile to $ORACLE_HOME/ifs/custom_classes/ifsdevkit/sampleapps/webcommandapp/
    Stop and Start all of the protocol servers.
    This issue will be resolved on the next drop of the Oracle Internet File System
    development kit.
    #3. Making the BaseRendererClass available to the Protocol Servers
    Note this step is not required if you have the 1.0.8.3 patch set installed.
    Install the BaseRenderer Class. The BaseRenderer class is delivered in the jar file
    ifsdevkit.jar and can be used to simplify the task of creating a custom renderer.
    Unfortunately the jar file containing this class is not referenced in any of the Classpaths
    used by the iFS protocol servers. This means that they will not be able to load any
    customer renderers that extend BaseRenderer. In order to make BaseRenderer available
    to the Protocol Servers it need to be placed in the appropriate directory under
    <ORACLE_HOME>/ifs/custom_classes.
    Extract the class from the ifsdevkit.jar.
    ifsdevkit.jar is located in <ORACLE_HOME>/ifs/lib after the devkit has been installed.
    jar -xvf ifsdevkit.jar
    extracted: META-INF/MANIFEST.MF
    extracted: BaseRenderer.class
    Create the following directory heirachy in <ORACLE_HOME>/ifs/custom classes
    oracle/ifs/server/renderers
    Copy <ORACLE_HOME>/ifs/lib/BaseRenderer.class to
    <ORACLE_HOME/ifs/custom_classes/oracle/ifs/server/renderers
    That should do it.
    Regards
    Mark D. Drake
    null

    Moving to Top

  • New release of the  Adobe Font Development Kit for OpenType

    A new release (v1.6.6148) of the Adobe Font Development Kit for OpenType has just been posted at:
    http://partners.adobe.com/asn/developer/type/otfdk/main.html
    This includes some minor changes in the feature file syntax, slightly better documentation for the MakeOTF tool, a complete installation procedure for Mac OSX 10.2.4, addition of the "Unicode and Glyph Names" documentation under the FDK license, and minor bug fixes.
    The most important change has to do with the handling of contextual substitution layout rules. MakeOTF now includes an option to create these either correctly, according to the OpenType specification v1.4, or in the older format used by InDesign v2.0 and earlier. This option is now tied to some additional logic, such that if you build a font to be compatible with InDesign v2.0 and earlier, some special text will appear in the name table named-id 5 "Version" . This text will serve as a marker that the font uses the InDesign v2.0 compatible format for these rules, and will consequently work with not only InDesign 2.0 and earlier, but also with any future programs that know to recognize the special text.. The special text was chosen in order to permit all known older OpenType fonts which have contextual substitution layout rules to keep working under future revisions of Adobe programs.
    This meant to be only a short-term solution. We do not anticipate that non-Adobe products will necessarily pick up this special case logic, and we do expect to revise the Adobe Type Library OpenType fonts to correct the rule format, once the next version of InDesign has been out for a few months
    The special case logic is documented in the FDK Release Notes, under build 5959. The special case is triggered when a font matches the following criteria:
    if (the name table name id (1,0,0,5) exists:
    if the name ID string matches the regular expression
    "OTF[^;]+;PS[^;]+;Core 1\.0\.[23][0-9].*":
    the font has In Design 2.0 format
    else if the e name ID string matches the regular expression
    "Core[^;]*;makeotf\.lib":
    the font has In Design 2.0 format
    else the font has the correct format.
    Example of string 1: "OTF 1.006;PS 1.004;Core 1.0.35"
    Example of string 2: "Core 1.0.38;makeotf.lib1.5.4898"
    Another example of string 2:"Core;makeotf.lib"
    Fonts built with FontLab by default have name id 5 strings in the format of example 1, although it is possible to change the value.

    I noticed two minor things with the windows version of MakeOTF.
    * If a fatal error occurs when using the GUI mode for compiling, the output zero sized binary otf is locked in the file system until you exit the application. This doesn't happen when using the command line interface since the application process always is terminated after each compilation.
    * When using the command line interface, or when executing MakeOTF from a script, the "parsing warnings" argument "+w" seems not to be piped to the compiler library after invoking MakeOTF. The "parsing warnings" argument works fine when calling a fpr project file from a script or when compiling in GUI mode.
    /mårten

  • Hardware Development Kits for Windows 10 Insider Preview are now available! (April 2015)

    Hardware Development Kits for Windows 10 Insider Preview are now available! (April 2015)
    Install the latest tools to build, test, and deploy drivers; test and measure your hardware running Windows; and customize, assess, and deploy Windows 10 on your hardware.
    Become a Windows Insider
    to get the latest Windows 10 Insider Preview.
    Then,
    get the tools:
    Visual Studio Community 2015 RC
    Windows SDK for Windows 10
    Windows Driver kit (WDK) 10
    Windows Hardware Lab Kit (HLK) RC for Windows 10
    Windows Assessment and Deployment kit (ADK) RC for Windows 10
    Known Issues
    We will update this thread with any known issues for this release.

    Hello ,
    May I know ,where is the HLK download link
    Is it likely HLKSetup.exe ??thanks
    Windows Hardware Lab Kit (HLK) Technical Preview

  • What is a portal development Kit for Java

    Hello I am a new learner of SAP Enterprise Portal. I want to know
    <b>What is a Portal Development Kit for Java?</b>

    Hi,
    Pls check the link below..
    https://www.sdn.sap.com/irj/sdn/developerareas/ep?rid=/webcontent/uuid/112df959-0d01-0010-b198-f93b05a62981
    Hope this helps.
    Regards,
    venkat.
    [Reward points for useful answers]

  • XML Developer Kits for HP/UX Platform

    Hi,
    I would like to know any release plan for the XML Parser / Developer Kits for HP/UX platform.
    Regards,
    Alan

    The HP-UX ports for our C/C++ Parser as well as our C++ Class Generator will be available in early January. Look for an announcement here.
    Oracle XML Team

  • Hardware Development Kits for Windows 10 Technical Preview now available!

    Install the latest tools to build, test, and deploy drivers; test and measure your hardware running Windows; and customize, assess, and deploy Windows 10 on your hardware.
     These tools are now available for Windows 10 Technical Preview:
    Visual Studio 2015 CTP 6
    Visual Studio Tools for Windows 10 Technical Preview
    Windows SDK for Windows 10 Technical Preview
    Windows Driver kit (WDK) 10 Technical Preview
    Windows Hardware Lab Kit (HLK) Technical Preview
    Windows Assessment and Deployment kit (ADK) Technical Preview
    Become a
    Windows Insider to get the latest Windows 10 technical preview and the latest hardware development kits and tools.
    Get
    the WDK samples from GitHub
    Check out the
    Windows Driver Framework source code. It’s now open source and available on GitHub!
    Known issues
    Be aware of these known issues (as of 3/23) in this release:
    Windows SDK
    After you install the Windows SDK, Windows 10 apps might not build successfully with
    Visual Studio 2015 Community Technology Preview (CTP) 6 due to a of a metadata problem. Although you should not install the Windows SDK if you are doing app development, you can use the following workaround to build an app
    successfully:
    Exit Visual Studio.
    Open a command prompt as administrator.
    Run the \Program Files (x86)\Windows Kits\10\bin\x86\GenerateUnionWinMD.cmd script. 
    Windows ADK
    When installing to Windows 7 PCs, run ADKSetup.exe in administrator mode.
    WDK
    Currently, WDM templates do not build
    Driver deployment to target PCs won’t work if the
    Display name used in the Device Configuration dialog is different than the
    Network host name. In this release, verify that these names are the same.
    Target creation of mobile devices causes Visual Studio to become non-responsive.

    Hello ,
    May I know ,where is the HLK download link
    Is it likely HLKSetup.exe ??thanks
    Windows Hardware Lab Kit (HLK) Technical Preview

  • Extension development kit for 10.1.3

    Hi,
    Is there any site that i can download the extension development kit other then using
    the JDev update.... because it quite slow and I cant continue my download if my line drop.... nice if i can download it thru a link or web site........
    Thanks

    You can get it from:
    http://download.oracle.com/otn/java/jdeveloper/1013ea/esdk1013.zip

  • Where can I get application development kit for iPad?

    Hi apple world,
    Where can I get application development tool for iPad?
    I am new apple user, and fascinated with iPad. Having computer science background at college, I am interested in developing simple game application to get started. Hopefully, I would like to put some games in app store in the future.
    My iTune is in windows XP, and it may be the platform for development.
    Regards,
    Hire

    Actually, it is free to register at http://developer.apple.com/programs/register/ as a developer and download the SDK. The $99 fee only applies if you want to install your Apps on a real iOS device (instead of the simulator) or submit them for distribution on the AppStore.

  • Bean Developer kit for jdk 1.5

    hi,
    what is the package used to develop beans which is compatible with
    jdk 1.5. BDK works only with jdk 1.1but not with higher versions. so which
    one works with 1.5.
    thanx

    FYI...I just attempted to migrate to the 1.5.0_03-b07 jre on a 64-bit em64t linux (RH 3.0).
    The index feature in the OHJ fails to refresh correctly. If you scroll, the contents become unreadable until you force a refresh (minimize, maximize, etc).
    Any suggestions? Anyone else seeing this behavior?
    Thanks,
    Rick

  • NI cRIO-9951 development kit

    Does anybody have the NI cRIO-9951 development kit for developing a custom cRIO Module? it's seem not even NI have any idea of the content of the kit. If you have that kit, can you tell me what's included in the cd? In the web site they talk about a software included. Is there any and if so what is that software is about.
    Thanks
    B.
    Benoit Séguin
    Software Designer

    Hi Benoit, 
    The CompactRIO I/O Module Development Kit ( cRIO 9951 ) enables third parties, such as system integrators, alliance members, and individual users, to create the custom CompactRIO modules necessary to complete their system. In general the kit includes a manual that provides current, voltage and other electrical/echanical specifications that are required by C Series modules.  In addtion it also includes documentation on how to enable software development of Module Communication drives with LabVIEW FPGA and several examples for some current shipping modules like the NI 9263.  The CD that comes with the kit includes this information.
    If your interested in talking about the cRIO MDK, defintiely get in contact with the Field Sales Engineer in your area as support for the cRIO 9951 is not through the Applications Engineers on NI Technical Support.  f you have general questions I can help out on this discussion forum, but for anything more specific please contact the area Engineer to get more assistance.
    Regards,
    Basset Hound
    Message Edited by Bassett Hound on 05-23-2008 01:29 PM
    Message Edited by Bassett Hound on 05-23-2008 01:34 PM

  • The Best Development Kit to make Mac programs

    Hello
    I am not new to Windows programming and i've made hounders of great applications but i've bought Mac a few days ago and already have learned the system itself and i am now trying to figure out how to make applications for Mac OS.. I have been programming in Delphi and Visual Basic - very great and powerful WYSIWYG development kit for windows...
    What programming languages can i make my apps with in Mac OS? And which one is more like Delphi or Visual Basic because i'm used to them (not the language but wysiwyg editor when you can simply drop the button on the form or text edit field It's very handy)...
    Thanks,
    Martin

    Hi Martin,
    Welcome to the Mac! Most Mac applications are written in Objective-C using the Xcode IDE and Interface Builder tool (also drag-and-drop wysiwyg-type tool). These tools are made by Apple and come on your Mac OS installation DVD or can be downloaded from the developer.apple.com website. I think you will find that developing in Objective-C is a little bit different than anything else you've encountered, but I'm sure you'll pick it up and eventually come to appreciate what a fantastic language/platform it is for software development. Another of the many reasons why Apple is a great company that (unlike the other reasons) only us developers know about.
    Good luck,
    DonotMan

  • Can I install Java Card Development Kit on Debian GNU\linux?

    if that can be posible, how can do it?
    Thanks. ;)

    Please help,
    I am new to Java.
    I want to develop java programs.
    I have Linux, (mandarake flavour) installed on my
    computer.
    I know that there are diffent linux flavors.
    I have to the development kit download at:
    http://java.sun.com/j2se/1.4/download.html
    the page has downloads for
    Windows (U.S. English only) N/A
    Windows (all languages, including English)
    Linux Red Hat shell script
    Linux GNUZIP Tar shell script
    SolarisTM SPARCTM 32-bit binary
    Solaris Intel tar.Z N/A
    Installation Instructions
    Does this mean that I cannot use java development kit
    for my Linux version?????
    If I can I guess with the download it will tell me how
    to do installation for Linux? (I know sometimes only
    provide installation for Linux)The JDK has been rename J2SE (ie J2SE is the development kit).

  • Java Software Development Kit (SDK) for Java 6 on Leopard.

    Does anyone know if the Java Software Development Kit (SDK) comes with Leopard, or if one needs to sign up for an Apple developer account to obtain it?
    I typed the following command on the Terminal command line: 
        javac
    The output of that command was:
    Usage: javac <options> <source files>
    where possible options include:
      -g                         Generate all debugging info
      -g:none                    Generate no debugging info
      -g:{lines,vars,source}     Generate only some debugging info
      -nowarn                    Generate no warnings
      -verbose                   Output messages about what the compiler is doing
      -deprecation               Output source locations where deprecated APIs are used
      -classpath <path>          Specify where to find user class files
      -cp <path>                 Specify where to find user class files
      -sourcepath <path>         Specify where to find input source files
      -bootclasspath <path>      Override location of bootstrap class files
      -extdirs <dirs>            Override location of installed extensions
      -endorseddirs <dirs>       Override location of endorsed standards path
      -d <directory>             Specify where to place generated class files
      -encoding <encoding>       Specify character encoding used by source files
      -source <release>          Provide source compatibility with specified release
      -target <release>          Generate class files for specific VM version
      -version                   Version information
      -help                      Print a synopsis of standard options
      -X                         Print a synopsis of nonstandard options
      -J<flag>                   Pass <flag> directly to the runtime system
    I would like to use Java version 6.

    Hi John,
    I sort of remember Java 6  being IntelMac only...
    Once you’ve gotten logged in, go to Downloads, select “Java” on the right hand side of the page, and download the Java SE 6 beta. Note: this is only available for Intel Macs running Tiger or Leopard — if you’ve got a G4 or G5, you’re out of luck right now
    http://www.metaphoriclabs.com/articles/installing-java-6-on-mac-os-x/
    But here they are...
    http://ituploads.com/apple/macintosh-os-x-java-jdk/
    Can I do Java 6 development in OS X?...
    http://stackoverflow.com/questions/739418/can-i-do-java-6-development-in-os-x

  • How to find and install the Portal Development Kit (PDK) for SAP Enterprise

    Hi ,
    I have the following question regarding thePortal Development Kit (PDK) for SAP Enterprise Portal 6.0. We have Enterprise Portal 6.0 up and running.
    1> How Do I find whether we already have this inported in the EP environment: I have admin and super admin role and trying to find '*java' in the Role. But didn't find one. Does that mean we don't have this imported already?
    2> I have tried to Find out the PDK( which is also a Business Content) in SDN in the Portal Business content link (https://www.sdn.sap.com/sdn/contentportfolio.sdn) , but haven't found. Where from I download this business content?
    3> What are the special steps that need to be taken to import this and make it working?
    Thanks
    Arunabha

    Hi Arunabha,
    1. Note that the search is case sensitive. Therefore you should search for java and Java.
    2. Download from: https://www.sdn.sap.com/sdn/downloaditem.sdn?res=/html/PDK60_download.htm
    3. Deploy with SDM: http://help.sap.com/saphelp_nw04/helpdata/en/22/a7663bb3808c1fe10000000a114084/content.htm
    Hope that helps,
    Yoav.

Maybe you are looking for