Error when trying to register an array as output

i have a bea-weblogic 5.1 with JDK 1.2.1.
i try to register an array output param, but when the code comes to:
cstmt.registerOutParameter(1,types.ARRAY, "TYPE_STRING_ARRAY");
i get a AbstractMethodError. How comes this?

public function newObject(.... <-- newObject is a function. You're using it like a variable on those lines, e.g. newObject.x = x; You can't do that.
newObject = new classRef(); <--- very bad to use a variable name that is the same as a function that exists. Change the name of that variable and the compiler won't be confused. Make sure you even have scope access to the variable in the other function as well. I don't see you obtaining a reference to the variable 'newObject' by getting it off the display list or you creating any new variable in that function at all with that name, so naturally flash thinks 'newObject' means the function, not a variable.

Similar Messages

  • -251723760 CIP Error when trying to read and array of sgl from and AB ControlLogix PLC

    I have the NI Ethernet/IP module to communicate with an Allen-Bradley ControlLogix PLC. I am doing both reading (only 13 values) and writing (over 200 values). I am using the basic ethernetip tag write.vi to  do the writing. These program are in an executable running on a 'run-time' machine. I have the list of tagnames I am reading and writing to and have confirmed with the person who created the AB load that the array I am writing to on the AB side has more than enough addresses (it is an array of length 300). However I am only able to write 118 values to it. When trying to write 119 or more I get the error:
    -251723760 CIP error - extended status may be available
    I have confirmed with NI OPC Servers with an OPC quick client (running on my development PC) connected to the AB ControlLogix that the values I am writing to up to element 118 are getting through correctly, i.e. if I write 123.456 to sample_array[13] then I in fact see this same value at that location in the OPC quick client.
    To be honest I am a little disappointed that the error message is so cryptic and gives no hints as to what troubleshooting paths are possible. I have tried various combinations of group/tag names with and w/o offsets, e.g. [3], but nothing has led me any further.

    Thanks for the quick response - here are screenshots of before (write OK - writing 118 values - all except last are 0) and after (error - when trying to write an array of length 119) as well as the simple test program I as using.
    Attachments:
    NI Ethernet_IP 3-20-2013 Troubleshooting.zip ‏90 KB

  • Error when trying to register DB using srvctl

    Hello -
    I am getting this error when trying to add this database:
    PRKP-1073 : Cannot create database m433ddg because a database named m433ddg already exists.
    However, I have verified the DB does not exist:
    [oracle@ctolinuxpoc02 ~]$ crs_stat
    NAME=ora.ctolinuxpoc01.ASM1.asm
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc01
    NAME=ora.ctolinuxpoc01.LISTENER_CTOLINUXPOC01.lsnr
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc01
    NAME=ora.ctolinuxpoc01.gsd
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc01
    NAME=ora.ctolinuxpoc01.ons
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc01
    NAME=ora.ctolinuxpoc01.vip
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc01
    NAME=ora.ctolinuxpoc02.ASM2.asm
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc02
    NAME=ora.ctolinuxpoc02.LISTENER_CTOLINUXPOC02.lsnr
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc02
    NAME=ora.ctolinuxpoc02.gsd
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc02
    NAME=ora.ctolinuxpoc02.ons
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc02
    NAME=ora.ctolinuxpoc02.vip
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on ctolinuxpoc02
    Any ideas are greatly appreciated!
    Thanks,
    Mike

    Hi Mike,
    I remember, you had an issue that you had a corrupted OCR once. That seems to be the case here again....
    In general, if SRVCTL complains that it cannot register a DB, since the DB with that name is already registered, this could be a sign that internally (obviously the former database does not show in the crs_stat output) Clusterware can still find fragments of the formerly registered DB. What you can try to do: run an ocrdump as root and check the output file for "m433ddg" and see whether it finds something.
    Let me know, please. Thanks,
    Markus
    Edited by: MarkusM on Apr 20, 2009 5:24 PM - Reason: typos

  • How come i keep getting a network error when trying to register my ipad for imessage?

    I am trying to register my new ipad to imessage, when i click on message it says to enter my apple id to autherize this ipad, so i do.... then it sits there for about 30-45 seconds and comes back with a pop up apple error saying "imessage activation - could not sing in. pealse cheack your network connection and try again"  and i am on Wifi and everything else works (with the exception of facetime which gives me the same error).  I live in IL, USA
    Thank you for your help!

    What you need to do is go into settings
    Then go to wifi
    Tap the blue arrow to the wifi you are connected to
    Tap forget network
    Retap the wifi you want
    Reinsert your wifi code if you have one

  • I bought a new Macbook Air, and got an error when trying to register it with my Apple ID

    So, I bought a new Macbook Air and tried to register it with my Apple ID, however I get an error about the product being already registered.
    I haven't registered it yet. How can I fix this?

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare.
    Best.

  • '.class' expected Error when trying to pass an Array

    In the below method I am trying to return an array. The compiler gives me one error: '.class' expected. I am not sure if I am writing the 'return' statement correctly and not really sure of another way to code it. Below is a portion of the code and I can post all of it if need be but the other methods seem to be fine.
    import java.util.Scanner;
    public class LibraryUserAccount
    Scanner input=new Scanner(System.in);
    private final int MAX_BOOKS_ALLOWED;
    private int checkedOutBookCounter;
    private long accountNumber;
    private String socialSecurityNumber, name, address;
    private final long isbnNumbers[];
    //constructor
    public LibraryUserAccount(long accountNumber, int maxBooksAllowed)
         this.accountNumber = 0;
         MAX_BOOKS_ALLOWED = maxBooksAllowed;
    //returns the array isbnNumbers[]
    public long getCheckedOutBooksISBNNumbers()
         return isbnNumbers[];
    The error displayed as:
    LibraryUserAccount.java:111: '.class' expected
         return isbnNumbers[];
    ^
    1 error
    Thanks in advance for the help.

    Rewriting the method as:
    public long[] getCheckedOutBooksISBNNumbers()
    return isbnNumbers;
    ... has fixed that particular compiler error. Thanks jverd. I appreciate the help.
    On a separate note I am having trouble with initializing the array. What I am trying to do is initialize an array of a size equal to a value passed to the class. Example being:
    //variables
    private final int MAX_BOOKS_ALLOWED;
    private long accountNumber;
    private final long[] isbnNumbers;
    //constructor method
    public LibraryUserAccount(long accountNumber, int maxBooksAllowed)
    this.accountNumber = 0;
    MAX_BOOKS_ALLOWED = maxBooksAllowed;
    long[] isbnNumbers = new long[MAX_BOOKS_ALLOWED];
    My goal is to set the size of isbnNumbers[] to the value of MAX_BOOKS_ALLOWED. I've tried a couple of different ways to initialize the array (the latest listed above) but the compiler doesn't like what I have done. Thanks again.

  • Error when trying to register VMM as Virtual Machine Cloud provider

    Hello, I have some unusual problem with registering VMM server 2012 SP1 in WAP.
    The error is in WAP application log Windows Azure Log\Mgmt-SVC-AdminAPI:
    ''...An error occurred while processing this request.</message><innererror><message>Execution of command Get-SCSPFStamp2 failed. Cause of the problem: An error was encountered while trying to get one or more Stamps. ErrorCode=CmdletGeneralError
    Operation=CmdletReadingStamp</message><type>Microsoft.Management.Odata.CommandInvocationFailedException....."
    VMM is not recorded in the SQL database MmgmtSvcStore, table mpResourseProviders as registered server.
    Any suggestions?

    Hi,
    This issue has been logged as a bug in ColdFusion bug tracker with a bug id #84949
    Cast your vote here!. http://cfbugs.adobe.com/
    HTH

  • Error when trying to check an array

    hi  i am trying to make a game that the score is calculated based on which objects you pick up from the stage. I am having trouble outputting them to the stage.
    I have assigned the symbols from the library using the code below:               
    public function newObject(e:Event)
                                                    var goodObjects:Array = ["WordObject1"];
                                                    var badObjects:Array = ["WordObject2"];
                                                    if (Math.random() < .5)
                                                                    var r:int = Math.floor(Math.random()*goodObjects.length);
                                                                    var classRef:Class = getDefinitionByName(goodObjects[r]) as Class;
                                                                    var newObject:MovieClip = new classRef();
                                                                    newObject.typestr = "good";
                                                    } else
                                                                    r = Math.floor(Math.random()*badObjects.length);
                                                                    classRef = getDefinitionByName(badObjects[r]) as Class;
                                                                    newObject = new classRef();
                                                                    newObject.typestr = "bad";
                                                    newObject.x = Math.random();
                                                    addChild(newObject);
                                                    objects.push(newObject);
                                                    placeWords();
    I then try to display these on the stage using the following code:
    // create random Word objects
                                    public function placeWords() {
                                                    objects = new Array();
                                                    for(var i:int=0;i<numWordObjects;i++) {
                                                                    // loop forever
                                                                    while (true) {
                                                                                    // random location
                                                                                    var x:Number = Math.floor(Math.random()*mapRect.width)+mapRect.x;
                                                                                    var y:Number = Math.floor(Math.random()*mapRect.height)+mapRect.y;
                                                                                    // check all blocks to see if it is over any
                                                                                    var isOnBlock:Boolean = false;
                                                                                    for(var j:int=0;j<blocks.length;j++) {
                                                                                                     if (blocks[j].hitTestPoint(x+gamesprite.x,y+gamesprite.y)) {
                                                                                                                     isOnBlock = true;
                                                                                                                     break;
                                                                                    // not over any, so use location
                                                                                    if (!isOnBlock) {
                                                                                                     newObject.x = x;
                                                                                                     newObject.y = y;
                                                                                                     newObject.gotoAndStop(Math.floor(Math.random()*1)+1);
                                                                                                     gamesprite.addChild(newObject);
                                                                                                     objects.splice(newObject);
                                                                                                     break;
    I get 3 errors,
    Line 119
    1119: Access of possibly undefined property x through a reference with static type Function.
    Line 120
    1119: Access of possibly undefined property y through a reference with static type Function.
    Line 122
    1067: Implicit coercion of a value of type Function to an unrelated type flash.display:DisplayObject.
    any help much appreicated.
    regards
    James

    public function newObject(.... <-- newObject is a function. You're using it like a variable on those lines, e.g. newObject.x = x; You can't do that.
    newObject = new classRef(); <--- very bad to use a variable name that is the same as a function that exists. Change the name of that variable and the compiler won't be confused. Make sure you even have scope access to the variable in the other function as well. I don't see you obtaining a reference to the variable 'newObject' by getting it off the display list or you creating any new variable in that function at all with that name, so naturally flash thinks 'newObject' means the function, not a variable.

  • Firefox sync regestration keeps giving me an unknown error when trying to register with my email

    i cannot complete the first step to register for firefox sync, because when i try to enter my email and 'unknown error' pops up, and does not tell me what the error is or what i should do.

    Ignore that error message and type your entire email address.

  • Ajax submit failed: error =403, Forbidden, Forbidden when trying to register account

    I get: "Ajax submit failed: error =403, Forbidden" when trying to register with ePrint
    This question was solved.
    View Solution.

    Tim_H wrote:
    Hi BOLAINE,
    I'm sorry you're having this problem.  The best way to work around it is to try using a different browser.  Preferably either nternet Explorer, Firefox, or Chrome.
    Let me know if this helps, please.
    I  having the same problem getting Ajax submit failed=403 when trying to register account.  All I have is a new Chromebook. Am I stuck?  Don't seem to have an option of other browsers...?
    cg

  • Error code 403 when trying to register product or set up eprint

    hp 8600 pro N911a
    error code 403 when trying to register product

    Hello v8442,
    It may have been that the servers were undergoing updates that day.  Try to register again, and if you get the same error, try using a different web browser.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • I keep receiving security errors when trying to open a pdf.

    I keep receiving a security error when trying to run my javascript program, the function previously worked, but now creates an error after I entered the addWaterMark function. I have put my whole code below for my script.
    The basic function is to load a text file into an array which has the path and file location, open the document, add a watermark, save the file, close the file, then repeat for the next array position.
    I am using Acrobat Standard so I am unable to debug using the console, therefore I am struggling to understand what I am doing wrong. I will point out that I am not a fluent programmer, only have a basic knowledge of programming.
    Code
    app.addSubMenu(
      cName:"Extras",
      cParent:"Edit"
    app.addMenuItem(
      cName:"Import File",
      cParent:"Extras",
      cExec:"main()"
    function main()
      var fileCount = 0
      var listOfFiles = []
      listOfFiles = importData()
      amountOfFiles = listOfFiles.length
      for (var i =0; i<listOfFiles.length; i++)   //calculates amount of entries in the array listOfFiles
      newFile = openFile(listOfFiles[i]) //Opens current file
      var d = app.activeDocs; //Gets current document title name 
      addWater(d[0]);
      app.execMenuItem("Save");
      for( var x in d ) d[x].closeDoc();
    function addWater(myName)
    { app.alert("watermark",0);
      myName.addWatermarkFromText(
      cText: "OBSOLETE",
      cFont: "Arial",
      nFontSize:36,
      aColor: color.red,
      nOpacity: 0.5
    //function SaveFile saves the current file but with an addition of WM to the filename
    saveFile = app.trustedFunction(function(currentDoc, currentFileName)
      { app.alert("savefile",0);
      app.beginPriv();
      currentDoc.saveAs(currentFileName);
      app.endPriv();
    //function openFile which opens the file named in the variable currentFilename
    openFile = app.trustedFunction(function(currentFileName)
      {app.alert("openfile" + currentFileName,0);
      app.beginPriv();
      app.openDoc(currentFileName);
      app.endPriv();
    //importData function imports the paths and filenames contained in the list.txt located on the desktop
    importData = app.trustedFunction(function()
      {app.alert("import",0);
      app.beginPriv();
      cFilePath = "/C/Users/103019944/Desktop/File_List.txt";
      var stmData = util.readFileIntoStream(cFilePath);
      var cData = util.stringFromStream(stmData);
      var cMsg = cData;
      var fileArray = cMsg.split("\r\n");
      for (var i =0; i<fileArray.length; i++)
      return(fileArray);
      app.endPriv();

    I have found the error, you are quite correct I had an extra letter in the filename, I thought I'd checked this but just shows that sattention to detail is the key.
    The script works perfectly now, thanks you for your help, really appreciated.
    Thanks again
    Ben

  • Error while trying to register user to iFS 9.0.1

    Hi ,
    We are getting following error while trying to register user with our custom application. When I checked the forums it says the unique constraint might be the problem but I don't see any unique constraint violation in my exception trace. We are using 9.0.1 with 9.0.1 Database.
    Here is the stack trace:
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-00600: internal error code, arguments: [25012], [10], [0], [], [], [], [], []
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:184)
         at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java:1768)
         at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java:1380)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1868)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1787)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2377)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:427)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:492)
         at oracle.ifs.server.S_LibrarySession.execute(S_LibrarySession.java:14319)
         at oracle.ifs.server.S_LibraryObject.insertRow(S_LibraryObject.java:3251)
         at oracle.ifs.server.S_LibraryObject.insertRows(S_LibraryObject.java:3150)
         at oracle.ifs.server.OperationState.executeAtomicOperations(OperationState.java:487)
         at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2716)
         at oracle.ifs.server.S_LibrarySession.newLibraryObject(S_LibrarySession.java:7922)
         at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7963)
         at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7945)
         at oracle.ifs.server.S_LibrarySession.DMNewPublicObject(S_LibrarySession.java:7604)
         at oracle.ifs.beans.LibrarySession.DMNewPublicObject(LibrarySession.java:7901)
         at oracle.ifs.beans.LibrarySession.NewPublicObject(LibrarySession.java:5345)
         at oracle.ifs.beans.LibrarySession.createPublicObject(LibrarySession.java:2973)
         at oracle.ifs.adk.user.UserManager.createDirectoryUser(UserManager.java:1122)
         at oracle.ifs.adk.user.UserManager.createUser(UserManager.java:987)
         at com.cisco.as.ifs.management.fndUserManager.createUser(fndUserManager.java:131)
    Thanks
    Rajesh Basawa

    Rajesh,
    I was wondering did you manage to get this problem fixed we are having a similar problem when creating an iFS object; the following is the stack trace
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    [Mon Jun 16 14:19:47 BST 2003] stderr: java.sql.SQLException: ORA-00600: internal error code, arguments: [25012], [5], [0], [], [], [], [], []
    [Mon Jun 16 14:19:47 BST 2003] stderr:
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java:1759)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java:1371)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1852)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1771)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2361)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:422)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:487)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.execute(S_LibrarySession.java:14319)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibraryObject.insertRow(S_LibraryObject.java:3251)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibraryObject.insertRows(S_LibraryObject.java:3150)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.OperationState.executeAtomicOperations(OperationState.java:487)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2716)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.newLibraryObject(S_LibrarySession.java:7922)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7963)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7945)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.server.S_LibrarySession.DMNewPublicObject(S_LibrarySession.java:7604)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.beans.LibrarySession.DMNewPublicObject(LibrarySession.java:7901)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.beans.LibrarySession.NewPublicObject(LibrarySession.java:5345)
    [Mon Jun 16 14:19:47 BST 2003] stderr:      at oracle.ifs.beans.LibrarySession.createPublicObject(LibrarySession.java:2973)

  • Sql Server Web Edition Reporting Services errors when trying to connect to Windows Azure SQL

    I am using a preconfigured image from the Azure VM Gallery to create a VM.
    --> Sql Server 2012 SP1 Web running under Windows Server 2008 R2
    After configuring Reporting Services I get the following error when trying to run a report that connects to my Azure SQL db.
    An error has occurred during report processing. (rsProcessingAborted)
    An attempt has been made to use a data extension 'SQLAZURE' that is either not registered for this report server or is not supported in this edition of Reporting Services. (rsDataExtensionNotFound)
    On the VM using SSMS I can connect to the Azure SQL db.  On the VM in Report Builder when I define a connection I get a similar error to the one above when I test that connection.  I am using Microsoft Azure SQL as the data source type. 
    Interestingly in Report Builder, if I proceed past the connection definition, I can see the tables from my Azure SQL db in the dataset definition page.
    One more note.  If I use a different image from the Gallery (Sql Server 2012 Standard SP1 on Windows Server 2012) my report builder connection works and the reports run fine.  I believe that the Azure documentation says that Sql Server Web edition
    is an acceptable choice for the SSRS on VM for reporting.
    Any thoughts or suggestions?
    Thanks -- Tom Reilly

    Hello,
    A VM with SQL Server 2008 R2 or 2012 supports all Reporting Services features, including all supported data sources, customization and extensibility, and scheduled report execution and delivery.
    Did you run the report in Report Manager,or preview the report in Report Builder? Which version of the Report Builder you installed in the Windows Azure VM? SQL Reporting does not support reports created from Report Builder 1.0 or 2.0. You can create reports
    using Report Builder 3.0 and then upload the reports.
    What's more, please also check the database source credential of the report.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Dns error when trying to start ssgd 4.4

    Hi,
    I get the following error when trying to start a fresh install of SSGD 4.4 on sun solaris 10 sparc machine
    bash-3.00# /opt/tarantella/bin/tarantella start
    Starting Secure Global Desktop server (version 4.40.917). Please wait...
    2008/05/12 18:34:43.082 (pid 27580) server/common/fatalerror #1210597482966
    Sun Secure Global Desktop Software (4.4) FATAL ERROR:
    The configured DNS name of the server (unknown) couldn't be
    resolved in DNS.
    The server can't start.
    Check your DNS configuration.
    I tried changing the servername in the httpd.conf file but still get the above errors. What could be the possibel reasons for this error.
    Thanks,

    Hi,
    I changed the peerdns name to "penguin.everett.nl"
    Cbash-3.00# /opt/tarantella/bin/tarantella status
    Array members (1):
    - penguin.everett.nl (primary): NOT ACCEPTING CONNECTIONS.
    bash-3.00#
    However, when I now start the tarantella I get the following error :
    bash-3.00# /opt/tarantella/bin/tarantella stop
    Secure Global Desktop services are not currently running.
    bash-3.00# /opt/tarantella/bin/tarantella start
    Starting Secure Global Desktop server (version 4.40.917). Please wait...
    javax.naming.NameNotFoundException: asad.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.sco.jndi.toolkit.provider.SimpleContinuation.getSimpleException(SimpleContinuation.java:62)
    at com.sco.jndi.toolkit.provider.SimpleContinuation.getSimpleException(SimpleContinuation.java:82)
    at com.sco.jndi.toolkit.provider.ToolkitContext.namingException(ToolkitContext.java:386)
    at com.sco.jndi.toolkit.provider.ToolkitContext.namingException(ToolkitContext.java:401)
    at com.sco.jndi.toolkit.provider.ToolkitContext.nameNotFound(ToolkitContext.java:436)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties
    at com.sco.jndi.provider.file.FileCacheObject.<init>(FileCacheObject.java:62)
    at com.sco.jndi.provider.file.FileCacheObject.<init>(FileCacheObject.java:39)
    at com.sco.jndi.provider.file.FileCache.lookup(FileCache.java:83)
    at com.sco.jndi.provider.file.FileCache.lookup(FileCache.java:68)
    at com.sco.jndi.provider.file.FileContext.child(FileContext.java:612)
    at com.sco.jndi.provider.file.FileContext.f_lookupLink(FileContext.java:889)
    ... 12 more
    java.io.IOException: Failed to load all Beans : javax.naming.NameNotFoundException: asad.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties]
    at com.sco.tta.server.server.JServer.<init>(JServer.java:327)
    at TTAServer.run(TTAServer.java:391)
    at java.lang.Thread.run(Thread.java:619)
    bash-3.00# /opt/tarantella/bin/tarantella status
    Array members (1):
    - penguin.everett.nl (primary): NOT ACCEPTING CONNECTIONS.
    bash-3.00#

