Start SmartVIew Addin with VBA

Hi,
I need to activate the Addin of SmartView via VBA code from an Excel Worksheet.
So far I created a worksheet and added the module SmartViewVBA to the VBA-Project.
I wrote a program to start the addin:
Sub Open_SMARTVIEW()
AddIns.Add Filename:="C:\Oracle\SmartView\Bin\HsTbar.xla"
AddIns("Oracle Hyperion Smart View for Office, Fusion Edition").Installed = True
End Sub
This added the HSTbar.xla to my VBA-projects. I also got the tool bar activated by this.
In the extras / addins I see that the SmartView Addin is activated. Nevertheless all SmartView Buttons do not react when I click on them and I am missing the SmartView menu bar.
Has anybody an idea or hint, what needs to be done in addition?
Best regards,
Helge

Smart View is a com add-in so you cannot unload it this way you would need to use code to change the 'connect' state of the com add-in:
Function LoadSV(enable As Boolean)
Dim oAin As AddIn
Dim comAin As COMAddIn
For Each oAin In Application.AddIns
Debug.Print oAin.Name
If oAin.Name = "HsTbar.xla" Then
Debug.Print oAin.Installed
oAin.Installed = enable
End If
Next
For Each comAin In Application.COMAddIns
Debug.Print comAin.Description
If comAin.Description = "Oracle Hyperion Smart View for Office, Fusion Edition" Then
Debug.Print comAin.Connect
comAin.Connect = enable
End If
Next
End Function
This will vary based on your smart view version and OS. In fact in windows 7 you would need to be running Excel as an admin and this in unlikely. Is there some reason you are needing to unload SV in VBA?

