Does CDC(PP profile) supprots ARM 7 platform?

Hi all:
Who can tell me the answer of this question, and where to get the cdc and pp profile implementation?

Yes,it is. I 'm porting CDC(foundation profile), and I encount many problems. If you have some experiences or you want to talk about it with me, please Email with me. [email protected] By the way, I'm a Chinese.

Similar Messages

  • CDC Personal Profile and XML

    Hi everybody,
    does anyone here has any experiences with J9 (CDC Personal Profile) and XML document?
    Can I use SAX or Dom to parse XML files in CDC Personal Profile?
    Any help is appreciated!!

    Try kXML. It should work on any Java platform.

  • Obtain CDC + Foundation Profile

    Hi,
    Where can I get CDC + Foundation Profile HotSpot Implementation?
    For CDC (FP) reference inplementation, does it only support Linux platform?
    Thanks very much,

    Just do export LANG=en_US
    also edit the /etc/sysconfig/i18n file entry for LANG to en_US instead of the UTF.8 stuff
    I don't know the exact reason though.. this will work.
    --Prasanna Kumar                                                                                                                                                                                                                                                                                                                                                                                               

  • SQLJ Translation does not create profile file

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

  • Design view is unavailable for x64 and ARM target platforms. - Visual Studio 2013 Update 3

    Hello. I am having this problem at design view when i set project to x64. However problem disappear when i set to any cpu which makes it 32 bit.
    Design view is unavailable for x64 and ARM target platforms.
    Here my full XAML code
    <Window x:Class="doktora_tez_projesi_crawler_program.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:doktora_tez_projesi_crawler_program"
    Title="Doktora Tez Crawler" Height="874.099" Width="1092.99">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="827*"/>
    <ColumnDefinition Width="258*"/>
    </Grid.ColumnDefinitions>
    <Button Content="Init Root Crawlin - This Deletes All Data" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="279" Click="click_start_Crawling" />
    <ListBox Name="lstBoxEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollection }" Height="138" Margin="10,155,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxMoreCommonFiredEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionMoreCommonFiredEvents}" Height="265" Margin="10,298,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxLinkCountFireEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionLinkCountEvents}" Height="265" Margin="10,568,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics}" HorizontalAlignment="Left" Height="114" Margin="10,36,0,0" VerticalAlignment="Top" Width="426">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics_2" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics_2}" HorizontalAlignment="Left" Height="114" Margin="441,36,0,0" VerticalAlignment="Top" Width="634" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <Label DataContext="{x:Static local:PublicStaticFunctions.ocEventsCollection }" Content="{Binding Path=[1]}" HorizontalAlignment="Left" Margin="324,10,0,0" VerticalAlignment="Top"/>
    </Grid>
    </Window>
    Browser based Pokemon Style MMORPG Game Developer Used asp.net 4.0 routing at it's
    Monsters

    Hi MonsterMMORPG,
    I made a mistake in my previous reply. What I suggested is that you created a new and simple WPF app, set the platform to
    x64 rather than x86, and then build the app to check the result.
    If a new WPF app also has this issue, then I doubt whether this issue is related to your VS.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    no it doesn't happen
    it is triggered by one of these bindings in the xaml
    <ListBox Name="lstBoxEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollection }" Height="138" Margin="10,155,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxMoreCommonFiredEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionMoreCommonFiredEvents}" Height="265" Margin="10,298,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxLinkCountFireEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionLinkCountEvents}" Height="265" Margin="10,568,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics}" HorizontalAlignment="Left" Height="114" Margin="10,36,0,0" VerticalAlignment="Top" Width="426">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics_2" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics_2}" HorizontalAlignment="Left" Height="114" Margin="441,36,0,0" VerticalAlignment="Top" Width="634" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    Browser based Pokemon Style MMORPG Game Developer Used asp.net 4.0 routing at it's
    Monsters

  • Does the Resource Profile LOGICAL_READS_PER_CALL count TEMP

    Does anyone know if the profile resource LOCIAL_READS_PER_CALL counts reads from the TEMP/SORT segment.
    The reason I'm asking is because we had an adhoc report user write a query that caused a huge cartiesian product that consumed all of the temp tablespace, 8.5G. The knee-jerk reaction would be to add more space to the TEMP tablespace, but the poorly written query was the problem. The user running the query does have a profile that restricts the LOGICAL_READS_PER_CALL to 3500000. The query did fail since it could not allocate any space from the TEMP tablespace, but not before it caused two other sessions to fail for the same reason. The query had several sort/merge operations so I was hoping that when it was reading back from a temp segment it would be added to the counter and would then terminate the session.
    If this counter is not used for TEMP reads does anyone know of another way to limit the amount of temp space for a particular user?

    Logical read concerns the block read into the buffer no ? So I don't see relation with the tablespace TEMP.

  • How could I use native methods in CDC-Personal Profile?

    Hi, I know that CDC-Personal profile doesn�t support JNI (I think so), but i think that must be a way to use native methods in an application written with Personal Profile. Thank you very much

    I'm esperiecing the JBluez executing in a CVM for Linux...all seems work well, and i know that only the CLDC doesn't support JNI but CDC support it. You only need to follow theinstructoins valids for use JNI with J2SE, if i'haven't readed bad, CDC is Java 1.3 compliant...
    I hope this could clarify your ideas
    Andrew

  • Compiling CDC/ Foundation Profile  and Personal Profile in RedHat 7.3

    When I compile the CDC/Personal Profile,in RedHat 7.3,I get this message:
    ../share/rules.mk:235: ../../build/linux-i686/generated/empty.mk: No such file or directory
    ... mkdir ../../build/linux-i686/generated/javavm/runtime
    touch ../../build/linux-i686/generated/empty.mk
    ... mkdir ../../build/linux-i686/generated/flags
    error:compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null
    ,null,null,null,null,null,null
    100 errors
    make: ***[.compile.btclasses] Error1
    And with CDC/Foundation Profile ,the message is:
    error:compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null
    ,null,null,null,null,null,null
    100 errors
    make: ***[.compile.btclasses] Error1
    What can I do now!
    Can you help me to solve this error?

    Just do export LANG=en_US
    also edit the /etc/sysconfig/i18n file entry for LANG to en_US instead of the UTF.8 stuff
    I don't know the exact reason though.. this will work.
    --Prasanna Kumar                                                                                                                                                                                                                                                                                                                                                                                               

  • How does CDC consistant mode work

    Gurus,
    Please explain in simple words how does CDC consistant mode works and what are the Min_window and Max_window_id we see in the code generated by ODI
    Thanks

    When you turn off the iPod and then return to it within a few minute/hours, it will resume from where you left it. So far, so good.
    However, if you leave the iPod inactive for a period of 14 hours or more, it goes into a hibernation mode in order to conserve battery power. Then when next you turn it on, the iPod will restart with the Apple logo, and return to the main menu. Under those circumstances, it will not resume from the point you left it.

  • How to run CDC Foundation profile on Pocket PC (iPAQ)?

    Hi,
    I'm using IBM Websphere to compile and run CDC Foundation Profile Java apps. My question is, how do I run the JXE files by themselves on my iPAQ?
    Thanks,
    Derek

    Hi Derek,
    I set up a device build for my ppc in Websphere and it builds my .jxe file and copies it accross to my Pocket PC using active sync for me. I can then just run the app by clicking on the shortcut link file.
    If this doesn't work for you try using a link file (mylink.lnk) to run the application. The contents of a link file are like:
    255#"\Program Files\J9\PPRO10\bin\j9w.exe" "-jcl:ppro10:loadlibrary=swt-win32-3101" "-cp" "\Program Files\J9\PPRO10\lib\swt.jar;\Program Files\J9\PPRO10\examples\ex1.jar" "Ex1"
    The number 255# represents how many chars are in the link
    \Program Files\J9\PPRO10\bin\j9w.exe is the path to the VM (.jxe files are proprietry .class files optimized for the J9 VM)
    jcl:ppro10:loadlibrary= is an option for loading a native library (.dll) file i believe. (you may not need this - the example above is using the SWT UI package which needs the swt-win32-3101.dll file so it is included in the lnk),
    "-cp" is the class path (include any external jars you need as well as your application jar)
    then type in the name of the main class to run.
    i think there is also a "-jxe:<jxeFile>" option you can use to run a .jxe file with the J9 VM from IBM.
    hope this helps.
    Walt.

  • CDC/Personal Profile Platform Emulator

    Hi,
    I am a new J2ME developer. Earlier I was working on Swings in Java. I am working on netbeans 6.0 now. I just want to know what are the emulator/SDK available for CDC/Personal Profile1.0. I have already dowloaded the CDC Toolkit form Sun and integrated with Netabeans. Now I am looking an emulator for Personal Profile 1.0. Please help me in finding emulator and integrating with netbeans.
    Thanks in advance

    Try kXML. It should work on any Java platform.

  • Design view is unavailable for x64 and ARM target platforms

    I've started seeing this message when I set the Configuration Manager to build for the ARM platform. The error output also reports that LayoutAwarePage does not existing in the namespace "using:<appname>.Common", and that the member Resources is
    not recognised or accessible. I'm unable to access the properties of any XAML object whilst VS2012 is in this state.
    These problems go away if I switch the build back to x86 but that slows down development and also seems to trigger the wiping of the Local app storage on the Surface RT when I redeploy the app; that doesn't seem to happen if I keep the configuration manager
    set to ARM but then I can't do any XAML work.
    Any thoughts on what might have caused this or how I can try and determine what has happened? I've gone back over the source history to see what has changed but I'm not seeing anything that occurs to me as a possible cause.
    Philip

    So XAML Designer *never* works if you've selected x64 or ARM as the build process?
    I'm not sure if I misunderstand what you mean by Intellisense but what *definitely* breaks is the ability to work with the Properties pane when XAML Designer isn't working so even if you are working on raw XAML and not using the design surface, the experience
    is really poor. I might just as well be using Notepad :-(.
    I hope there is a solution to this soon. I'm heavily using my Surface RT as my debugging device - a big improvement on trying to use a non-touch laptop - but this problem is having a significant impact on my productivity as I try to work on some UI/XAML
    issues.
    Philip

  • How to run Java Swing GUI on embedded ARM Linux platform?

    The object is:
    A touch panel, running Java Swing GUI, with a 25 fps 320x320 mono JPEG image animation and other control buttons.
    What I have now:
    A Developing Board with: ARM926 CPU at 266MHz, 128M RAM, 64M ROM, ported with arm-linux and MiniGUI.
    My plan is:
    1. installing a X-window system to the platform, discarding the MiniGUI.
    2. install j2re-1.3.1-RC1-linux-arm.tar.bz2 to the platform.
    3. run my program developed on a PC.
    My concerns are:
    1. Both X and Java is resource consuming, can a 266MHz ARM CPU meet my requirement?
    2. Is the X a must to run Java Swing GUI? If yes, how can I configure it to minimize the footprint, I mean, install only necessary modules.
    3. Can J2RE 1.3.1, the only port for arm linux, support Swing classes?
    4. Are there other options, such as CDC + PP(AGUI?), how to do it?
    Thanks alot!

    3. Can J2RE 1.3.1, the only port for arm linux, support Swing classes?I'm not entirely sure from your post: is this a J2SE port? If so it will support Swing, but probably needs Qt.

  • Does the Lens Profile Creator work with Photoshop Elements 8.0..?

    Hello,
    I am very new to the world of Photoshop, so please forgive if this is an obvious/stupid question...
    I am using Photoshop Elements 8.0 and I have a couple of pictures that I need to remove the 'fish eye' lens distortion from around the edges...
    The blurb for the Lens Profile Creator says that it is for use in the "Adobe Photoshop® family of products"...
    Does this include Photoshop Elements 8.0 or do they really mean it is just for Photoshop CS5, Camera Raw and Photoshop Lightroom...
    Any help will be appreciated...
    Many Thanks
    mc1903uk

    PSE does not have the user-interface to turn on lens-corrections, nor does the ACR 6.1 update for PSE contain the lens-profile database installer, so if PSE is the only member of the PS-family that you have installed then effectively you cannot apply lens profiles.
    If a computer has the lens-profile database installed and lens-distortion-correction has been enabled in the XMP sidecar for a particular image, both requiring PS-CS5's ACR 6.1-updater or LR3 to be installed and one of those used to enable lens-corrections for the image, then PSE can use ACR 6.1 to apply a lens profile, because the version of the ACR 6.1 plug-in for PS and PSE is the same plug-in.
    BTW, removing fish-eye distortion completely, which is what enabling lens-corrections does by default, will leave a rather poor looking image that has been completely rectilinearized but has severe stretching of the pixels at the edges, so only the center is useable.  With my 8mm Sigma fisheye, I reduce the Distortion part of the correction down to 44 so the black corners are gone, but there is still some bulging of the image.
    If you want to experiment with lens-corrections, you could install the 30-day trial of LR3.

  • Camera Raw 8.4 does not show  profiles for my Sony A850.

    Camera Raw 8.4 does not show the profiles for my Sony A850. The camera profiles are in the directory, Camera Raw recognizes the photo as being from my A850 in the Camera Raw banner, but the only profile available is Adobe Standard. This all used to work OK a few months ago.

    I don’t see any of these on either my Windows 7 or Windows 8 computer in that normal ACR profiles location.  Both have PS-CC/ACR8.4 so maybe they used to be there and were removed?
    However, if they are valid profiles you can probably get them to work by putting them in the user-customer-profiles folder:
    %APPDATA%\Adobe\CameraRaw\CameraProfiles
    %APPDATA% = C:\Users\yourusername\AppData\Roaming
    I have over a dozen custom-created profiles in this folder and both Photoshop and Lightroom see them all.
    A few years back it wasn't this way, but more recently Adobe recognizes which profiles are theirs and will ignore any others in the Adobe profile area, but it expects to see others in the user-custom-profile area, so move the .dcp files over there.
    Did your A850 profiles come from a third party like these:
    Imprescindibles
    Maurizio Piraccini Photography: Sony (and Minolta) color profiles for Adobe Camera Raw and Adobe Lightroom - UPDATED 201…
    http://pskiss.com/shop/cross-camera-color-profiles/

Maybe you are looking for