Maybe you are looking for

  • 2 Issues since 7.4 Update (and 7.4.1 Doesn't resolve it)

    Hi, I upgraded to QT 7.4 and 2 problems started appearing, neither of which were solved with the recent QT 7.4.1: 1) Keyboard Inputs Stop Responding: When I open a QT movie (and QT for the first time) I can hit spacebar, use arrow keys, etc... all of

  • HELP!  My Webpage started giving me an error message and I don't know why!

    Hi! I'm brand new to using Mac's and iWeb and I'm trying to set up a website for my business. I had completed a welcome page and published earlier today. A friend of mine was able to go to the URL I gave her and view my page without any problems. Now

  • Need to download version of Dreamweaver for Windows 8.1, don't want CC version

    I lost my old Dreamweaver MX version when my Windows XP PC died.  I have Windows 8.1 now and only need a simple version of DW to download for occasional use.  I don't want to use CC with its monthly service charge.  How can I download even an old ver

  • My upload hangs after 30 kb

    Am working with uploading a file from one client to another client through a server(because of securety reasons) but somehow only 30kb og data can be uploadet then the application just stops. No errors are givin it just hangs. If the file is smaller

  • Upgrade planned

    Hi all, I am currently looking to upgrade our systems 4.7 to ECC 6.0. At the same time I would need to upgrade the hardware as well. I have read many notes and documentation on the area, but still I am not sure on how this is best done practically. W