Visualage for java to Eclipse migration tool.

Hi
Here im trying to convert Visualage for java to Eclipse.I exported all the project in Visualage for java to Eclipse.
I can get the output of project perfectly ,but the main problem is Visual Editor is not coming properly.
I just tried 3.1,3.2,3.4 Eclipse versions.
I couldn't able to get any tool for migration.Is there anything is avaliable .
Other wise i have to go for some other way .
U have any qns regarding this issue , plaese u can ask ...
Thanks.
Jai
Email : [email protected]

@ jwenting
Hi jwenting
I just tried 2.0 Eclipse but that is also creating same issue .I want to know any other way to deal.
please can u just give me some suggestion.
thanks
jai.

Similar Messages

  • Error in Visual Editor for java with eclipse

    hello eb
    till i ysterday i used visual editor for java with eclipse normally without any problem but to day when i opened eclipse it display me this error :
    Error trying to set new File into editor
    Motif : java.lang.NullPointerException
    and i think that the problem comes from the visual editor plugin because when i add a new frame or even for the old frame it dosent display for me the graphical component like every time
    if si has the solution or can advise me thank you alot and i really dont know what to do .
    it is for my stydy project and i have to finish xorking as fast as possible so if so can help me

    well this forum here is the official java-forum by Sun.
    you are asking for help on Eclipse, a software made by IBM since the cooperation between the two werent that bright all the time.(hence the name eclipse)
    i just looked a few hours myself, and the latest version of the VE was suited for 3.0.2, the version fitting to the latest 3.1 build of eclipse, was still just a release candidate.
    wait a few days/weeks for a final build and retry.

  • How to  change host name entry for java instance using config tool

    Hi Gurus,
    We are trying to invoke DR for dual stack SAP PI system.Strategy followed is BR Tool  backup and restore method.
    We are able bring up ABAP stack and it is still pointing to production Java stack.
    Could any one please guide us with step by step procedure to change entries and bringing up java stack for DR system.
    While bringing up java instance we are facing below issues
    From starting framework it goes back to collecting data stack.
    Thanks,
    Avadhesh Sharma    
    +91-8095226536

    Hi Avadhesh,
    For dual stack systems backup/restore method is not recommended procedure for DR.
    As it will have hostnames from Production.
    Good approach will be to have export of Production Java stack and import the same into DR  OR
    Have the DR system installed using virtual hostnames which are similar to Production hostname.
    When DR needs to be operational enable these virtual hostnames.
    Hope this helps.
    Regards,
    Deepak Kori

  • VisualAge for Java - generated error handling code

    The code that VAJ generates to handle errors is getting on my nerves, and I'd like to know if someone else is experiencing this difficulty.
    It's not possible to specify which exception you're handling. The generated catch code produced is of the form below:
    catch (java.lang.Throwable ivjExc) {
    // user code begin {3}
    // user code end
    handleException(ivjExc);
    This rules out any attempt to handle specific exceptions in a try catch block such as:
    try {
    } catch (java.sql.SQLException e) {
    } catch(java.io.IOException e2) {
    It also prevents the very useful compiler errors you get when you ignore certain exceptions, because they all end up caught in the Throwable section.
    I know I can partially go around this with RTTI, or even worse, by cleverly coding the user code sections, such as in:
    try {
    // user code begin {1}
    // user code end
    [...] myCode(); [...]
    // user code begin {2}
    } catch (SQLException e) {
    [...] myCatchCode(); [...]
    // TRICKY BIT - NOTICE THE user code end
    // This actually does nothing, but rids me of the
    // default catch block
    try {
    // user code end
    } catch (java.lang.Throwable ivjExc) {
    // user code begin {3}
    // user code end
    handleException(ivjExc);
    Anyone with this trouble? How do you go around it?

    Actually, from what I could tell, you can actually program almot entirely by resorting to the visual programming tool. Better said than done, of course, because a good deal of coding would end up being less practical than actually typing. And the tangling of connections would be ridiculous. But with some more fine tuning of these features, IBM might end up with a very, very effective visual tool, especially if you do your own programming with this in mind.
    Specifically, I'm doing some database programming and I'd like to handle SQLExceptions differently than all the other "Throwable" ones. In particular, I'm getting a bunch of records when a JFrame is windowOpened, and if there's an error I'm showing a window that details the list of database errors that occurred (each SQLException allows access to the next in the list through getNextException(), so I'm adding all of these to a JList). This window is a DetailSQLExceptionDialog which extends DetailThrowableDialog (a class of mine which adds a Throwable's message to a list).
    The actual code where I get the records is below. Don't bother with the details, but as you can see I had to use "instanceof" to figure out what class I'm getting as an exception.
    * connEtoM2: (MasterFrame.window.windowOpened(java.awt.event.WindowEvent) --> fctMasterTableModel.setListOfRecords(Ljava.util.ArrayList;)V)
    * @param arg1 java.awt.event.WindowEvent
    /* WARNING: THIS METHOD WILL BE REGENERATED. */
    private void connMasterFrame_WindowOpened(java.awt.event.WindowEvent arg1) {
    try {
    // user code begin {1}
    // user code end
    getumMasterTableModel().setListOfRecords(Master.getAllRecords(conn));
    // user code begin {2}
    // user code end
    } catch (java.lang.Throwable ivjExc) {
    // user code begin {3}
    if (ivjExc instanceof SQLException) {
    MessageWithDetail.show(
    "Error getting the records.",
    new DetailSQLExceptionDialog((SQLException) ivjExc, this, getTitle(), true),
    this,
    getTitle());
    dispose();
    } else {
    MessageWithDetail.show(
    "Error getting the records.",
    new DetailThrowableDialog(ivjExc, this, getTitle(), true),
    this,
    getTitle());
    dispose();
    return;
    // user code end
    handleException(ivjExc);
    It's still not a good solution because since the actual "catch" part has a "throwable" in it, which catches EVERY exception, since Throwable is The Mother Of all Exceptions, I wouldn't get the compiler error for not handling the SQLException. In fact, I'm not aware of what kind of errors can be raised by the class/methods I'm using, unless I delve into all the docs and that can be a daunting task. Basically, the help that the compiler would give me pointing those exceptions as not caught, which is so nice in Java, is gone with the wind.
    :-P

  • Seeking help for VisualAge for Java

    Hi,
    I am using VisualAge 3.5 Professional version to develop Java applications. But I don't know how to build an independent Java application that I can run it outside VisualAge. Can someone give me some tips? THanks!
    I can build an application, and I can run within VisualAge, but when I try to export it, I can only choose either ".class" or ".java" file, so is it possible for me to build an independent ".exe" file from VisualAge? Because if I want to submit an software to a customer, I can't require him to install VisualAge, so what I can do?
    Thanks a lot!

    Hi!
    - Right click on project
    - Select export
    - Select Jar flie
    - Give Path and Name of Jar file
    - Export!
    Execute jar File.... :-)
    I dont have Visual Age Installed on my machiene at the moment, so there could be a step missing.... :-S
    Plus you can also export your whole project out at class files and directly execute your class file, but thats not a good approach for deploying to the client side.
    Hope this helps
    Regards
    Omer

  • Is "IBM VisualAge For Java" any good ?

    Considering getting IBM's VAJ for our systems development team.
    I just thought I'd get peoples thoughts on it. All comments welcome !

    VAJ works just fine as long as you give it enough
    memory. But make sure you get training for your team,
    because its online help is almost totally useless.I would definitely agree with that. VAJ has a lot of nice features, but it also has a lot of things that can be really annoying, esp if you haven't had the training.
    My biggest annoyance with it is that I can't get my hands on the source code without exporting it. You can kind of work around this by using the source view, but the source view won't tell you where/if there are "doh!" type compile errors--you need to look at the workbench. And you can't see line numbers, so if you get a stack trace with a line number you can't just scroll to it. (You can hit CTRL-G to pop up a dialog to jump to it, though.)
    I also haven't gotten the PVCS integration to work right yet, which makes check out-edit-check in a hassle. It supposedly works, but when you're in a development mode it's hard to find time to play with your tools. =^p

  • Setting classpath in IBM VisualAge for Java Programming

    Hai,
    How to set classpath in IBM visualAge3.5 to run the Java programs
    Please respond immd..
    Thanx in advance

    Right click on the class whose path you need to set; then click the classpath tab and enter the classpath in the textfield provided.

  • MII Migration tool for server installed in Linux

    I am planning to migrate few files from xMII 11.5 to 12.0.  I searched in market place to download the migration tool(service.sap.com -> SAP Support Portal -> Downloads -> SAP Installations & Upgrades -> Search for Installations and Upgrades.
    Entered XMII MIGRATION TOOL in the search field)  which can be used from my windows laptop. But, its not available.
    I also searched for the components which can be deployed in Netweaver to obtain the migration tool(service.sap.com -> SAP Support Portal -> Downloads ->Entry by application group->Support Packages and Patches...SAP xApps...SAP XMII...SAP XMII...SAP XMII 12.0...XMII MIGRATION TOOL 1.0). But, these components are only available for Windows server.
    Let me know whether this is because of authorizations/permissions of my id. Is there a place where I can download either the migration tool or the components for linux?

    The Migration Tool is a windows only application - so are the files from your 11.5 system for that matter
    You'll need to download the tool, run either the SDM or JSPM tool of NetWeaver to extract the zip file from inside the SCA file.  This zip file can then be extracted onto your laptop where the java app can run to take the desired 11.5 source files and migrate them into your 12.0 server via http.

  • Any open source of simple statistical analysis tools for java?

    Hi ya,
    Anyone knows any open source of statistical analysis tools for java?
    A simple tool which is able to retrieve the coverage, the number of threads, and a list of methods within the code will be fine :)
    Many thx

    If what you mean is a profiler, you can get it from Eclipse's plugin, and it's open source.
    http://sourceforge.net/projects/eclipsecolorer

  • Visual Age for Java 3.0 and EJBs

     

    Michael,
    We are also seeing problems with EJB development using the VAJ integration kit
    for Weblogic 4.5.1 and Visual Age Java 3.0.2. The rest of the integration,
    JSPs, Servlets, etc. appear to work just fine using the 4.5.1 integration kit
    and Visual Age Java 3.0.2. However, with EJBs we are finding the deployment
    tools to break into the VAJ debugger.
    Comments (all welcome)
    john
    Michael Girdley wrote:
    We plan to release an integration kit for VisualAge soon. Please check our
    web site regularly for information on the availability of this kit.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    Vladimir Goncharov <[email protected]> wrote in message
    news:[email protected]...
    I'm getting Exception, when trying to create Initial context from withinthe
    VisualAge for Java 3.0, the same compiled class by Visual Age for Java 3.0
    works fine when run from the command line using JDK.2.2
    My understanding is that client program may run on JDK 1.1.7 and above and
    IBM using IBM JDK 1.1.8 which compatible with the SUN one
    Please help.
    Here is the classpath that VisualAge is using
    C:\weblogic\classes;
    C:\weblogic\lib\weblogicaux.jar;
    C:\IBMVJava\ide\Program\lib\;
    C:\IBMVJava\ide\Program\lib\classes.zip;
    Here is the Exception thrown by Weblogic
    weblogic.utils.AssertionError: ***** ASSERTION FAILED
    ****[ java.lang.InternalError: (Ex02) An error has occurred. ]
    java.lang.Throwable(java.lang.String)
    java.lang.Error(java.lang.String)
    weblogic.utils.NestedError(java.lang.String)
    weblogic.utils.AssertionError(java.lang.String)
    java.lang.Object
    weblogic.kernel.Kernel.getInstanceDynamically(java.lang.String,
    java.lang.Class [], java.lang.Object [])
    weblogic.logging.LogManager weblogic.kernel.Kernel.getLogManager()
    weblogic.logging.LogOutputStream(java.lang.String)
    weblogic.common.internal.LogOutputStream(java.lang.String)
    weblogic.t3.services.ConfigClient()
    java.lang.Objectjava.lang.reflect.Constructor.newInstance(java.lang.Object
    java.lang.Object
    weblogic.kernel.Kernel.getInstanceDynamically(java.lang.String,
    java.lang.Class [], java.lang.Object [])
    weblogic.t3.services.ConfigDef weblogic.kernel.Kernel.getConfig()
    void weblogic.kernel.Kernel.ensureInitialized()
    weblogic.rjvm.RJVM weblogic.rjvm.ServerURL.findOrCreateRJVM()
    javax.naming.Context
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(weblogic.jnd
    i.Environment, java.lang.String)
    javax.naming.Context
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(java.util.Ha
    shtable)
    javax.naming.Context
    weblogic.jndi.WLInitialContextFactory.getInitialContext(java.util.Hashtable)
    javax.naming.Context
    javax.naming.spi.NamingManager.getInitialContext(java.util.Hashtable)
    javax.naming.Context javax.naming.InitialContext.getDefaultInitCtx()
    void javax.naming.InitialContext.init(java.util.Hashtable)
    javax.naming.InitialContext(java.util.Hashtable)
    javax.naming.Context com.vlad.ejb.client.ClientTest.getInitialContext()
    void com.vlad.ejb.client.ClientTest.main(java.lang.String [])
    weblogic.utils.AssertionError: ***** ASSERTION FAILED
    ****[ weblogic.utils.AssertionError: ***** ASSERTION FAILED
    ****[ java.lang.InternalError: (Ex02) An error has occurred. ] ]
    java.lang.Throwable(java.lang.String)
    java.lang.Error(java.lang.String)
    weblogic.utils.NestedError(java.lang.String)
    weblogic.utils.AssertionError(java.lang.String)
    java.lang.Object
    weblogic.kernel.Kernel.getInstanceDynamically(java.lang.String,
    java.lang.Class [], java.lang.Object [])
    weblogic.t3.services.ConfigDef weblogic.kernel.Kernel.getConfig()
    void weblogic.kernel.Kernel.ensureInitialized()
    weblogic.rjvm.RJVM weblogic.rjvm.ServerURL.findOrCreateRJVM()
    javax.naming.Context
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(weblogic.jnd
    i.Environment, java.lang.String)
    javax.naming.Context
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(java.util.Ha
    shtable)
    javax.naming.Context
    weblogic.jndi.WLInitialContextFactory.getInitialContext(java.util.Hashtable)
    javax.naming.Context
    javax.naming.spi.NamingManager.getInitialContext(java.util.Hashtable)
    javax.naming.Context javax.naming.InitialContext.getDefaultInitCtx()
    void javax.naming.InitialContext.init(java.util.Hashtable)
    javax.naming.InitialContext(java.util.Hashtable)
    javax.naming.Context com.vlad.ejb.client.ClientTest.getInitialContext()
    void com.vlad.ejb.client.ClientTest.main(java.lang.String [])
    John N. Alegre
    Javelin Solutions
    [email protected]

  • Oracle Migration Tool

    I recently downloaded the Oracle Migration Tool for migrating a
    Microsoft Access database to Oracle8 for Linux. This migration
    tool contains the following components:
    1. Oracle Installer 3.3.0.1.3
    2. Oracle Migration Assistant for Microsoft Access 8.0.4.0.0
    3. Oracle Named Pipes Protocol Adapter 8.0.4.0.0
    4. Oracle Net8 Client 8.0.4.0.0
    5. Oracle Objects for OLE 2.2.2.2.0
    6. Oracle TCP/IP Protocol Adapter 8.0.4.0.0
    7. Oracle8 ODBC Driver 8.0.4.0.0
    8. Required Support Files 8.0.4.0.0
    I installed everything onto my Windows98 client machine. Once I
    did this, I could see the following entries in my Start Menu
    under "Oracle for Windows95":
    1. Microsoft ODBC Administrator
    2. 004002 Class Library Documentation
    3. 004022 Bound Controls and Class Library
    4. 004022 Control Notes
    5. 004022 Release Notes
    6. Oracle Home Selector
    7. Oracle Installer
    8. Oracle Migration Assistant for MS Access
    9. Oracle Objects for OLE Documentation
    10. Oracle ODBC Help File
    11. Oracle ODBC README File
    12. Oracle ODBC Test
    When I went into the Microsoft ODBC Administrator, I could also
    see that there was a new entry under the ODBC Drivers tab:
    Oracle ODBC Driver 8.00.0400 Oracle Corporation SQORA32.DLL
    12/3/97
    So far, so good.
    Then I started going through the Oracle8 ODBC help file to get
    my machine set up to start using the tool. Under "Configuration
    Tasks," it says the following:
    Before you configure the data source, you must configure Net8
    database services, so there is an entry for each Service Name.
    To do this, start the Oracle Net8 Assistant, either click on the
    Oracle for Windows NT program group and click on the Oracle Net8
    Assistant icon or from the start bar select Programs, select
    Oracle for Windows NT, and select the Oracle Net8 Assistant.
    Using the Oracle Net8 Assistant, you can create an entry in the
    tnsnames.ora file for each Service Name. The Oracle Net8
    Assistant is installed when you install Net8.
    That's when I started running into problems. Although the
    installer had shown that Net8 had been installed, I could not
    find any evidence of a Net8 Assistant on my Windows98 client
    machine. Is there a trick to starting up the Net8 Assistant?
    Until I am able to perform this step, I cannot go to the next
    step of configuring my ODBC driver.
    Any help would be appreciated.
    - Brendan
    null

    Brendan,
    I am not 100% sure, but I believe win98 is not supported.... yet.
    I know that 95 is supported, but to be honest, I do not run
    winDOZE. Maybe an upper authority from Oracle should correct me
    if I am wrong.
    Kevin
    Brendan Conner (guest) wrote:
    : I recently downloaded the Oracle Migration Tool for migrating a
    : Microsoft Access database to Oracle8 for Linux. This migration
    : tool contains the following components:
    : 1. Oracle Installer 3.3.0.1.3
    : 2. Oracle Migration Assistant for Microsoft Access 8.0.4.0.0
    : 3. Oracle Named Pipes Protocol Adapter 8.0.4.0.0
    : 4. Oracle Net8 Client 8.0.4.0.0
    : 5. Oracle Objects for OLE 2.2.2.2.0
    : 6. Oracle TCP/IP Protocol Adapter 8.0.4.0.0
    : 7. Oracle8 ODBC Driver 8.0.4.0.0
    : 8. Required Support Files 8.0.4.0.0
    : I installed everything onto my Windows98 client machine. Once
    I
    : did this, I could see the following entries in my Start Menu
    : under "Oracle for Windows95":
    : 1. Microsoft ODBC Administrator
    : 2. 004002 Class Library Documentation
    : 3. 004022 Bound Controls and Class Library
    : 4. 004022 Control Notes
    : 5. 004022 Release Notes
    : 6. Oracle Home Selector
    : 7. Oracle Installer
    : 8. Oracle Migration Assistant for MS Access
    : 9. Oracle Objects for OLE Documentation
    : 10. Oracle ODBC Help File
    : 11. Oracle ODBC README File
    : 12. Oracle ODBC Test
    : When I went into the Microsoft ODBC Administrator, I could also
    : see that there was a new entry under the ODBC Drivers tab:
    : Oracle ODBC Driver 8.00.0400 Oracle Corporation SQORA32.DLL
    : 12/3/97
    : So far, so good.
    : Then I started going through the Oracle8 ODBC help file to get
    : my machine set up to start using the tool. Under
    "Configuration
    : Tasks," it says the following:
    : Before you configure the data source, you must configure Net8
    : database services, so there is an entry for each Service Name.
    : To do this, start the Oracle Net8 Assistant, either click on
    the
    : Oracle for Windows NT program group and click on the Oracle
    Net8
    : Assistant icon or from the start bar select Programs, select
    : Oracle for Windows NT, and select the Oracle Net8 Assistant.
    : Using the Oracle Net8 Assistant, you can create an entry in the
    : tnsnames.ora file for each Service Name. The Oracle Net8
    : Assistant is installed when you install Net8.
    : That's when I started running into problems. Although the
    : installer had shown that Net8 had been installed, I could not
    : find any evidence of a Net8 Assistant on my Windows98 client
    : machine. Is there a trick to starting up the Net8 Assistant?
    : Until I am able to perform this step, I cannot go to the next
    : step of configuring my ODBC driver.
    : Any help would be appreciated.
    : - Brendan
    null

  • Facing Problem In Accessing SAP System through Eclipse ABAP Tool

    Hi All,
    I am willing to learn SAP ABAP.
    I installed SAP GUI 7.30 for windows and Eclipse ABAP Tool.
    I also connected to E66 [dkmgd37] System through Consolut but
    Whenever i am trying to access SAP System from eclipse ABAP project, it is showing you are not authorized to access this system for ABAP Development.
    Could anyone plz help me out. I am also attaching the image of SYSTEM CONNECTION PARAMETERS for E66 System(For Reference).
    Thanks & Regards,
    Priyanshu

    Hi Priyanshu,
    To create development objects in SAP , you must have developer access key . Do you have developer access key ? If yes then not have enough roles to create the objects.
    To check which authorization object , after getting the error run transaction SU53. Contact the authorization team who created the ID to provide developer roles
    Thanks & Regards,
    Arun

  • Is there a Migration tool for migrating Oracle forms 5 to Java

    Hi,
    I would like to know if there are any oracle tools available for migrating Oracle forms to j2ee.I read that " Oracle JHeadstart 10g" migrates the forms 6i to java/html.Does Oracle JHeadstart 10g also migrate forms 5 to j2ee.I am new to both oracle forms and j2ee and any information about this would be a great help.
    Thanks,
    Kevin

    Kevin,
    there are a couple of migration partners that offer their migration tool and many are listed on the otn page for Forms (otn.oracle.com/products/forms). You may want to make yourself a picture of how efficient such a migration coul dbecome
    Frank

  • Why do we need IDE or tools for java card programming?

    Hi,
    I am a newbie to java card, using java card kit tools themself, we can test and burn the code into card right?
    then why do we need IDE for java card, please correct me , if i am wrong,
    Thanks in advance,
    Sri.

    Dear Sri,
    We have compiler, linker etc for every language starting of from C or C++ or Java. JDK has all the tools necessary to develop and run a Java program. Similarly Java Card Development Kit has all the tools for developing and deploying a Java Card applet. But what an IDE does is too integrate all these tools and make it easier for the JavaCard programmer to develop his applets. Just like Eclipse is used for Java applet development.And not everytime the code is burned to the card. Its only during masking code is burned to the card, i.e if u can call it burning. Masking makes an applet permanent on the card.

  • Oracle Java CAPS Migration Tool

    Hi,
    In one of our project we have to migrate the JCaps code to SOA 11g Code. I am able to find the user guide of Oracle Java CAPS Migration Tool (i.e. http://docs.tpu.ru/docs/oracle/en/fmw/11.1.1.6.0/doc.1111/e24884.pdf) but not the installer of that migration tool.
    Can someone please let me know the exact loaction of the Oracle Java CAPS Migration Tool.
    Regards,
    Dumesh Kumar

    Please refer -
    http://blogs.oracle.com/javacapsfieldtech/entry/migrating_java_caps_5_6
    Contact your local Oracle Sales Representative for more help on this migration.
    Regards,
    Anuj

Maybe you are looking for

  • HP Smart Web Printing interfering with Internet Explorer

    Hello - I have a new dv7-4183cl notebook and I just added a new Photosmart C310 wireless printer. When I added the printer, I installed all of the programs included on the installation disc. Since then, I'm having a very annoying problem with the mou

  • Attachments in iMessage only comes through on iPhone/iPad but not Computer OR Computer and not iPhone/iPad

    hello all, i wanted to post about a bug i am experencing on Messages app under os x mountain lion... when someone tries to send me an imessage with a picture it only comes through to my iphone and ipad but not my laptop.. OR it will come through on m

  • Loss of film quality problem.

    I've just finished a 17 minute film using iMovie, it occupies about 2.5G space, and looks real crisp on my computer screen when played as a "filmname.MOV" When subsequently I use Toast 9 to give me a DVD video disc, the film now only occupies about 1

  • Can't edit hyperlink in RoboHTML 10

    When I click on an existing hyperlink and launch the Hyperlink dialog, I can make whatever changes I want, but regardless of whether I make changes or not, when I click "Ok" I get an error beep.  The only way to get of the dialog is the press Cancel

  • Cs6 won't open?

    my cs6 will not open--it is downloaded already but says my trial period is expired?  It has worked fine in the past--what's up?  Jose