Similar Messages

  • Start explorer.exe with vba

    Hi,
    I found on the web that you can apply registry changes take effect immediately without restarting an application (Excel) by ending the explorere.exe process in the taskmanager and restart it.
    The following
    Shell ("cmd.exe /c taskkill /f /im explorer.exe")
    ends the process but how can I restart it. just running explorer.exe is not enough.

    Try Below
    Sub Rumi()
    Shell ("cmd.exe /c taskkill /f /im explorer.exe")
    Application.Wait Now() + TimeValue("00:00:05")
    Shell "cmd.exe /c explorer.exe"
    End Sub
    Best Regards,
    Asadulla Javed, Kolkata
    Please do not forget to click “Vote as Helpful” if any post helps you and
    "Mark as Answer”if it solves the issue.

  • SmartView addin using VB

    Has anyone seen a problem when using the Smartview addin with VB? Recently upgraded the SV patch to (9.3.1.6) to fix Excel 2007 from shutting down abnormally.
    I have a problem using the VB to copy/paste data with the addin. I can get the entire code to perform correctly if I disable the addin. However, that is defeating the purpose of the automation. I have it set up to connect, retrieve, then copy/paste values into a new workbook to send to users.

    I tried using the code in the supplied example, and I am still unable to export to Excel.
    I am getting an output file, but it is 0 bytes in size (empty file). 
    If I change the export type to crReportExportFormatTabSeparatedText, then I get a file, an ugly file, but it does have the data.
    Here is the code as it looks now
    01   Dim myBytes As ByteArray
    02   If strExpType = "14" Then ' word format
    03  myBytes = rcd.PrintOutputController.Export(CrReportExportFormatEnum.crReportExportFormatMSWord)
    04   ElseIf strExpType = "30" Or strExpType = "27" Then  ' excel format
    05  Dim exportOptions As New CrystalDecisions.ReportAppServer.ReportDefModel.ExportOptions
    06  exportOptions.ExportFormatType = CrReportExportFormatEnum.crReportExportFormatMSExcel
    07  Dim ExcelexportOptions As New ExcelExportFormatOptions
    08  ExcelexportOptions.BaseAreaGroupNumber = 1
    09  ExcelexportOptions.BaseAreaType = CrAreaSectionKindEnum.crAreaSectionKindReportHeader
    10  ExcelexportOptions.ConstantColWidth = 20
    11  ExcelexportOptions.ConvertDatesToStrings = True
    12  ExcelexportOptions.StartPageNumber = 1
    13  ExcelexportOptions.EndPageNumber = 5
    14  ExcelexportOptions.ExcelTabHasColumnHeadings = True
    15  ExcelexportOptions.ExportPageAreaPairType = CrExportPageAreaKindEnum.crExportPageAreaKindForEachPage
    16  ExcelexportOptions.ExportPageBreaks = True
    17  ExcelexportOptions.MaintainRelativeObjectPosition = True
    18  ExcelexportOptions.ShowGridlines = False
    19  ExcelexportOptions.UseConstantColWidth = True
    20
    21  exportOptions.FormatOptions = ExcelexportOptions
    22
    23  myBytes = rcd.PrintOutputController.ExportEx(exportOptions)
    24   Else ' PDF Format
    25  myBytes = rcd.PrintOutputController.Export(CrReportExportFormatEnum.crReportExportFormatPDF)
    26   End If
    Again, changing line 06 to
        exportOptions.ExportFormatType = CrReportExportFormatEnum.crReportExportFormatTabSeparatedText
    produces results.
    I am using Crystal Reports 2008 v1

  • Smartview- essbase conn with VBA

    Hi All,
       I am trying connect to essbase  using smartview  with VBA macros..but few  challenges in connecting to the essbase server..
    code -----------
    Sub RetrieveSheet(SheetName)
    'A = EssVConnect(SheetName, Username, Password, "Lxsy9dbtk.cos.is.keysight.com", "MR", "MR")
    bconn = HypConnectionExists("TestConnection31")
    If bconn = True Then
    bconn = HypRemoveConnection("TestConnection31")
    End If
    A = HypCreateConnection(Empty, Username, Password, HYP_ESSBASE, "http://LXSY9DBTK.COS.IS.KEYSIGHT.COM:13080/aps/SmartView", _
                            "LXSY9DBTK.Cos.IS.KEYSIGHT.COM", "MR", "MR", "TestConnection31", "EssbaseMRConnect")
    A = HypConnect(Empty, Username, Password, "TestConnection31")
    If A <> 0 Then
        MsgBox (A)
        MsgBox ("Login failure has forced routine to terminate.")
        AbortStatus = "Yes"
        Exit Sub
    End If
    Thanks in Advance
    Siva

    Hi Celvin & Amarnath,
       Thanks for both of you for replying,  but still I am not able to resolve after making few changes suggested in the above responses..  This is my modified code
    'A = HypCreateConnection(Empty, Username, Password, HYP_ESSBASE, "http://LXSY9DBTK.COS.IS.company.COM:13080/aps/SmartView", _
                            "LXSY9DBTK.Cos.IS.company.COM", "MR", "MR", "TestConnection31", "EssbaseMRConnect")
    A = HypCreateConnection(Empty, Username, Password, HYP_ESSBASE, "http://LXSY9DBTK.COS.IS.company.COM:19000/aps/APS", _
                            "LXSY9DBTK.Cos.IS.company.COM", "MR", "MR", "MR:MR", "Analytic  Provider Services")
    A = HypConnect(Empty, Username, Password, "MR:MR")
    If A <> 0 Then
        MsgBox (A)
        MsgBox ("Login failure has forced routine to terminate.")
        AbortStatus = "Yes"
        Exit Sub
    End If
      I get an  error code   as   -15  . There is no any further error information for troubleshooting.  Can you please help me here as what is the mistake i am making in connecting to the essbase cube.
    Thanks
    Siva

  • Smartview Addin upgrade and APS

    We are on EPM 11.1.2.600 and APS version is 11.1.2.102 as is the Smartview addin. Business is looking at the feature set in later releases of the Smartview addin, specifically Smart Query and some of the VBA extensions of later versions.
    We are currently an old Essbase addin shop, with plans to go to Smartview in the near future, so I am not as 'up to speed' on Smartview. My question is if we upgrade to the latest and greatest version of Smartview do I need to upgrade the APS server also? I downloaded 11.1.2.5.x and was able to connect to Essbase and planning without issues but I want to make sure all features/functionality is available. Thanks.

    May I know which is your APS server , its recommended to use Web logic for latest version .  May be there can be in compatibility if its web sphere !!

  • Upload data from excel with vba by calling a function module

    Hello all,
    i have a problem with the function module "ALSM_EXCEL_TO_INTERNAL_TABLE". I will call this function module with vba to load data from excel to sap with a Buttonclick. I have copied this function module and set it remotable. But i can´t call it from excel.
    Can you give me some tips how can i
    upload data from excel with vba by click a button.
    The problem seems the function: call method cl_gui_frontend_services=>clipboard_import in the function module, because when i comment this function call the vba-call is true but no results. 
    How can I call the function module correct with vba?
    Thanks a lot for your tips!!!!
    Chris
    Message was edited by:
            Christoph Kirschner

    HI
    Uploading data directly from Excel file format
    * Upload data direct from excel.xls file to SAP
    REPORT ZEXCELUPLOAD.
    PARAMETERS: filename LIKE rlgrap-filename MEMORY ID M01,
                begcol TYPE i DEFAULT 1 NO-DISPLAY,
                begrow TYPE i DEFAULT 1 NO-DISPLAY,
                endcol TYPE i DEFAULT 100 NO-DISPLAY,
                endrow TYPE i DEFAULT 32000 NO-DISPLAY.
    * Tick don't append header
    PARAMETERS: kzheader AS CHECKBOX.
    DATA: BEGIN OF intern OCCURS 0.
            INCLUDE STRUCTURE  alsmex_tabline.
    DATA: END OF intern.
    DATA: BEGIN OF intern1 OCCURS 0.
            INCLUDE STRUCTURE  alsmex_tabline.
    DATA: END OF intern1.
    DATA: BEGIN OF t_col OCCURS 0,
           col LIKE alsmex_tabline-col,
           size TYPE i.
    DATA: END OF t_col.
    DATA: zwlen TYPE i,
          zwlines TYPE i.
    DATA: BEGIN OF fieldnames OCCURS 3,
            title(60),
            table(6),
            field(10),
            kz(1),
          END OF fieldnames.
    * No of columns
    DATA: BEGIN OF data_tab OCCURS 0,
           value_0001(50),
           value_0002(50),
           value_0003(50),
           value_0004(50),
           value_0005(50),
           value_0006(50),
           value_0007(50),
           value_0008(50),
           value_0009(50),
           value_0010(50),
           value_0011(50),
           value_0012(50),
           value_0013(50),
           value_0014(50),
           value_0015(50),
           value_0016(50),
           value_0017(50),
           value_0018(50),
           value_0019(50),
           value_0020(50),
           value_0021(50),
           value_0022(50),
           value_0023(50),
           value_0024(50),
           value_0025(50),
           value_0026(50),
           value_0027(50),
           value_0028(50),
           value_0029(50),
           value_0030(50),
           value_0031(50),
           value_0032(50),
           value_0033(50),
           value_0034(50),
           value_0035(50),
           value_0036(50),
           value_0037(50),
           value_0038(50),
           value_0039(50),
           value_0040(50),
           value_0041(50),
           value_0042(50),
           value_0043(50),
           value_0044(50),
           value_0045(50),
           value_0046(50),
           value_0047(50),
           value_0048(50),
           value_0049(50),
           value_0050(50),
           value_0051(50),
           value_0052(50),
           value_0053(50),
           value_0054(50),
           value_0055(50),
           value_0056(50),
           value_0057(50),
           value_0058(50),
           value_0059(50),
           value_0060(50),
           value_0061(50),
           value_0062(50),
           value_0063(50),
           value_0064(50),
           value_0065(50),
           value_0066(50),
           value_0067(50),
           value_0068(50),
           value_0069(50),
           value_0070(50),
           value_0071(50),
           value_0072(50),
           value_0073(50),
           value_0074(50),
           value_0075(50),
           value_0076(50),
           value_0077(50),
           value_0078(50),
           value_0079(50),
           value_0080(50),
           value_0081(50),
           value_0082(50),
           value_0083(50),
           value_0084(50),
           value_0085(50),
           value_0086(50),
           value_0087(50),
           value_0088(50),
           value_0089(50),
           value_0090(50),
           value_0091(50),
           value_0092(50),
           value_0093(50),
           value_0094(50),
           value_0095(50),
           value_0096(50),
           value_0097(50),
           value_0098(50),
           value_0099(50),
           value_0100(50).
    DATA: END OF data_tab.
    DATA: tind(4) TYPE n.
    DATA: zwfeld(19).
    FIELD-SYMBOLS: <fs1>.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
           EXPORTING
                mask      = '*.xls'
                static    = 'X'
           CHANGING
                file_name = filename.
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           EXPORTING
                filename                = filename
                i_begin_col             = begcol
                i_begin_row             = begrow
                i_end_col               = endcol
                i_end_row               = endrow
           TABLES
                intern                  = intern
           EXCEPTIONS
                inconsistent_parameters = 1
                upload_ole              = 2
                OTHERS                  = 3.
      IF sy-subrc <> 0.
        WRITE:/ 'Upload Error ', SY-SUBRC.
      ENDIF.
    END-OF-SELECTION.
      LOOP AT intern.
        intern1 = intern.
        CLEAR intern1-row.
        APPEND intern1.
      ENDLOOP.
      SORT intern1 BY col.
      LOOP AT intern1.
        AT NEW col.
          t_col-col = intern1-col.
          APPEND t_col.
        ENDAT.
        zwlen = strlen( intern1-value ).
        READ TABLE t_col WITH KEY col = intern1-col.
        IF sy-subrc EQ 0.
          IF zwlen > t_col-size.
            t_col-size = zwlen.
    *                          Internal Table, Current Row Index
            MODIFY t_col INDEX sy-tabix.
          ENDIF.
        ENDIF.
      ENDLOOP.
      DESCRIBE TABLE t_col LINES zwlines.
      SORT intern BY row col.
      IF kzheader = 'X'.
        LOOP AT intern.
          fieldnames-title = intern-value.
          APPEND fieldnames.
          AT END OF row.
            EXIT.
          ENDAT.
        ENDLOOP.
      ELSE.
        DO zwlines TIMES.
          WRITE sy-index TO fieldnames-title.
          APPEND fieldnames.
        ENDDO.
      ENDIF.
      SORT intern BY row col.
      LOOP AT intern.
        IF kzheader = 'X'
        AND intern-row = 1.
          CONTINUE.
        ENDIF.
        tind = intern-col.
        CONCATENATE 'DATA_TAB-VALUE_' tind INTO zwfeld.
        ASSIGN (zwfeld) TO <fs1>.
        <fs1> = intern-value.
        AT END OF row.
          APPEND data_tab.
          CLEAR data_tab.
        ENDAT.
      ENDLOOP.
      CALL FUNCTION 'DISPLAY_BASIC_LIST'
           EXPORTING
                file_name     = filename
           TABLES
                data_tab      = data_tab
                fieldname_tab = fieldnames.
    *-- End of Program
    <b>Excel Upload Alternative - KCD_EXCEL_OLE_TO_INT_CONVERT</b>
    *Title : Excel Uploading
    TYPES:   BEGIN OF t_datatab,
             col1(25)  TYPE c,
             col2(30)  TYPE c,
             col3(30)  TYPE c,
             col4(30)  TYPE c,
             col5(30)  TYPE c,
             col6(30)  TYPE c,
             col7(30) TYPE c,
             col8(30)  TYPE c,
             col9(30)  TYPE c,
             col10(30)  TYPE c,
             col11(30)    TYPE c,
           END OF t_datatab.
    DATA: it_datatab TYPE STANDARD TABLE OF t_datatab INITIAL SIZE 0,
          wa_datatab TYPE t_datatab.
    Data : p_table type t_datatab occurs 0 with header line.
    DATA : gd_scol   TYPE i VALUE '1',
           gd_srow   TYPE i VALUE '1',
           gd_ecol   TYPE i VALUE '256',
           gd_erow   TYPE i VALUE '65536'.
    DATA: it_tab TYPE filetable,
          gd_subrc TYPE i.
    field-symbols : <fs>.
    *Selection screen definition
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS:  p_file LIKE rlgrap-filename
                   DEFAULT 'c:test.xls' OBLIGATORY.   " File Name
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      REFRESH: it_tab.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title     = 'Select File'
          default_filename = '*.xls'
          multiselection   = ' '
        CHANGING
          file_table       = it_tab
          rc               = gd_subrc.
      LOOP AT it_tab INTO p_file.
    *    so_fpath-sign = 'I'.
    *    so_fpath-option = 'EQ'.
    *    append so_fpath.
      ENDLOOP.
    START-OF-SELECTION.
      PERFORM upload_excel_file TABLES   it_datatab
                                 USING   p_file
                                         gd_scol
                                         gd_srow
                                         gd_ecol
                                         gd_erow.
    * END-OF-SELECTION.
    END-OF-SELECTION.
      LOOP AT it_datatab INTO wa_datatab.
        WRITE:/ wa_datatab-col1,
                wa_datatab-col2,
                wa_datatab-col3,
                wa_datatab-col4,
                wa_datatab-col5,
                wa_datatab-col6,
                wa_datatab-col7,
                wa_datatab-col8,
                wa_datatab-col9,
                wa_datatab-col10,
                wa_datatab-col11.
      ENDLOOP.
    *&      Form  UPLOAD_EXCEL_FILE
    *       upload excel spreadsheet into internal table
    *      -->P_TABLE    Table to return excel data into
    *      -->P_FILE     file name and path
    *      -->P_SCOL     start column
    *      -->P_SROW     start row
    *      -->P_ECOL     end column
    *      -->P_EROW     end row
    FORM upload_excel_file TABLES   p_table
                           USING    p_file
                                    p_scol
                                    p_srow
                                    p_ecol
                                    p_erow.
      DATA : lt_intern TYPE  kcde_cells OCCURS 0 WITH HEADER LINE.
    * Has the following format:
    *             Row number   | Colum Number   |   Value
    *      i.e.     1                 1             Name1
    *               2                 1             Joe
      DATA : ld_index TYPE i.
    * Note: Alternative function module - 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
        EXPORTING
          filename                = p_file
          i_begin_col             = p_scol
          i_begin_row             = p_srow
          i_end_col               = p_ecol
          i_end_row               = p_erow
        TABLES
          intern                  = LT_INTERN
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
        FORMAT COLOR COL_BACKGROUND INTENSIFIED.
        WRITE:/ 'Error Uploading file'.
        EXIT.
      ENDIF.
      IF lt_intern[] IS INITIAL.
        FORMAT COLOR COL_BACKGROUND INTENSIFIED.
        WRITE:/ 'No Data Uploaded'.
        EXIT.
      ELSE.
        SORT lt_intern BY row col.
        LOOP AT lt_intern.
         MOVE lt_intern-col TO ld_index.
         assign component ld_index of structure
         p_table to <fs>.
    move : lt_intern-value to <fs>.
    *     MOVE lt_intern-value TO p_table.
          AT END OF row.
            APPEND p_table.
            CLEAR p_table.
          ENDAT.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "UPLOAD_EXCEL_FILE
    Regards
    Pavan

  • BI 7.0 : Refresh of only one Query with VBA in  a MultiQueryWorkbook

    Does anyone know how to refresh only one query with VBA in a Workbook with several queries on different sheets?

    Hello together,
    thanks for your replies.
    In the backend EHP1 is installed and I think we don't need an extra update for the frontend. But in the VBA code of the frontend the code didn't changed.
    Our BEX Analyzer Addin version is:  7100.4.1100.34
    BEx Patch Level is: Support Package 11 Revision 1606
    The VBA code is:
    Public Function SAPBEXrefresh(allQueries As Boolean, Optional atCell As Range) As Integer
    'In the 7.0 Analyzer, ALL the items in the workbook can be refreshed, but refreshing
    'a query individually is not supported
    On Error Resume Next
      extErrorBegin ("3.x API SAPBEXRefresh called")
      If allQueries = True Then
        Common.MenuRefresh
        SAPBEXrefresh = 0
      Else
        SAPBEXrefresh = 700
        p_extErrorText = "With 7.0, this API is partly supported to refresh ALL items in the workbook, NOT an individual Query"
      End If
      extErrorEnd
    End Function
    As you can see a individually query with this VBA code is still not supported.
    Does anyone know how to change this code or if we need a special update?
    Daniel
    Edited by: Marc Schlipphak on Jan 19, 2010 7:35 PM

  • SmartView issue with Excel protected sheets

    Hi,
    I'm facing an issue working with SmartView and Excel protected sheet.
    When a try to refresh data SmartView get error "One or more sheet(s) in the workbook are protected. Unprotect the sheets and try the operation again".
    Sheet layout is composed as:
    - account in row
    - period, scenario and version in column
    - other dimension in point of view.
    The goal of sheet protection is restrict on Excel side the set of cell available for user input and avoid the user add more account in row.
    Is there a workaround to use SmartView work with protected sheet or the only way is unprotect it?
    Any suggestion is really appreciated.
    The system configuration is:
    WindowsXP SP3
    Excel 2007
    SmartView 11.1.2.1.00
    Regards

    No, sorry Smart View has no access to write to the cell of a protected sheet. If you are skilled in VBA you could write a routine that unprotects your sheet does the SV operation and then re-protects. This may require you to hard code your protection password in code so I am not sure if this will work for you. Excel sheet protection lock the user and programs from updates so there is not much that can be done.

  • On starting - empty window with no controls

    When I start sql developer with:
    sh sqldeveloper/sqldeveloper.sh
    all I get is an empty blue backed window and my terminal shows:
    =====
    Oracle SQL Developer
    Copyright (c) 2006, 2007, Oracle. All rights reserved.
    Using oracle.home=/home/martin/sqldeveloper
    Using ide.user.dir=/home/martin/.sqldeveloper
    Addin: Translator PlSql is trying to register a input type (.plsql) which conflicts with translator PlSql who already using this input type
    =====
    I have the same same sql developer on other linux machines working fine.
    The details for the problem machine are Linux/Ubuntu 7.04, SQL Developer sqldeveloper-1.1.3.2766-no-jre.zip and java-1.5.0-sun-1.5.0.11 (although have tried java 6 as well).
    Any ideas?
    Thanks

    Hi guys,
    I'm facing the same problem on Fedora Core 6.
    My stack dump:
    $ ./sqldeveloper.sh
    Oracle SQL Developer
    Copyright (c) 2006, 2007, Oracle. All rights reserved.
    Using oracle.home=/opt/sqldeveloper
    Using ide.user.dir=/home/jacky/.sqldeveloper
    Addin: Translator PlSql is trying to register a input type (.plsql) which conflicts with translator PlSql who already using this input type
    reloadBuffers(): 49 nodes checked in 7.66E-4 second(s)
    Full thread dump Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode, sharing):
    "DestroyJavaVM" prio=1 tid=0x09288560 nid=0x122b waiting on condition [0x00000000..0xbff27f60]
    "Timer-0" prio=1 tid=0x0934c9e8 nid=0x123c in Object.wait() [0xae385000..0xae385f30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f4b4588> (a java.util.TaskQueue)
    at java.util.TimerThread.mainLoop(Timer.java:509)
    - locked <0x6f4b4588> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "Log Page Updater" prio=1 tid=0x09ad10c8 nid=0x123b waiting on condition [0xafb4e000..0xafb4eeb0]
    at java.lang.Thread.sleep(Native Method)
    at oracle.dbtools.migration.workbench.core.ui.MigrationTreeTableLogPage$5.run(MigrationTreeTableLogPage.java:622)
    "TimerQueue" daemon prio=1 tid=0x0982eca8 nid=0x1238 in Object.wait() [0xb068a000..0xb068adb0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f1b36b8> (a javax.swing.TimerQueue)
    at javax.swing.TimerQueue.run(TimerQueue.java:236)
    - locked <0x6f1b36b8> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-EventQueue-0" prio=1 tid=0x0980be00 nid=0x1237 in Object.wait() [0xb0770000..0xb0771130]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f175dd0> (a java.awt.EventQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.awt.EventQueue.getNextEvent(EventQueue.java:345)
    - locked <0x6f175dd0> (a java.awt.EventQueue)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:189)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    "AWT-Shutdown" prio=1 tid=0x0980b6f0 nid=0x1236 in Object.wait() [0xb07f1000..0xb07f20b0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f168408> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:474)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x6f168408> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-XAWT" daemon prio=1 tid=0x097ffb90 nid=0x1234 runnable [0xb08f3000..0xb08f3fb0]
    at sun.awt.X11.XToolkit.waitForEvents(Native Method)
    at sun.awt.X11.XToolkit.run(XToolkit.java:463)
    at sun.awt.X11.XToolkit.run(XToolkit.java:438)
    at java.lang.Thread.run(Thread.java:595)
    "Java2D Disposer" daemon prio=1 tid=0x097efcd0 nid=0x1233 in Object.wait() [0xb0974000..0xb0974f30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f161de8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x6f161de8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at sun.java2d.Disposer.run(Disposer.java:125)
    at java.lang.Thread.run(Thread.java:595)
    "Low Memory Detector" daemon prio=1 tid=0x092d13b8 nid=0x1231 runnable [0x00000000..0x00000000]
    "CompilerThread0" daemon prio=1 tid=0x092cfe08 nid=0x1230 waiting on condition [0x00000000..0xb2180798]
    "Signal Dispatcher" daemon prio=1 tid=0x092cee38 nid=0x122f runnable [0x00000000..0x00000000]
    "Finalizer" daemon prio=1 tid=0x092c8458 nid=0x122e in Object.wait() [0xb2482000..0xb24830b0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f0d7ce8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x6f0d7ce8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=1 tid=0x092c7750 nid=0x122d in Object.wait() [0xb2503000..0xb2504030]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x6f0d7d68> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:474)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x6f0d7d68> (a java.lang.ref.Reference$Lock)
    "VM Thread" prio=1 tid=0x092c4b78 nid=0x122c runnable
    "VM Periodic Task Thread" prio=1 tid=0x092ec190 nid=0x1232 waiting on condition
    $ java -version ; compiz --version
    java version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
    compiz 0.3.6
    Message was edited by:
    user579512

  • Move datasheet scrollbar with vba in access because requery resets the focus to first top-left cell

    Hi,
    I have a Form in Access 2010 which is split into three sections: form header, detail, form footer (empty) below each other. Detail contains a datasheet (looks like an excel table).
    Every time I do a requery with vba (I requery the table if something is changed in a certain column), the first cell (on top left) gets the cursor focus (selection). Now when I have enough rows in the datasheet (or resize the window), scrollbars appear.
    If I'm changing a value near the bottom and my vba script does a requery, I have to scroll back down to the selected cell, which is very annoying and impossible to work with regularily.
    I think this is a known problem. So far I have a workaround that stores the SelTop and SelLeft and restores these values after the requery. This works fine but it still moves the view around because the selected cell is now on the lowest visible row.
    A better approach would be to save the scrollbars' offsets and restore them after requery. I stumbled upon this project: http://www.lebans.com/setgetsb.htm which seems to get that done by calling the win32api functions to move the scrollbars of the access
    window.
    Unsurprisingly, Access 2010 doesn't support accessing its scrollbars via win32api anymore. Is there another way to do this with vba? Via .net, ole automation or something else?
    Note that I do NOT want to access form scrollbars or ActiveX/Forms 2.0 scrollbars, but the built-in auto scrollbars of a datasheet in "Form View" of a form that is split in 3 sections. I don't even know how to enable/disable these built-in scrollbars,
    they automatically appear if the window is small enough or enough columns are added.
    Thank you very much,
    Simon

    I just looked at the sample code you referenced and found that the APIs are working just fine, but the class name for the scroll bars changed between Access 2003 and 2007 which is why the sample code couldn't find them.
    If you change the change the following line in the "fIsScrollBar" function in the sample, you will find it runs in Access 2007, Access 2010 and Access 2013 as it did in Access 2003.
    In 2003 use:
    If fGetClassName(hWnd_VSB) = "scrollBar" Then
    In 2007, 2010 and 2013
    If fGetClassName(hWnd_VSB) = "NUIScrollbar" Then
    Yes, this was the problem!
    I couldn't figure out first because the subforms lead to a tree structure which contains several scrollbars.
    If someone else runs into this problem, I wrote this function to display the tree structure:
    Private Const GW_HWNDNEXT = 2 'nextSibling
    Private Const GW_CHILD = 5 'firstChild
    Private Const GW_HWNDFIRST = 0 'firstSibling
    Private Declare Function getWin _
    Lib "user32" _
    Alias "GetWindow" _
    (ByVal hwnd As Long, ByVal which As Long) _
    As Long
    '********* Code Start *********
    ' This code was originally written by Dev Ashish.
    ' It is not to be altered or distributed,
    ' except as part of an application.
    ' You are free to use it in any application,
    ' provided the copyright notice is left unchanged.
    ' Code Courtesy of
    ' Dev Ashish
    ' (altered, original code at http://access.mvps.org/access/ )
    Private Declare Function apiGetClassName Lib "user32" Alias _
    "GetClassNameA" (ByVal hwnd As Long, _
    ByVal lpClassname As String, _
    ByVal nMaxCount As Long) As Long
    Private Const mconMAXLEN = 255
    Private Function fGetClassName(hwnd As Long) As String
    Dim strBuffer As String
    Dim count As Long
    strBuffer = String$(mconMAXLEN - 1, 0)
    count = apiGetClassName(hwnd, strBuffer, mconMAXLEN)
    If count > 0 Then fGetClassName = left$(strBuffer, count)
    End Function
    '********* Code End *********
    Private Function sGetHwndClassTree(root As Long, indent As Integer)
    Dim indentstr As String
    Dim outstr As String
    Dim wnd As Long
    Dim child As Long
    indentstr = ""
    outstr = ""
    wnd = root
    child = 0
    For i = 1 To indent
    indentstr = indentstr & " "
    Next i
    Do While wnd <> 0
    outstr = outstr & indentstr & fGetClassName(wnd) & Chr(13)
    child = getWin(wnd, GW_CHILD)
    If child <> 0 Then
    outstr = outstr & sGetHwndClassTree(child, indent + 4)
    End If
    wnd = getWin(wnd, GW_HWNDNEXT)
    Loop
    sGetHwndClassTree = outstr
    End Function
    For my case, the output is
    OForm
    OSUIBlank
    OSUIBlank
    NUIScrollbar
    NetUIHWND
    OSUIBlank
    NUIScrollbar
    NetUIHWND
    OFormSub
    OFormSub
    OFEDT
    OFormSub
    OForm
    OSUIBlank
    OSUIBlank
    NUIScrollbar
    NetUIHWND
    OSUI
    OSUIBlank
    NUIScrollbar
    NetUIHWND
    So I actually have three scrollbars to watch.
    Anyway, thank you very much!

  • How to start a application with a login window?

    hi there
    does anyone have any idea on how to start an application with a login window? a login window is the first frame or window to be displayed when an application starts running. and only correct login id and password have been entered the real application will start. any sample out there? thank you.

    You can start a new thread by making a thread object and passing it an implementation of a runnable object. Runnable has just one method, public void run(), this is was gets executed in a second thread. perhaps the code you would use would look something like this.
    <code>
    // set up thread for login window
    new Thread(new Runnable() {
    public void run() {
    // construct your login window here
    // when you are done processing the
    // password....
    if(goodPassword) {
    authorized = true; // a global variable
    notifyAll(); // don't forget this
    else {
    System.exit(42);
    }).start();
    // control does not stop this code gets executed while
    // the above thread is running.
    // Set up main program here. This is done in the
    // backround.
    while(!authorized) {
    synchronized(this)
    { wait(50); }
    // now when the user logs in this frame pops
    // up real quick.
    myFrame.setVisible(true);
    </code>
    Hope you can figure it out.. good luck :)

  • Start-up problem with hp pavilion dv6t-7000‏: "Boot Device Not Found. Hard Disk (3F0)" error

    I started getting start-up problems with my hp pavilion dv6t-7000‏.  It happens intermittently. 
    The boot error is:
       Boot Device Not Found
       Please install an operating system on your hard disk.
       Hard Disk (3F0)
       F2 System Diagnostics
       For more information, please visit: www.hp.com/go/techcenter/startup
    Could a faulty BIOS update cause this problem?
    Anyone else who may have experienced a similar problem?
    I'd appreciate any help about this problem.  Thanks.

    Hi
    Please find the link given below might help you to fix your issue.
    Resolve Boot Device not Found Error Message
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • I just bought a Mac Book Pro and the Appstore show one upgrade of iPhoto (9.2.1). I started a section with my Apple ID (the account that I have I use to iTunes) but when I try to update it says that there are upgrades available for other accounts and that

    I just bought a Mac Book Pro and the Appstore show one upgrade of iPhoto (9.2.1). I started a section with my Apple ID (the account that I have I use to iTunes) but when I try to update it says that there are upgrades available for other accounts and that I have to upgrade using the account that I used to buy iPhoto. What do I have to do to upgrade iPhoto?

    Dear Katty,
    Thank you very much for your answer! I have 2 Apple ID, and I have tried both of them and the problem continues. I founf several peolpe with the same problem in apple communities foruns and that really seems that there is some problem. I addded the links for 2 of those discussions.
    https://discussions.apple.com/thread/3374419?start=0&tstart=0
    https://discussions.apple.com/message/16628399#16628399
    Do you have an idea of how can I solve this problem?
    Thank you very much again.
    Best regards,
    Alfonso

  • Service Registry error while starting after configuring with DB2 database

    Hi
    I installed WLS 9.1 / ALSR 2.1 on RedHat Linux 4 EL.And DB2 8.2 FP12
    It was started fine with the default HSQL database, after changing the database to DB2 and restarted the server, I am getting the following errors
    Any one know about this ..please help me. Seems it was alredy posted on forums.bea.com but those threads are not accessioble now.Appriciate any quick response
    error log - I also checked the account_list.xml file it looks fine.
    JAVA Memory arguments: -Xms2048m -Xmx2048m -XX:MaxPermSize=128m
    WLS Start Mode=Production
    CLASSPATH=:/opt/bea/bea91/patch_weblogic910/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea/Java5/jdk1.5.0_17/lib/tools.jar:/opt/bea/bea91/weblogic91/server/lib/weblogic_sp.jar:/opt/bea/bea91/weblogic91/server/lib/weblogic.jar:/opt/bea/bea91/weblogic91/server/lib/webservices.jar::/opt/bea/bea91/weblogic91/common/eval/pointbase/lib/pbclient51.jar:/opt/bea/bea91/weblogic91/server/lib/xqrl.jar::/opt/bea/bea91/weblogic91/integration/lib/util.jar:
    PATH=/opt/bea/bea91/weblogic91/server/bin:/opt/bea/Java5/jdk1.5.0_17/jre/bin:/opt/bea/Java5/jdk1.5.0_17/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/weblogic/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.5.0_17"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_17-b04)
    Java HotSpot(TM) Server VM (build 1.5.0_17-b04, mixed mode)
    Starting WLS with line:
    /opt/bea/Java5/jdk1.5.0_17/bin/java -server -Xms2048m -Xmx2048m -XX:MaxPermSize=128m -da -Dplatform.home=/opt/bea/bea91/weblogic91 -Dwls.home=/opt/bea/bea91/weblogic91/server -Dwli.home=/opt/bea/bea91/weblogic91/integration -Dweblogic.management.discover=true -Dweblogic.ProductionModeEnabled=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole= -Dcom.sun.xml.namespace.QName.useCompatibleSerialVersionUID=1.0 -Djava.security.auth.login.config=/opt/bea/bea91/alsr21/conf/jaas.config -Dweblogic.ext.dirs=/opt/bea/bea91/patch_weblogic910/profiles/default/sysext_manifest_classpath -Dweblogic.Name=zsoaLAALSRAdminServer -Djava.security.policy=/opt/bea/bea91/weblogic91/server/lib/weblogic.policy weblogic.Server
    <Dec 23, 2008 11:02:49 AM PST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    /opt/bea/bea91/user_projects/domains/zsoaLALASRDomain/lib/db2jcc2.jar:/opt/bea/bea91/user_projects/domains/zsoaLALASRDomain/lib/db2jcc_license_cu2.jar>
    <Dec 23, 2008 11:02:49 AM PST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 1.5.0_17-b04 from Sun Microsystems Inc.>
    <Dec 23, 2008 11:02:50 AM PST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.1 Mon Dec 12 19:26:33 EST 2005 689178 >
    <Dec 23, 2008 11:02:53 AM PST> <Info> <WebLogicServer> <BEA-000215> <Loaded License : /opt/bea/bea91/license.bea>
    <Dec 23, 2008 11:02:53 AM PST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Dec 23, 2008 11:02:53 AM PST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Dec 23, 2008 11:02:53 AM PST> <Notice> <Log Management> <BEA-170019> <The server log file /opt/bea/bea91/user_projects/domains/zsoaLALASRDomain/servers/zsoaLAALSRAdminServer/logs/zsoaLAALSRAdminServer.log is opened. All server side log events will be written to this file.>
    <Dec 23, 2008 11:02:53 AM PST> <Error> <Socket> <BEA-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that libmuxer library is in :'/opt/bea/Java5/jdk1.5.0_17/jre/lib/i386/server:/opt/bea/Java5/jdk1.5.0_17/jre/lib/i386:/opt/bea/Java5/jdk1.5.0_17/jre/../lib/i386:/opt/bea/bea91/patch_weblogic910/profiles/default/native:/opt/bea/bea91/weblogic91/server/native/linux/x86_64:/opt/bea/bea91/weblogic91/server/native/linux/x86_64/oci920_8'
    >
    <Dec 23, 2008 11:02:54 AM PST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Dec 23, 2008 11:02:56 AM PST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Dec 23, 2008 11:02:56 AM PST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    INFO: com.systinet.wasp.WaspImpl - Starting Systinet Server for Java/6.0 (Java/1.5.0_17; Linux/2.6.9-78.0.1.ELsmp; build SSJ-6.0-20060622-1136)
    INFO: com.systinet.wasp.monitoring.LogEventModule - Starting event management
    INFO: log4j.Log4JAdapter - Events Log File: /opt/bea/bea91/user_projects/domains/zsoaLALASRDomain/servers/zsoaLAALSRAdminServer/tmp/_WL_user/registry/4rin9e/public/systinetRegistry_logEvents.log
    INFO: log4j.Log4JAdapter - Error Events Log File: /opt/bea/bea91/user_projects/domains/zsoaLALASRDomain/servers/zsoaLAALSRAdminServer/tmp/_WL_user/registry/4rin9e/public/systinetRegistry_errorEvents.log
    INFO: com.idoox.config.xml.ConfigStore - Starting configStore with savingPeriod 2000
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [system][http://systinet.com/wasp/app/core_services_client][core_services_client][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [system][http://systinet.com/wasp/app/builtin_serialization][builtin_serialization][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [system][http://systinet.com/wasp/app/security_providers][security_providers][1.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [system][http://systinet.com/wasp/app/uddi/redirect/5.0][uddi-redirect][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/wasp/app/uddi/6.0][UDDI-services][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/statistics/5.0][Statistics-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/xslt2uddi/v3/5.5][UDDIClient-xslt2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/api/ext/5.0][UDDIClient-ext][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/approval_production/5.0][Approval-production-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/wsdl2uddi/v3/5.5][UDDIClient-wsdl2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/approval_management/5.0][Approval-management-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/configuratorCluster/5.0][Configurator-cluster-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/replication/v3/5.0][Replication-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/subscription/listener/v3/5.0][UDDIClient-subscription-listener-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/approval/5.0][Approval-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/taxonomy/v3/5.5][Taxonomy-client-v31][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/inquiryUI/6.0][UDDIClient-v3-ui][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/validate-values/v1/5.0][UDDIClient-validate-values-v1][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/custody/v3/5.0][UDDIClient-custody-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/subscription/v3/ext/6.0][UDDIClient-subscription-v3-ext][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/administrationUtils/5.5][AdministrationUtils-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/wasp/app/bsc/web/6.0][bsc][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/transformer_kr/5.5][Transformer-kr-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/v3/5.0][UDDIClient-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/wsdl2uddi/v2/5.0][UDDIClient-wsdl2uddi-v2][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/validate-values/v2/5.0][UDDIClient-validate-values-v2][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/v3_ext/5.0][UDDIClient-v3_ext][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/xml2uddi/v3/5.5][UDDIClient-xml2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/value-set-caching/v3/5.0][UDDIClient-value-set-caching-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/xsd2uddi/v3/5.5][UDDIClient-xsd2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/wasp/app/uddi/web/6.0][UDDI-web][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/approval_checker/5.0][Approval-checker-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/category/v3/5.5][Category-client-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/group/5.5][Group-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/subscription/v3/5.0][UDDIClient-subscription-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/v2/5.0][UDDIClient-v2][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/configurator/5.0][Configurator-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/permission/5.5][Permission-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/taxonomy/v3/5.0][Taxonomy-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/v1/5.0][UDDIClient-v1][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/account/5.5][Account-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client/value-set-validation/v3/5.0][UDDIClient-value-set-validation-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Registering package [uddi][http://systinet.com/uddi/client-core/5.0][Client-core][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [system][http://systinet.com/wasp/app/core_services_client][core_services_client][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [system][http://systinet.com/wasp/app/builtin_serialization][builtin_serialization][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [system][http://systinet.com/wasp/app/uddi/redirect/5.0][uddi-redirect][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [system][http://systinet.com/wasp/app/security_providers][security_providers][1.0]
    INFO: com.idoox.wasp.security.server.SecurityModule - SecurityModule starts.
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client-core/5.0][Client-core][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/statistics/5.0][Statistics-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/approval_management/5.0][Approval-management-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/replication/v3/5.0][Replication-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/transformer_kr/5.5][Transformer-kr-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/v3/5.0][UDDIClient-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/v2/5.0][UDDIClient-v2][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/configurator/5.0][Configurator-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/v1/5.0][UDDIClient-v1][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/account/5.5][Account-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/xslt2uddi/v3/5.5][UDDIClient-xslt2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/api/ext/5.0][UDDIClient-ext][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/wsdl2uddi/v3/5.5][UDDIClient-wsdl2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/inquiryUI/6.0][UDDIClient-v3-ui][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/custody/v3/5.0][UDDIClient-custody-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/administrationUtils/5.5][AdministrationUtils-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/v3_ext/5.0][UDDIClient-v3_ext][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/xml2uddi/v3/5.5][UDDIClient-xml2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/value-set-caching/v3/5.0][UDDIClient-value-set-caching-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/xsd2uddi/v3/5.5][UDDIClient-xsd2uddi-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/category/v3/5.5][Category-client-v3][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/subscription/v3/5.0][UDDIClient-subscription-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/taxonomy/v3/5.0][Taxonomy-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/value-set-validation/v3/5.0][UDDIClient-value-set-validation-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/approval/5.0][Approval-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/wsdl2uddi/v2/5.0][UDDIClient-wsdl2uddi-v2][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/validate-values/v2/5.0][UDDIClient-validate-values-v2][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/configuratorCluster/5.0][Configurator-cluster-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/validate-values/v1/5.0][UDDIClient-validate-values-v1][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/group/5.5][Group-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/permission/5.5][Permission-client][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/subscription/listener/v3/5.0][UDDIClient-subscription-listener-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/subscription/v3/ext/6.0][UDDIClient-subscription-v3-ext][6.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/taxonomy/v3/5.5][Taxonomy-client-v31][5.5]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/approval_checker/5.0][Approval-checker-client-v3][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/uddi/client/approval_production/5.0][Approval-production-client][5.0]
    INFO: com.systinet.wasp.admin.PackageRepositoryImpl - Loading package [uddi][http://systinet.com/wasp/app/uddi/6.0][UDDI-services][6.0]
    [Fatal Error] account_list.xml:1:1: Premature end of file.
    <Dec 23, 2008 11:03:04 AM PST> <Error> <HTTP> <BEA-101216> <Servlet: "Registry Servlet" failed to preload on startup in Web application: "registry.war".
    java.lang.ExceptionInInitializerError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:242)
    at com.systinet.uddi.security.destination.DestinationSecurityModule.load(DestinationSecurityModule.java:25)
    at com.idoox.wasp.ModuleRepository.loadModule(ModuleRepository.java:120)
    org.xml.sax.SAXParseException: Premature end of file.
    at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
    at com.idoox.config.xml.XMLConfigurator.prepareConfigFile(XMLConfigurator.java:575)
    at com.idoox.config.xml.XMLConfigurator.init(XMLConfigurator.java:420)
    at com.idoox.config.xml.XMLConfigurator.init(XMLConfigurator.java:333)
    Truncated. see log file for complete stacktrace
    >
    <Dec 23, 2008 11:03:04 AM PST> <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application 'registry'.
    weblogic.application.ModuleException: [HTTP:101216]Servlet: "Registry Servlet" failed to preload on startup in Web application: "registry.war".
    <Dec 23, 2008 11:03:04 AM PST> <Notice> <WebLogicServer> <BEA-000329> <Started WebLogic Admin Server "zsoaLAALSRAdminServer" for domain "zsoaLALASRDomain" running in Production Mode>
    <Dec 23, 2008 11:03:04 AM PST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Dec 23, 2008 11:03:04 AM PST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    Exception in thread "Timer-3" java.lang.NoClassDefFoundError: com/systinet/wasp/webservice/FinalizationSupport
    at com.systinet.wasp.ServiceManagerImpl$ReferenceQueueCleaner.run(ServiceManagerImpl.java:2617)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)

    I discovered, that the problem is probably caused by a collection, which is returned by a findBy method.
    see detail of exception:
    Caused by: javax.xml.bind.JAXBException: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    java.util.Collection is an interface, and JAXB can't handle interfaces.
    this problem is related to the following location:
    at java.util.Collection
    When I deploy an simple WS (summerizing 2 numbers) it is deployed fine and the WS is up and running.
    Does anyone has experienced a similar problem? I want to expose the functionality of my BO methods in order to set up a small POC.
    Can anyone please help?
    Thanks & Regards,
    Michael
    null

  • I can start a conversation with my number on imessage but i can't be reached with my number. How can I fix this?

    I can start a conversation with my number on imessage but i can't be reached with my number. How can I fix this?

    Go to Settings>Messages>Send & Receive, and make sure that your phone number is checked. If it is not, then scroll to the top of that same screen, click on your Apple ID, and sign out of Messages, and then back in again.
    Cheers,
    GB

Maybe you are looking for

  • Installation OIM on redhat Linux really slow

    Hello, I have a problem with the installation of OIM. When I try to install OIM on a linux server (redhat 5.0 64b) with the JRockit 64bits java 1.6.0 (jrmc 3.2.1-1.6.0) version the installer is just really slow. It takes ages for the command line ins

  • How to change font size in new text box

    Using Acrobat XI, I am trying to fill in a non fillable form simply by adding text boxes where information needs to go. Unfortunately the font used on the form is rather small and I can't seem to make the font smaller than 8. It not only looks ridicu

  • ITunes 10.7.0.21 problems on a Windows Vista laptop

    Hi, Right, I've been runnning iTunes on my Acer Extensa 5220 laptop for the past three years, with minimal problems. Today, however, and iTunes has decided to totally screw-up! I recently updated from old iTunes 10.X version (sorry, I don't know the

  • Deploring ear file

    We have our EJB's deployed in EAR file which deploys correctly in Oracle 10.1.2. When I try to deploy the same ear file in Oracle 10.1.3 using GUI deployer I get error message of invalid archive file. If I use admin.jar to deploy the same file, I can

  • Cannot set up Source for a view

    Hi, I am trying to set up a source for a view which I have created in the database. But when I try to do that I get this error. database link of same name has an open connection PL/SQL: unhandled user-defined exception PL/SQL: unhandled user-defined