Testing GUI java based tool

Hi friends,
I am involved in a research project where we developed a GUI tool. At present i am testing this tool but i have some problems while testing. I am using Rational Robot software to test this tool but Robot cannot recognize some components like JTree/Tree.
I don't know the reason for this problem. Can anyone suggest me some other better testing tool?
What testing tool does Sun Microsystems use test Java?
Thanks.

I am just re framing my question in hope of getting a response.
I am exploring the possibilities of establishing a telnet/ssh session with a webserver from a client outside the enterpise network.Here i have to overcome the restriction imposed by the firewall. Is there any tool for http tunneling which will allow the client to establish ssh session??
Any info on this will be very helpfull.
Cheers,
comfortably_numb

Similar Messages

  • Not able to edit fileds in java based tools after upversioning to 1.7.0_06.

    Hello experts,
    In our project, we use one java based tool(not mentioning the name because it is project specific).
    We recenlty upversioned our java version from 1.6.0_29 to 1.7.0_06. After upversioning the java, our java based tool is not functioning properly. Few fileds became non-editable. The issue is coming when only xlaunch is used to connect to the lab. That too issue is coming when multiple windows are selected in xlaunch. If I use single-window option then the tool works fine. The tool also works fine if I directly launch it from exceed/xterm(not from xlaunch). Hence the problem is coming with the combination of jre 1.7.0_06 and xlaunch(multiple windows).
    Can anyone kindly help me how to rectify this problem..
    Best wishes....
    Bhargav

    Are you using any operating system? To my experience buttons and fields in java can conflict with fancy windowing settings, such as 3D visual effects, etc. I suggest to disable anything related on your client system.

  • Testing of Java-Based Webdynpro application in NWDS

    hi
    Hi
    I would like to test Java-Based webdynpro application in
    NWDS
    I am able to start and stop recording.
    But when press Start Replay Button.
    i am getting this error in the lower text area where messages area;
    <b>ERROR: Invalid Xml document received from the Xml Client. WindowId attribute is missing</b>
    pls replay ASAP
    Thanks
    Ravi Shankar

    Hi
      Ok now i get it. Well i guess i need to come out of mental block that WebDynpro for ABAP is not there :)..
    Well in that case it should work if you just record your test case.. What version of NDS are you using. It has worked for me.
    Create some inputfield and then deploy and test your application .. See if it runs.
    Then you right click on the application and say Record. It should run you through the screen. Once you are through stop the recording.
    The XML file can be viewed in the NWDS with the test data that you entered.
    regards
    Ravi

  • Invalid characters displayed in java-based tool

    I'm having problems with a java applet that works fine on the vast majority of PCs, with 1 exception. The one in question runs Windows 7 32 bit professional, IE8. Java versions 27,29, and 31 have been tried, with the same results.
    There are several fields, each of which has a title and a default value. On a working PC, the field names are:
    Mortgage amount:
    Term:
    Interest rate:
    Monthly payment (PI):
    Annual property taxes:
    Annual home insurance:
    Monthly payment (PITI):
    On a PC that its not working:
    Kn` mHmendl `shmm9
    Lnqsf` fd `l nt ms9
    Hmsdqdrsq` sd9
    Lnmaglx o` xl dms` OH(9
    @mt ` koqnodqsx s wdr 9
    @mt ` kgnl d hmtq` mbd9
    L nmaglx o`xl dms ' OHSH(9#371-1/
    There are more fields, but that's an example. it may not be exactly correct, since the spacing and character overlap makes it hard to differentiate some characters.
    All the browser troubleshooting has been done (reset, cleared temps, deleted active X objects etc.)
    Cleared all local cache, java cache and ran ccleaner
    Checked Windows region, language, currency etc settings
    Tried to reinstall java, tried 3 different versions (27, 29, 31)
    Tried the local Admin profile and problem persists across multiple profiles.
    If anyone has any ideas about which settings could possibly cause this character translation, I would be very appreciative. There appers to be a 1:1 correlation of characters, for example:
    # = $
    / = 0
    : = 9
    R = S
    Could it be some kind of java / unicode setting?

    If I could post a picture it might help explain...
    http://postimage.org/image/qtl15mdoz/
    Uploaded, hopefully you can view it.
    We've reset the browser, even tried IE9, with the same result. There's no toolbars installed and machine tested clean for adware. With no java installed, the webpage displays sans mortgage calculator. What seems strange is that some of the text displays properly, as you can see in the picture, so that's why I wonder if its just one particular font that's not being displayed properly? The entire rest of the web page, and everything else that uses java works fine, it seems like it's just this one particular calculator.
    It's at the point where the OS may just need to be reinstalled, though it seems like a small, petty thing to reinstall the OS for... but without a solution i don't really have any other options.

  • Example code for Trigering a workflow using WAPI from JAVA based tool

    Hi Experts,
    I am the newest guy in SAP workFlow and BAPI world. I need to trigger a workflow defined in WebFlow engine from a Java client. I know i can use JCo and to use WAPI to get workflow information but i am not sure how it works. Can you give me some example code to trigger one workflow defined in WebFlow using WAPI? If there is any alternative i am interested to know that as well.
    Thanks in advance.
    Regards,
    Riyadh

    Use Function Module SWE_EVENT_CReate top trigger event that is linked with a Workflow.
    <b>Please reward points if useful</b>
    INCLUDE <cntn01> .
      DATA:i_emp_details TYPE STANDARD TABLE OF p0001,  "Employee Details
           wa_request    TYPE p0001,                    "Workarea for Employee details
           v_country_grp TYPE molga,                    "Country SubGrouping
           v_object_key  TYPE sweinstcou-objkey.        "Key for the buisness object ZWOBUSTRIP
      CONSTANTS: c_bo_trip     TYPE swo_objtyp VALUE 'ZWOBUSTRIP',
                 c_event_trip  TYPE swo_event  VALUE 'TripCreate',
                 c_infy_type_1 TYPE infty      VALUE '0001'.
    Event Container declaration
      swc_container i_event_cont.
      swc_create_container i_event_cont.
    Reading the INFO TYPE 0001 to obtain the
    Employee details
      CALL FUNCTION 'HR_READ_INFOTYPE'
        EXPORTING
          pernr           = i_emp_number
          infty           = c_infy_type_1
          begda           = sy-datum
          endda           = sy-datum
        TABLES
          infty_tab       = i_emp_details
        EXCEPTIONS
          infty_not_found = 1
          OTHERS          = 2.
    SY-SUBRC check is not required as the error
    handelling will be done by WorkFlow rule
    resolution.
      CLEAR wa_request.
      READ TABLE i_emp_details INTO wa_request INDEX 1.
      IF sy-subrc = 0.
      Retrieving the Country SubGrouping for the employee
        SELECT SINGLE molga
          FROM t001p
          INTO v_country_grp
         WHERE werks = wa_request-werks
           AND btrtl = wa_request-persk.
      ENDIF.
    Sending the relevant data to event container
      swc_set_element i_event_cont 'EmpId'     i_emp_number.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'PersonnelArea'    wa_request-werks.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'CountryGrouping' v_country_grp.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'EmpSubGrp'       wa_request-persk.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'EmpTripId'       i_emp_trip.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
    Raising the event to trigger the workflow
      v_object_key = i_emp_number.
      CALL FUNCTION 'SWE_EVENT_CREATE'
        EXPORTING
          objtype           = c_bo_trip
          objkey            = v_object_key
          event             = c_event_trip
        TABLES
          event_container   = i_event_cont
        EXCEPTIONS
          objtype_not_found = 1
          OTHERS            = 2.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      COMMIT WORK.
    ENDFUNCTION.
    Thanks
    Arghadip

  • GUI Based tool for search and replace using regular expression

    Hi,
    I have developed this small tool which can be used for search and replace in multiple files using reqular expressions.
    Features:
    1. Full regular expression
    2. GUI based with Highlighted results
    3. Preview for replace available
    4. Pure Java based.
    5. Its like unix sed and grep
    Please visit below site for download/more information :
    http://sourceforge.net/projects/regexsearchrepl/
    Thanks,
    Hitesh Viseria

    I agree with you, it cannot compete grep/sed/awk combination. I couldnt find anything even close to grep/sed for windows which will also have a preview and most important, free. That is what made me write this tool. I am trying to
    improve its performance and more features like history etc.
    Any suggestions on additional features are most welcome.

  • Tool for Packaging java-based ISV-Products

    hi colleagues,
    ISV abap-based  prouduct (abap addon) can be packaged/deliverd via AAK. Do we have similar tools for java-based partner products?
    thx a lot for your help
    regrads
    Abdu

    done

  • What are popular automated tests for Java GUI applications

    Hi, I want to find a good automated test for java swing for my project. I have a list of UISpec4j, JFCUnit and Abbot.

    There is also jemmy. I haven't used any of them, though...
    -Puce

  • [Integrated SOA Gateway] Publish Java based web service

    Welcome!
    Lately I have been trying to publish Java based web service through Integrated SOA Gateway. The documentation states that:
    +"Custom interface definitions can be created for various interface types including custom interface definitions for XML Gateway Map, Business Event, PL/SQL, Concurrent Program, Business Service Object, Java (except for Java APIs for Forms subtype) and Composite Service for BPEL type."+ (Integrated SOA Gateway Developer's Guide Release 12.1, "Creating and Using Custom Integration Interfaces")
    After familiarizing myself with $FND_TOP/bin/irep_parser.pl and $FND_TOP/bin/FNDLOAD tools, I have started coding my POJOs. Initially I have come up with three classes - request/response objects and service implementation. Service implementation has been annotated with "@rep:X" descriptors according to "Java Annotations" section of the documentation. While invoking $FND_TOP/bin/irep_parser.pl I have received errors about class resolution. My solution was to transform request and response types to static inner classes. This way I ended up with one *.java source file (see below).
    * Sample ISG Service.
    * @rep:scope public
    * @rep:product AP
    * @rep:displayname My Custom ISG Service.
    public class MyService {
    public static class Request {
    private String id;
    public void setId(String id) {
    this.id = id;
    public String getId() {
    return id;
    public static class Response {
    private String data;
    public void setData(String data) {
    this.data = data;
    public String getData() {
    return data;
    * Sample operation.
    * @param request Request Object.
    * @return Return Object.
    * @rep:displayname Test operation.
    * @rep:category BUSINESS_ENTITY SAMPLE_SERVICE
    public MyService.Response testOperation(MyService.Request request) {
    MyService.Response response = new MyService.Response();
    response.setData("Some Data");
    return response;
    ILDT file has been successfully created and uploaded. However, I could not see the "Generate WSDL" button on Integrated Repository website. Is there any particular interface or superclass that my service implementation should extend? I have reviewed "PurchaseOrderSDO" example posted in the developer's guide (page 407), but I couldn't come up with a working solution. Could you provide me with more detailed tutorial/example? Which documentation sections should I read again?
    After searching through forum, I have spotted $FND_TOP/bin/soagenerate.sh script, and thought that lack of "Generate WSDL" button was an EBS defect. After running the script, I have received an error:
    Error in Service Generation.
    ServiceGenerationError: Interface Type (JAVA) Interface SubType (null) is not supported.
    oracle.apps.fnd.soa.util.SOAException: ServiceGenerationError: Interface Type (JAVA) Interface SubType (null) is not supported.
         at oracle.apps.fnd.soa.provider.wsdl.ArtifactsFactory.getArtifactsGenerator(ArtifactsFactory.java:55)
         at oracle.apps.fnd.soa.provider.wsdl.WSDLGenerator.generateServiceWSDL(WSDLGenerator.java:128)
         at oracle.apps.fnd.soa.provider.wsdl.ServiceGenerator.generateSOAService(ServiceGenerator.java:75)
         at oracle.apps.fnd.soa.provider.wsdl.ServiceGenerator.generateSingleService(ServiceGenerator.java:88)
         at oracle.apps.fnd.soa.provider.wsdl.ServiceGenerator.main(ServiceGenerator.java:419)
    I would be grateful for any suggestions. Has anyone published Java based web service through ISG?
    Best regards,
    Lukasz

    I tried the following as per Oracle support and able to generate the wsdl though, but not invoke the webservices.
    1. Applied the patch 8607523
    2. Took the translator.jar file from the patch 8857799 and replaced the current translator.jar file
    3. Deploy the adapters.
    $FND_TOP/bin/txkrun.pl -script=CfgOC4JApp -applicationname=pcapps
    -oc4jpass=welcome -runautoconfig=No

  • Java basic tools

    To start, sorry for posting this here, but this question did not fit on the java tools category.
    I need some guidance on (preferably free/open source tools) for java in order to :
    1. Test java basic code
    2. Test GUI code (can this be done?)
    3. Software quality tools like profilers, etc
    Any help/ideas will be apreciated guys!
    Thank you in advance

    Alexandros wrote:
    To start, sorry for posting this here, but this question did not fit on the java tools category.
    I need some guidance on (preferably free/open source tools) for java in order to :
    1. Test java basic code
    JUnit & TestNG?
    2. Test GUI code (can this be done?)[Test Driven Development: A Practical Guide|http://www.amazon.co.uk/Test-Driven-Development-Practical-Guide/dp/0131016490/ref=sr_1_3?ie=UTF8&s=books&qid=1211543555&sr=8-3] goes over a list of options for this. Alas I can only remember brute force (using java.awt.Robot) and JFCUnit. Neither of them are the one used by the example. The other option is not to and test the Listeners & Swing Models (with the test frameworks above). After all you are really only testing the framework will fire an even when asked, and thats what the frameworks test suite is for.
    3. Software quality tools
    FindBugs
    [Cr�p4J|http://www.cr%61p4j.org/]
    I personally find this one a little to spammy, but if I forced myself to tone them down a little and follow the rules they could help:
    PDM
    CheckStyle
    like profilers, etcNetBeans has a profile built in. It is very pretty. Lots of fancy graphs and lines.
    Edit: De-* Cr�p4, add statement on testing GUIs that will get me flamed.
    Edited by: mlk on 23-May-2008 12:05

  • Front End for BW 3.5 and Java based application

    We are trying to connect two systems; SAP based (through BW) and Non-SAP based (Sybase, Java based) applications. We are exploring BI Java SDK with UDDI or XI services to bring Non-SAP data to NetWeaver. We don't want to store all data from sybase to BW. We could use Front end of BW or any other GUI from SAP Portal. I have heard options like UI, GUI machine, net weaver developer studio, visual composer. Ideally, we would like to combine non-sap and sap data in Business explorer/BW web browser but any other front end suggestion within Net weaver frame work will help us keep our cost down. Please advise.
    Thanks.
    Vinay Karna

    We're in the middle of upgrading from 3.1 SP 22 BW w/6.20 SAPGUI. We've only upgraded a sandbox BW server at this point, but we have upgraded all BW team members with SAPGUI 6.40 FEP 5 and can successfully connect to our 3.5 and 3.1 BWs.

  • Solution Monitoring in JAVA Based Components ?

    Hello Experts,
    I have configured the Solution Monitoring in Solution Manager server with Satelite systems (ECC and  CRM systems.) in Abap based Components
    1.Earlywatch Alert
    2,System Monitroing
    3,Central System Administration
    4,Service Level report   All of them working fine
    Now I want to setup all the above setup for Java based Components. 
    1.Is it possible to setup Solution Monirtoring in Java?.
    2. How to configure the above setup?.
    3. Is there any simulator or Help files availale?.
    Thanks
    Thirumal

    HI Mayank,
    I have followed the below steps.
    basic steps for JAVA EWA:
    configure solution manager diagnostics tool in solman
    install wily interscope manager in solman
    install SMD agents in satellite system
    install wily agents in satellite system.
    make sure about the sp level in satellite system.
    The wily files depends on the SP - level
    1.Could you tell me how to generate the EWA report for JAVA.
    2. Could you give me document/simulator to configure the workcenter
    Thanks
    Thirumal

  • System freezes every time I use a Java based app

    Hi all,
    Very new to all this as I don't really know what to do, where to post or really how to ask about this.
    It started out that I wanted to try to use JAlbum, a program that creates photo albums to share on the web etc..... I upgraded the Java app on my WinXP Pro (service packs and updates in place) to the newest version of Java. I even uninstalled all previous versions of Java, rebooted a couple of times and installed the newer version (j2re-1_4_2_10-windows-i586-p.exe).
    I was instructed to install the JEdit free edit pad type app. The application went smoothly. When I exited the installer my system froze. When I rebooted and started up the .jar file all went well. I created a test file and saved it and then exited the program. System froze up. Started up JAlbum after rebooting, same thing. Program works right but then system freezes up and I have to do a hard reboot.
    I work with 3D stuff all the time (Poser, DAZ Studio) as well as in Photoshop CS so my system is kept up to date for this reason alone. My system is considered very stable my geek friends and so this is very strange as this has NOT ever happened to me in the years I've been using WinXP Pro!!
    Please let me know if there is anything you can suggest, besides reloading up Windows, that's not an option, that's the easy way out and with more thant a hundred programs on board that is not something I relish doing!
    Thanks very much
    System Specs:
    Win XP Pro Edition (SP 1+) - P IV/2.0 Ghz
    NVIDIA GeForce FX 5700LE - 250Mb's DDR RAM
    Sony ViewSonic G810 monitor - 20" viewable screen
    On board - 1 1/2 Gigs of DDR RAM
    1 internal - 1 external Western Digital Hard Drives
    1 internal Seagate Hard drive
    Richard :-)

    I was turned on to a thread here that seems to have some info.
    http://forum.java.sun.com/thread.jspa?threadID=661574
    I did update my Direct X that I'm embarrassed to admit was out of date. Still froze the system after the reboot trying to run a Java based app. So now I have tried the vaiable solution and set the nVidia video card options to Application Controlled and I'll see what happens.
    I'm going to reboot, again and then run JAlbum and keep my fingers crossed. If that doesn't work then how do I implement the last posters suggestion?? Through the Run dialog (copy/paste and hit OK?)
    Thanks much for your help!
    Richard ;-)~

  • Struts and JSF Integration in OPDk-java based portlet

    Hi,
    thanks in advance for your help.
    I'm developing a PDK java based portlet. For some reasons I cannot use the JSF bridge but I would like to integrate Struts and Jsf in my portlet, using Struts to manage actions and navigation and JSF (with ADF Faces components) for the view. I'm using the Strus-Faces library.
    When I try to submit my portlet form, I receive the error "request URL not found on this server". I'm posting some exstracts of my code.
    It's made of three pages: the main one "Integration1ShowPage", "error" and "result". The MainAction.java displays my mainPage, where there's a form. To keep it easy, when the user submits this form, the ActionName returns "success" and the "result" page should be displayed.
    The MainAction works properly: the portlet is displayed but when I tried to submit the form I receive
    The requested URL /provaDeploy/htdocs/integration1/integration1ShowPage.do was not found on this server.Could you please suggest me something?
    Many many thanks,
    B.
    <struts-config>
    <action-mappings>
      <action path = "/mainAction" type = "strutsjsfintegration1.MainAction">
        <forward name = "success" path = "/faces/htdocs/integration1/integration1ShowPage.faces"/>
      </action>
      <action path = "/nameAction" name = "nameForm"
      input = "/faces/htdocs/integration1/integration1ShowPage.faces" scope = "request"
      type = "strutsjsfintegration1.NameAction">
        <forward name = "success" path = "/faces/htdocs/integration1/result.faces"/>
        <forward name = "failure" path = "/faces/htdocs/integration1/error.faces"/>
        <forward name = "again" path = "faces/htdocs/integration1/integration1ShowPage.faces"/>
      </action>
    </action-mappings>
    <controller>
      <set-property property = "processorClass"
       value="org.apache.struts.faces.application.FacesRequestProcessor"/>
       </controller>
    <message-resources parameter="definitiveStrutsPortlet.ApplicationResources"/>
    </struts-config>

    Hi,
    have a look at this whitepaper for how to use JavaScript in ADF.
    http://www.oracle.com/technetwork/developer-tools/jdev/1-2011-javascript-302460.pdf
    This link here (http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html --> see sample 71) shows an integration sample between a Java Applet and ADF. Its a similar use case to yours
    Frank

  • Running logminor from OEM java based console

    Hi,
    I don't see a few applications when i launch java based OEM from my Administration Client (Oracle 10g). For example i don't see logminor viewer in it but from the web, i have searched that i can use "oemapp.bat lmviewer" command to do this. How can i launch tablespace map viewer which was available with oracle 9i OEM. I don't see this with 10g. What are the other applications i can invoke by passing some parameter to "oemapp.bat" file.
    Thanks
    Salman

    Those who live by the GUI, die by the GUI!
    Learn to operate from command line & you'll be self sufficient.

Maybe you are looking for

  • Table of contents will not allow additions

    I am creating a portrait-oriented book.  The TOC function is not allowing me to add paragraph styles nor is it automatically picking up the Chapter names.  When I click the  + symbol on the TOC inspector pane the only option I am given is "Add Sectio

  • VHS to iMac Intel Core Duo

    Can anyone give me some advice on what I need to copy/convert VHS movies (Home Movies) to the iMac so I can put them into iMovie/iDVD?

  • Problems with SCM server 10g and Forms Developer 6i&9i

    Hi, I installed SCM server 10g and try to use it with Forms developer 6i and 9i. The connection to the server works ok but when I choose the container from Source Control Options to check in forms they always go one level higher in the container hier

  • Customize email alert messages for Integration Engine Errors

    Hi experts, I've configured auto-reaction emails for alerts raised by Integration Engine in CCMS. The email content I got is as below: Subject: CCMS alerts PI1 20070319 140556 <i>ALERT for PI1 \ IEngine_PI1_001 Integration Server \ Category MAPPING \

  • 'PDF only scenario' in WDA application

    Hi , experts, does anyone have any experience with the so called 'PDF only scenario' mentioned in note: 0000992492  Termination when using the PDF-only scenario  0000992493  Error in PDF-only scenario after importing Support Pkg 10  The note enables