Need help testing a package.

I recently adopted yed, and I have made an updated PKGBUILD for it (along with other minor changes). But when I build and run it, I get a blank dialog box (using openjdk6 and also tried jre). Can anyone test it? http://www.filedropper.com/yed-342-1srctar I didn't upload to the aur since I don't want people with a working older copy to lose the ability to use yed.

It smells like a classpath problem. Post a sample of the code you are testing, the package statement in particular and the directory structure where the .class files are.

Similar Messages

  • Please i need help for Webutil Package

    Please I need help Friends .
    I have already installed oracle developer 10g . and i don't know how to configure and use WEBUTIL Package .
    So , please anyone tell me how to Configure this package to be ready to use > Step By step Please .
    Thank You

    Hello,
    The step by step installation guide is available in the /webutil folder of your Developer Suite installation.
    Francois

  • IOS 5 workaround?? Neebie needs help testing a theory

    Hello, please excuse my ignorance in advance, but I need help with the installation of iOS 5. I know coutless users have been having issues downloading iOS 5 since it's release however I'm glad to say that the download wasn't an issue with me. My problem is that the back up process was taking an insanely long time. So I saw a tweet this evening that suggested doing a restore on my iPhone 4 back to factory settings and then restoring it from a back up. Well I figured this could possibly work since I just backed up my phone a few days ago. When I did the restore back to factory settings iOS 5 was installed however my question is when I restore using the backup that I did a few days ago (which I am doing now) will my phone be rolled back to the iOS that I had installed previously or will iOS 5 remain?
    Thanks,
    Lee

    You might do a search of the forum with the keywords of the problems you describe and you might get threads with posts by people who might have encountered the same problems you have..

  • Need help in dbms_output package

    Hi,
    I am using dbms_output package in my sql, while displaying the content its not coming in one line. Could you please help me out here.
    DBMS_OUTPUT.PUT_LINE ('Its testing for around '||l_run_time||' minutes in this step, but average test time for this step is '||l_avg_time||' minutes.');
    o/p:
    Its running for around 63 minutes in this step, but average run time for this
    step is 0 minutes.
    Desired o/p
    Its running for around 63 minutes in this step, but average run time for this step is 0 minutes.
    Thanks.

    Plese try this .
    SQL> set serveroutput on
    SQL> set pages 3000
    SQL> set lines 3000
    SQL>
    SQL> declare
    2 l_run_time number ;
    3 l_avg_time number;
    4 begin
    5 l_run_time := 63;
    6 l_avg_time := 0;
    7 DBMS_OUTPUT.PUT_LINE ('Its testing for around '||l_run_time||' minutes in this step,but average
    test time for this step is '||l_avg_time||' minutes.');
    8 end;
    9 /
    Its testing for around 63 minutes in this step,but average test time for this step is 0 minutes.
    PL/SQL procedure successfully completed.
    SQL>
    Thanks,
    Lakshmi Kondu

  • Need help about class package

    Hi All,
    I need one help.
    I have one java class under package com.abc and other java class under default package.
    How do I access java class under default package from java class under com.abc package?.
    Waiting for reply.
    Thanks

    Just add default package in your CLASSPATH seting.
    But it is recommened that all classes must belong to any package. You should avoid to use default package.

  • Need help with Nagios package

    I'm attempting to build a Nagios package, and I'm pretty close, actually have it installed and running, BUT...
    when I run the web interface, it calls some CGI files, and I get an error that it can't find them.  It can't find them because it's looking for them in /repo/packages/nagios/usr/sbin/nagios/sbin  (with '/repo/packages/nagios' being our local repo where the package was built, and '/usr/sbin/nagios/sbin' being where it should be looking for the CGI files.)
    I cheated by setting up that path and copying the files over, just to get it working, but obviously my PKGBUILD needs some help.  I think the problem is pretty simple (just like me) and probably has to do with a configure prefix (with 'cgiurl' being the likely culprit.)
    Here's my package build, any help would be greatly and fantasticly appreciated.
    pkgname=nagios
    pkgver=1.2
    pkgrel=6
    pkgdesc="host and service monitor designed to inform of network problems"
    url="http://nagios.org/"
    license=()
    depends=()
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    source=('http://internap.dl.sourceforge.net/sourceforge/nagios/nagios-1.2.tar.gz')
    md5sums=('414d70e5269d5b8d7c21bf3ee129309f')
    build() {
    mkdir $startdir/pkg/usr
    mkdir $startdir/pkg/usr/sbin
    mkdir $startdir/pkg/usr/sbin/nagios
    mkdir $startdir/pkg/etc
    mkdir $startdir/pkg/etc/rc.d
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=$startdir/pkg/usr/sbin/nagios --with-cgiurl=/nagios/cgi-bin --with-html=/nagios/ --with-nagios-user=nagios --with-nagios-grp=nagios --with-init-dir=$startdir/pkg/etc/rc.d
    make all
    make install
    make install-init
    make install-config
    Thanks much

    manica wrote:
    When you have a Nagios PKGBUILD ready, could you please make it available to others?  That would be great.
    Thank you,
    Darin
    Definitely, if I ever get it working properly.  However, since I have it working it working well enough for our purposes, I won't be putting a whole lot of time in the PKGBUILD.
    Thanks to Cactus for the advice above, but the build failed (don't have the error message handy.)
    This was for Nagios 1.2, I may try building a package for Nagios 2.0b4 and see if I have any luck.

  • Need help with function (package)

    HI,
    Here is my scenario
    I have a package (stored procedure), and 3 functions and 1 procedure. Procedure calls all the functions to fetch data. I am having a trouble in accessing one of the functions. I need to count the number of records satisfy my where clause. Following is my example.
    FUNCTION S_LEVEL (ME_NO IN VARCHAR2, STDATE IN DATE, ENDATE IN DATE) RETURN NUMBER AS LEVEL NUMBER;
    SELECT COUNT(*)
    FROM --- xS, -- SP
    WHERE XS.SRVNBR = SP.NBR
    AND XS.MEMBER_NBR = ME_NO
    AND ((XS.DIR IN ('2824','28241','28242','5173','28952')
    and xs.date between stdate and endate;
    RETURN LEVEL;
    END s_level
    Now when I call this function from procedure (through a Crystal report), it never return anything and just freeze. Could someome please guide me what I am doing wrong or how it is supposed to be done?
    Please help me, I will really appreciate your time and efforts.

    Khurram,
    It's always a bad idea to use a reserved word to name something, regardless whether Oracle allows it or not.
    Sooner or later you'll run into trouble.
    SQL> create or replace
      2  FUNCTION S_LEVEL RETURN NUMBER
      3  AS
      4    v_cnt NUMBER;
      5  --  level NUMBER := 999;
      6  begin
      7    SELECT level
      8    INTO   v_cnt
      9    FROM   dual
    10    CONNECT BY rownum < 2;
    11
    12    RETURN v_cnt;
    13
    14  END s_level;
    15  /
    Function created.
    SQL> select s_level from dual;
       S_LEVEL
             1
    SQL> create or replace
      2  FUNCTION S_LEVEL RETURN NUMBER
      3  AS
      4    v_cnt NUMBER;
      5    level NUMBER := 999;
      6  begin
      7    SELECT level
      8    INTO   v_cnt
      9    FROM   dual
    10    CONNECT BY rownum < 2;
    11
    12    RETURN v_cnt;
    13
    14  END s_level;
    15  /
    Function created.
    SQL> select s_level from dual;
       S_LEVEL
           999
    SQL>

  • Need help in creating package.

    Guys,
    Here is my problem.
    I've have 2 codes. CODE-A and CODE-B. I want to create a package out of them. But here is the problem.
    I'ce create a directory called " /java/code/utils" and moved CODE-A.java and CODE-B.java in it.
    CODE-B is calling CODE-A at one point. I'm able to compile CODE-A and create a CODE-A.class out of it. But when I complete CODE-B, I get an error message "Can not resolve Symbol : CODE-B".
    Pl. note that the first line of CODE-A.java & CODE-B.java are "package utils".
    How can I get CODE-B.java to compile ?
    Can someone please help me ?
    Thanks a bunch in advance.

    It should work as long as " /java/code" is in your classpath when you compile.

  • Need help with a package

    I'm don't know anything about packages or much at all as flash is concern. I'm trying to help the company I work for with a banner for the site... I have everything working fine as long as I do it from my desktop but the moment I put it on the site is blank.. I figure out the it may have something to do with my 1st line. I made a directory on the site with the exact same folder structure but I may be missing something. I thing that maybe it because if i rename or move the folder from where is at on the desktop it gives error in flash. How would i go about doing the import so it will read from a website directory.
    package
    import cn.com.aven.*;
    import flash.display.MovieClip;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.display.Sprite;
    import flash.display.Loader;
    import flash.net.navigateToURL;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    public class BannerRotatorMain extends MovieClip

    The class files are used for creating the file that you will place on the server, the fla and as file do not get placed on the server, just the html, swf, and possibly others.  What files did you load to the server?  Do you have a URL you can share?

  • Help! Need help with preflight package script

    I am trying to write a package with Iceberg to push Office 2004 to 250 Macs. I need a preflight script with a condition that will stop my script if /Applications/Microsoft Office 2004 exists OR if OFFICE 2004 exists. Don't know if searching on the folder name is the best or if there is better way
    If it doesn't exist I want it to continue with with placing Office 2004 in the /Applications folder.
    I don't know how to do conditions (If, then, end)
    PREFLIGHT SCRIPT
    IF /Applications/Microsoft Office 2004 folder exist = STOP
    IF /Applications/Microsoft Office 2004 folder doesn't exist continue with laying down files/folder in the package.
    LAYDOWN FILES
    LAY DOWN FILES IN ICEBERG FILE SECTION OF THE PACKAGE
    POSTFLIGHT SCRIPT
    #!/bin/sh
    #Change to root directory
    cd /
    # Move Microsoft Office X folder to Messages Received folder
    mv /Applications/Microsoft\ Office\ X /Messages\ Received
    #Open Office 2004 Installer
    open /Applications/Utilities/Installers/Office2004Installer
    ALL Mac OS X (10.4.6)
    ALL Mac OS X (10.4.6)
    ALL   Mac OS X (10.4.6)  

    A simple condition (not using iceberg) would be:
    #!/bin/sh
    if [ -e "/Applications/Microsoft Office 2004.app" ]
    then
    echo "Microsoft Office 2004 exists, aborting installation"
    exit 1
    fi
    open -a "/Applications/Utilities/Installers/Office2004Installer"
    If Microsoft Office 2004 is installed then the script will exit with a message. If Microsoft Office 2004 is not there then the last line will be executed and the installer will open.
    PowerBook G4   Mac OS X (10.4.8)   MacBook Pro

  • Need Help With Jar Packages

    Can somebody please help me find the jar files for the following packages?  I'm new to both Crystal Reports as well as Java so please forgive me if I'm asking for the obvious   
    com.crystaldecisions.report.web.viewer.*
    com.crystaldecisions.sdk.occa.report.application.*
    com.crystaldecisions.report.reportengineinterface.*
    Thanks,
    V

    Thanks, that did the trick!
    Edited by: vinnyd on Jun 10, 2010 7:21 PM

  • Duplicated battery drain problems...need help testing.

    I purchased an 80g classic about two weeks ago. The last 3 mornings I woke to find the battery completely dead. Last night I listened to a song or 2 and then pressed the stop button to turn it off. After reading other post I decided to put my ear to the back of the iPod and sure enough the hard drive was throttling at what sounded like full speed. This got the best of me so I spent about an hour messing around and this is what was noticed.
    When launching music from Cover Flow, the hard drive throttles fast the whole time while music is playing causing the battery to drain in a short time. If you launch your music from albums or by artist you will hear the hard drive throttle for about 6 to 8 seconds then go silent. This is the way it should operate.
    Next problem was the battery draining overnight while turned off. This was found simply by launching again from Cover Flow. Launch an album then turn off after song starts. You will notice that the hard drive continues to run very fast until the battery is completely drained. If you go back into menus before shutting down it will turn off properly. Again this does not occur when launching by albums or artists.
    Cover flow = battery drain and this should have been found buy Apple before releasing to the public. It would be nice if someone from Apple would comment.
    I have version 1.0.2 loaded and can’t go back to test version 1.0.1. What I am trying to figure out is this hardware or software. My guess is software but if I can’t get a good feeling about this soon the iPod is getting returned.
    Can anyone help in testing this out, launch from Cover Flow and put your ear to the back of your iPod…listen for about 15 seconds, does the hard drive continue to turn fast? When turning off in Cover Flow, does the hard drive stay on?
    Please post results and software version, thanks.

    I have a Classic 160. With 1.0.1 I had few issues. I was mostly happy, but nervous about all the issues I read in these postings. Only problems I noticed with 1.0.1 were Cover Flow was a bit slow and high rez photos would not show up in manual mode. (But there's no excuse for that is there?) Syncing and battery life were fine. Then I installed 1.0.2. Cover flow works nice and smooth, but I too woke up to a completely drained battery even though I shut the unit down. With 1.0.1 battery seemed to last forever. Now the hard drive stays on after shutting off unit. I found the only way to turn it off is by rebooting the Classic - holding down menu and centre button. For $399 Canadian dollars I am very very disgusted with Apple. Why should a consumer have to constantly check the internet for discussions and updates? And the biggest joke of all is the Apple website offers NO ADVICE, but lets their consumers do all the problem solving for them. Amazing attitude. What's wrong with being upfront and honest that the new iPods have issues? What about the person who can't surf the web all the time for answers? Their Apple iPod purchase becomes a paperweight. My 2 gig keychain MP3 player worked better than this junk. I wish I never bought the thing. For a company like Apple to let the consumer figure out the issues is just not right. Where is firmware 1.0.3????

  • Oracle 10gr2 XE. - Custom Install - Need Help Install Apex Package

    Hello Experts,
    I built a CUSTOM install script for Orage 10gR2 XE with a different dbname. dbblock, ...
    After a lot of issues (seed db, tns errors, no autostart db, ...) and solved by posts found here,
    The new database is mounted and working in console mode and Ole DB/Odbc.
    In the custom script, here are the two Data Dictionnaries packages I've used :
    -- Create Datas Dictionaries
    @%ORACLE_HOME%\rdbms\admin\catalog.sql ;
    @%ORACLE_HOME%\rdbms\admin\catproc.sql ;
    I'm looking for the package name to install for using Apex (http://locahost:8080/apex) like initial instance XE.
    I've tried installing package DBMSXDB.sql (connect / as SYDBA) ... but getting lot of errors
    Thanks for help,
    AlxK

    kfakfa wrote:
    Hello Experts,
    I built a CUSTOM install script for Orage 10gR2 XE with a different dbname. dbblock, ...Not a very smart thing to do. XE software supposedly has the SID hard-coded and your action may result in some incorrect operation of the code.
    >
    After a lot of issues (seed db, tns errors, no autostart db, ...) and solved by posts found here,
    The new database is mounted and working in console mode and Ole DB/Odbc.Yes, that is possible. But at some time, it may not work correctly.
    >
    In the custom script, here are the two Data Dictionnaries packages I've used :
    -- Create Datas Dictionaries
    @%ORACLE_HOME%\rdbms\admin\catalog.sql ;
    @%ORACLE_HOME%\rdbms\admin\catproc.sql ;
    I'm looking for the package name to install for using Apex (http://locahost:8080/apex) like initial instance XE.
    I've tried installing package DBMSXDB.sql (connect / as SYDBA) ... but getting lot of errorsExpect errors and expect inconsistent operation after you get it installed.
    But the instructions for installing Apex are in the Apex home page. Go to http://otn.oracle.com and drill to the Apex home page by going to Products:Development Tools (left edge) and finding Application Express on that resulting page.
    If you are going to potentially violate your agreement or leave the system in an unreliable state, why not simply use the Enterprise Edition?

  • Need Help testing iOS app created in Flash Pro Cs5.5

    I've followed several instructions on how to develop a simple iOS app. I've managed to go all the way through and Publish + create the .ipa. I'm able to then add the file to my iTunes library, but when I then try to add it to my iPod Touch (2nd Generation) I get the following error:
    The app "XXXXXX" was not installed on the iPod "XXXXX's Ipod" because it is not compatible with this iPod.
    I've even tried it with a simple "Hello World!" app but I get the same error.
    I'm using Flash Pro Cs5.5 on a Windows PC.
    Any suggestions?

    I'm having the exact same problem with my iphone 3G. I tried publishing the exact same simple flash app to my iphone, which I already previously tested succesfully, after having downloaded flash 5.5, and now I get the following message (which, I believe, is identical to yours kinant87) :
    "The app "Main" was not installed on the iPhone "Norgaard" because it is not compatible with this iPhone."
    I was trying to make another small app, when I got this problem, which is why I went back to re-test the app I knew was working!
    I've reinstalled all my apple certificates, and also tried using flash builder 4.5, with the same result.
    I also have not jail broken my phone, and was starting to think perhaps the iPhone 3G was no longer supported?

  • Need help on ssis package xml using query

    I have used this reference
    http://sqlblog.com/blogs/peter_debetta/archive/2006/07/13/Using-XML-Data-Type-Methods-to-query-SSIS-Packages.aspx
    I'm able to achieve packagename, taskname, tasktype,parentnodename,childnodename,level,currentnode,childnode,configurationtype.
    Problem - My Package consists of half a dozen sql task & data flow tasks in a single container. After execution of tasks in container, it will call package. Each data flow task consists of source & destination as well, which are not part of the below
    table. I also want to know which source & destination will fall under which tasktype?
    How do I establish under which taskType which TaskType will come? I want to know relationship between tasktype. How can I figure it out which task will come, under that what will be other task? From level field, I can only find at which level but not able
    to figure it out which tasktype. Is it possible can I get 1 and 1.1. and 1.1.1.1 and 2 and 2.1 and...under each object subobjects will be identified in this way.
    Note: I have entered only few rows.
    Microsoft.SqlServer.Dt.Tasks.Execute....=Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask.ExecuteSQLTask, Microsoft.SqlServer.SQLTask, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91
    Packagename
    Taskname
    TaskType
    ParentNodeName
    NodeName
    level
    CurrentNode
    ChildNode
    ConfigurationType
    test1
    Tax_m
    SSIS.Pckage.2
    Tax_m
    1
    some xml
    some xml
    test1
    Seq_Tax_m
    STOCK.SEQUENCE
    Tax_m
    Seq_Tax_m
    2
    some xml 
     some xml
    test1
    Ept_Tax_m
    SSIS.ExecutePackageTask2
    Tax_m
    Ept_Tax_m
    2
     some xml
    test1
    Sql_valid_key_Tax_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_valid_key_Tax_m
    3
     some xml
    test1
    Sql_Dst_Del_Tax_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_Dst_Del_Tax_m
    3
     some xml
    test1
    Dft_Tax_M
    SSIS.Pipeline.2
    Seq_Tax_m
    Dft_Tax_M
    3
     some xml
    test1
    Sql_valid_key_TL_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_valid_key_TL_m
    3
     some xml
    test1
    Sql_Dst_Del_TL_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_Dst_Del_TL_m
    3
     some xml
    test1
    Sql_valid_key_TM_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_valid_key_TM_m
    3
     some xml
    test1
    Sql_valid_key_TC_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_valid_key_TC_m
    3
     some xml
    test1
    Sql_Dst_Del_TM_m
    Microsoft.SqlServer.Dt.Tasks.Execute....
    Seq_Tax_m
    Sql_Dst_Del_TM_m
    3
     some xml
    test1
    Dft_TL_M
    SSIS.Pipeline.2
    Seq_Tax_m
    Dft_TL_M
    3
     some xml

    I am moving it to SSIS.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

Maybe you are looking for