CM Events not getting to a JDeveloper Application

Hi,
I'm using the IFS/CM sdk on our site so that we may be notified of changes to files given certain conditions.
I want to use waitServer() to wait on given conditions. We set up a demo on a Solaris box which works fine. The Solaris box is also where the test repository is held. The demo works fine. It runs from command prompt, initialises correctly and notifies us of changes. Perfect, you might imagine.
However when I moved it onto JDeveloper, we use exactly the same source, same properties, same class path etc, it initialises correctly, get to waitServer(), and just waits. It never receives a message. The event has definitely been generated, as the solaris app receives the message.
Obvious stuff we've done:
- both boxes ping each other.
- from the repository console we can see the client session's, on the correct PC.
- we can make other queries against the site, is this file in this folder etc.
- turned off the solaris demo to make sure it's not (somehow) swallowing the event.
Our environment is as follows:
- JDeveloper 9.0.3.1, OJVM build 1.3.1_02-b02 - which doesn't
- Solaris - Sun JVM build 1.3.1-b24 - which works
- Oracle Enterprise Manager 9.2.0.1.0
We want to use JDeveloper for this project as we use it everywhere else. I'm at my wits end. A little help would be greatly appreciated.

Can you run the demo on the XP box outside of JDeveloper and does it work? I'm trying to find out if the issue is (a) the XP box or (b) JDeveloper.
If it's the XP box, you should try getting some help in the Oracle Files forum Content Services
Or if it's JDeveloper, try setting the Java VM from ojvm to hotspot in the Runner page under Project Properties.
Rob
Team JDev

Similar Messages

  • "Could not get needed resources for application to be launched (id=-669)"

    I keep getting this message
    Setup Resourses Status
    Could not get needed resources for application [App name. edir path] to
    be launched (id=-669).
    Problem: Unable to connect to server [server name]
    I am able to browse to the server no problem as well as map a drive
    directly to it?
    I am not sure why I am getting this ?

    This is under the "Environment" portion of the "Run Tab"
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared either Novell or any rational human.
    <[email protected]> wrote in message
    news:[email protected]...
    > Craig where do I to determine that? I know it has to run as admin but I
    > am not sure if it is set like that...
    >
    >> Is the application configured to run "Normal", "Secure System User", or
    >> "Unsecure System User".
    >>
    >> Methods #2 and #3 require the workstation not the user to have rights
    > and
    >> require the use of UNC instead of a mapped drive.
    >>
    >> --
    >> Craig Wilson - MCNE, MCSE, CCNA
    >> Novell Support Forums Volunteer Sysop
    >>
    >> Novell does not officially monitor these forums.
    >>
    >> Suggestions/Opinions/Statements made by me are solely my own.
    >> These thoughts may not be shared either Novell or any rational human.
    >>
    >> <[email protected]> wrote in message
    >> news:[email protected]...
    >> > It is associated with the user and I can get access to the exe via
    > their
    >> > PC using their login
    >> >
    >> >> ,
    >> >> > Could not get needed resources for application [App name. edir
    > path]
    >> > to
    >> >> > be launched (id=-669).
    >> >> >
    >> >> > Problem: Unable to connect to server [server name]
    >> >> >
    >> >> > I am able to browse to the server no problem as well as map a drive
    >> >> > directly to it?
    >> >> >
    >> >> -669 is "wrong password" IIRC. Is this app associated to user or WS,
    > ie
    >> > is
    >> >> t trying to access that path wth the User's or Workstation's
    >> > credentials?
    >> >>
    >> >> - Anders Gustafsson, Engineer, CNE6, ASE
    >> >> NSC Volunteer Sysop
    >> >> Pedago, The Aaland Islands (N60 E20)
    >> >>
    >> >> Novell does not monitor these forums officially.
    >> >> Enhancement requests for all Novell products may be made at
    >> >> http://support.novell.com/enhancement
    >> >>
    >> >> Using VA 5.51 build 315 on Windows 2000 build 2600
    >> >>
    >> >
    >>
    >>
    >

  • Events not getting fired for templated controls.

    Hi,
    I have an asp.net custom server control, in which I have given template support. The template controls render fine. But, the events of template controls are not getting fired. For example, If I added an asp dropdownlist as a template in my custom control
    and select any item from dropdownlist and raised the postback, the selected item did not get updated in dropdownlist ( i.e selectedIndex, selectedText of the control remains the same as like initial rendering.), also I am not able to trigger the SelectedIndexChanged
    server side event of dropdownlist.
    I have used NamingContainer for rendering the template controls. The codes are as follows,
    <code>
    This is my source:
         private
    ITemplate fileTemplate =
    null;
     [TemplateContainer(typeof(ContentContainer)),
    PersistenceMode(PersistenceMode.InnerProperty),
    DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
    TemplateInstance(TemplateInstance.Single)]
    public ITemplate FileTemplate
    get
       return fileTemplate;
    set
    fileTemplate = value;
    public class
    ContentContainer :
    WebControl, INamingContainer
    internal ContentContainer()
    protected override
    void CreateChildControls()
    this.Controls.Clear();
    ContentContainer container =
    new ContentContainer();
    this.FileTemplate.InstantiateIn(container);
    this.Controls.Add(container);
    base.CreateChildControls();
          public
    override ControlCollection Controls
    get
    this.EnsureChildControls();
           return
    base.Controls;
    Whereas in my application, I have rendered the custom control with template as below,
    [ASPX]
    <mycustom control>
    <FileTemplate>
    <asp:DropDownList
    ID="ddc1"
    runat="server"
    AutoPostBack="true"
    OnSelectedIndexChanged="ddc1_SelectedIndexChanged"
    >
    <asp:ListItem
    Text="Item1"
    Value="one"></asp:ListItem>
    <asp:ListItem
    Text="Item2"
    Value="two"></asp:ListItem>
    <asp:ListItem
    Text="Item3"
    Value="three"></asp:ListItem>
    <asp:ListItem
    Text="Item4"
    Value="four"></asp:ListItem>
    </asp:DropDownList>
    </FileTemplate>
    </mycustom control>
    [Code Behind]
    This event is not getting raised.
    protected
    void ddc1_SelectedIndexChanged(object sender,
    EventArgs e)
     I can get the template control's details here using "FindControl("templateID")". But not able to get the updated details.
    protected void btn_Click1(object sender,
    EventArgs e)
    var template= this.CustomControl.Controls[0].FindControl("ddc1");
    </code>
    Where I am going wrong? Kindly help me on this.
    Thanks in advance.
    Regards,
    Meena

    This is a Windows Phone forum, not a web development forum. Please ask this question at the forums at
    http://asp.net.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Css file not getting applied to the application

    Hi All,
    I have uploaded a css file and used in my application as
    <link rel="stylesheet" href="#WORKSPACE_IMAGES#default.css" type="text/css"/>
    Previously it was working fine.
    But suddenly, it is not working.
    I am working from a remote server.
    Could anyone please get me a solution for this?
    thanks in advance
    bye
    Srikavi

    Hi joel,
    From this thread
    Shared Files - problems after upgrading APEX 3.0 to 3.1
    i have taken your words,
    In my development of the browser cache support for static files, I did notice some unexplainable behavior with IE and Firefox. When uploading static files and then testing them, it almost seemed like the browser would request the resource only some of the time (and then get the HTTP 304). If an Expires tag is not computed, I know Firefox will compute one itself.
    As per my understanding, Is it cache_expire should be calculated?
    I could not get that line.Could you please explain me.
    Thanks in advance.
    bye
    Srikavi.

  • Plugin events not getting triggered

    Hello,
    APEX version 4.1.0.00.32 and 4.2.3.00.08
    Browser: latest version of Chrome browser
    I'm trying to include plugin events for the Select2 APEX plugin but facing one rather annoying issue; the dynamic actions based on the plugin events are not getting triggered. These are the steps I have taken:
    1. Registered several events with the plugin (e.g. slctchange, slctopen, slcthighlight, etc.). These events are based on the official Select2 documentation.
    2. Modified the render function to include event handlers that trigger the appropriate Select2 event.
    $("' || l_item_jq || '").on("change", function(e) {
      apex.jQuery(this).trigger("slctchange", { val:e.val, added:e.added, removed:e.removed });
    $("' || l_item_jq || '").on("select2-opening", function(e) {
      apex.jQuery(this).trigger("slctopening");
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
    $("' || l_item_jq || '").on("select2-highlight", function(e) {
      apex.jQuery(this).trigger("slcthighlight", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-selecting", function(e) {
      apex.jQuery(this).trigger("slctselecting", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-clearing", function(e) {
      apex.jQuery(this).trigger("slctclearing");
    $("' || l_item_jq || '").on("select2-removed", function(e) {
      apex.jQuery(this).trigger("slctremoved", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-focus", function(e) {
      apex.jQuery(this).trigger("slctfocus");
    $("' || l_item_jq || '").on("select2-blur", function(e) {
      apex.jQuery(this).trigger("slctblur");
    I can confirm that the slctchange event (the first event in the list) is working properly both in APEX 4.1 and 4.2. Please note that I had to use apex.jQuery instead of $ to get it to work in 4.1. Might be because I overloaded jQuery in 4.1. Anyway, all others events are not getting triggered for some reason. The event handlers are getting executed for the appropriate event; that's not the problem. I guess the source of the problem lies with the trigger function. It simply doesn't trigger any of my dynamic actions.
    To make things even more complicated, it is possible to trigger the events manually in console. So if I execute this statement:
    apex.jQuery("#P20_SINGLE_VALUE_NEW").trigger("slctopen");
    Then I get back the result from the dynamic action.
    I tried a lot of different ways to trigger the plugin event. For example:
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
      $(this).trigger("slctopen");
      apex.jQuery(this).trigger("slctopen.BE_CTB_SELECT2");
      $(this).trigger("slctopen.BE_CTB_SELECT2");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen");
      $("' || l_item_jq || '").trigger("slctopen");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
      $("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
    Nothing gets triggered...
    Can anyone tell me what the problem is here? Thanks in advance.
    Best regards,
    Nick

    Hello,
    APEX version 4.1.0.00.32 and 4.2.3.00.08
    Browser: latest version of Chrome browser
    I'm trying to include plugin events for the Select2 APEX plugin but facing one rather annoying issue; the dynamic actions based on the plugin events are not getting triggered. These are the steps I have taken:
    1. Registered several events with the plugin (e.g. slctchange, slctopen, slcthighlight, etc.). These events are based on the official Select2 documentation.
    2. Modified the render function to include event handlers that trigger the appropriate Select2 event.
    $("' || l_item_jq || '").on("change", function(e) {
      apex.jQuery(this).trigger("slctchange", { val:e.val, added:e.added, removed:e.removed });
    $("' || l_item_jq || '").on("select2-opening", function(e) {
      apex.jQuery(this).trigger("slctopening");
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
    $("' || l_item_jq || '").on("select2-highlight", function(e) {
      apex.jQuery(this).trigger("slcthighlight", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-selecting", function(e) {
      apex.jQuery(this).trigger("slctselecting", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-clearing", function(e) {
      apex.jQuery(this).trigger("slctclearing");
    $("' || l_item_jq || '").on("select2-removed", function(e) {
      apex.jQuery(this).trigger("slctremoved", { val:e.val, choice:e.choice });
    $("' || l_item_jq || '").on("select2-focus", function(e) {
      apex.jQuery(this).trigger("slctfocus");
    $("' || l_item_jq || '").on("select2-blur", function(e) {
      apex.jQuery(this).trigger("slctblur");
    I can confirm that the slctchange event (the first event in the list) is working properly both in APEX 4.1 and 4.2. Please note that I had to use apex.jQuery instead of $ to get it to work in 4.1. Might be because I overloaded jQuery in 4.1. Anyway, all others events are not getting triggered for some reason. The event handlers are getting executed for the appropriate event; that's not the problem. I guess the source of the problem lies with the trigger function. It simply doesn't trigger any of my dynamic actions.
    To make things even more complicated, it is possible to trigger the events manually in console. So if I execute this statement:
    apex.jQuery("#P20_SINGLE_VALUE_NEW").trigger("slctopen");
    Then I get back the result from the dynamic action.
    I tried a lot of different ways to trigger the plugin event. For example:
    $("' || l_item_jq || '").on("select2-open", function(e) {
      apex.jQuery(this).trigger("slctopen");
      $(this).trigger("slctopen");
      apex.jQuery(this).trigger("slctopen.BE_CTB_SELECT2");
      $(this).trigger("slctopen.BE_CTB_SELECT2");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen");
      $("' || l_item_jq || '").trigger("slctopen");
      apex.jQuery("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
      $("' || l_item_jq || '").trigger("slctopen.BE_CTB_SELECT2");
    Nothing gets triggered...
    Can anyone tell me what the problem is here? Thanks in advance.
    Best regards,
    Nick

  • Events not getting triggered

    in the code my event subtot_text is not getting triggered .... any solution plz
    REPORT  zver_alv_basic.
    TYPE-POOLS slis.
    DATA: BEGIN OF itab OCCURS 0,
              vbeln LIKE vbap-vbeln,
              posnr LIKE vbap-posnr,
              matnr LIKE vbap-matnr,
              netwr LIKE vbap-netwr,
           END OF itab.
    DATA: fcat TYPE slis_t_fieldcat_alv,
          wa_fcat  TYPE slis_fieldcat_alv,
          i_sort TYPE  slis_t_sortinfo_alv WITH HEADER LINE,
          i_event TYPE slis_t_event.
    SELECT vbeln
           posnr
           matnr
           netwr
      FROM vbap
      INTO TABLE itab
      UP TO 30 ROWS.
    I_SORT-FIELDNAME = 'POSNR'.
    I_SORT-TABNAME = 'ITAB'.
    I_SORT-UP = 'X'.
    I_SORT-SUBTOT = 'X'.
    APPEND I_SORT.
    Perform to populate ALV event
      PERFORM sub_get_event.
    To prepare field catalog
    PERFORM sub_field_catalog.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-cprog
        it_fieldcat        = fcat
        it_events         = i_event
        it_sort = i_sort[]
      TABLES
        t_outtab           = itab.
    *&      Form  SUB_FIELD_CATALOG
    FORM sub_field_catalog .
      PERFORM sub_fill_alv_field_catalog USING:
         '01' 'VBELN' 'ITAB' 'VBELN' 'VBAP' ,
         '02' 'POSNR' 'ITAB' 'POSNR' 'VBAP' ,
         '03' 'MATNR' 'ITAB' 'MATNR' 'VBAP' ,
         '04' 'NETWR' 'ITAB' 'NETWR' 'VBAP' .
    ENDFORM.                    " SUB_FIELD_CATALOG
    *&      Form  SUB_FILL_ALV_FIELD_CATALOG
    FORM sub_fill_alv_field_catalog  USING    p_rowpos
                                              p_fldnam p_tabnam   p_ref_fieldname p_ref_tabname  .
      wa_fcat-col_pos = p_rowpos.
      wa_fcat-fieldname = p_fldnam .
      wa_fcat-tabname = p_tabnam .
      wa_fcat-ref_fieldname = p_ref_fieldname .
      wa_fcat-ref_tabname = p_ref_tabname.
      IF P_FLDNAM = 'NETWR'.
        wa_fcat-do_sum  = 'X'.
      ENDIF.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
    ENDFORM.                    " SUB_FILL_ALV_FIELD_CATALOG
    *&      Form  SUB_GET_EVENT
    FORM sub_get_event .
    DATA: wa_event TYPE slis_alv_event.
        CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = i_event.
      READ TABLE i_event INTO wa_event
                        WITH KEY name = 'SUBTOTAL_TEXT'.
    IF sy-subrc = 0.
        MOVE 'SUBTOT_TEXT ' TO wa_event-form.
        MODIFY i_event FROM wa_event INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " SUB_GET_EVENT
    *&      Form  subtotal_text
          Build subtotal text
          P_total  Total
          p_subtot_text Subtotal text info
    FORM subtot_text CHANGING
                   p_total TYPE any
                   p_subtot_text TYPE slis_subtot_text.
    Material level sub total
      IF p_subtot_text-criteria = 'VBELN'.
        p_subtot_text-display_text_for_subtotal
        = 'VENDOR level total'(009).
      ENDIF.
    Plant level sub total
      IF p_subtot_text-criteria = 'POSNR'.
        p_subtot_text-display_text_for_subtotal = 'POSNR level total'(010).
      ENDIF.
    ENDFORM.                    "subtotal_text

    *& Report  ZVER_ALV_BASIC
    REPORT  zver_alv_basic.
    TYPE-POOLS slis.
    DATA: BEGIN OF itab OCCURS 0,
              vbeln LIKE vbap-vbeln,
              posnr LIKE vbap-posnr,
              matnr LIKE vbap-matnr,
              netwr LIKE vbap-netwr,
           END OF itab.
    DATA: fcat TYPE slis_t_fieldcat_alv,
          wa_fcat  TYPE slis_fieldcat_alv,
          i_sort TYPE  slis_t_sortinfo_alv ,
          wa_sort TYPE slis_sortinfo_alv,
          i_event TYPE slis_t_event.
    START-OF-SELECTION.
    SELECT vbeln
           posnr
           matnr
           netwr
      FROM vbap
      INTO TABLE itab
      UP TO 30 ROWS.
    wa_sort-spos = '01' .
    wa_sort-fieldname = 'VBELN'.
    wa_sort-tabname = 'ITAB'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO i_sort .
    CLEAR wa_sort.
    Wa_sort-spos = '02' .
    wa_sort-fieldname = 'POSNR'.
    wa_sort-tabname = 'ITAB'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO i_sort .
    CLEAR wa_sort.
    Perform to populate ALV event
    PERFORM sub_get_event.
    To prepare field catalog
    PERFORM sub_field_catalog.
    END-OF-SELECTION.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-cprog
        it_fieldcat        = fcat
        it_events         = i_event
        it_sort = i_sort[]
      TABLES
        t_outtab           = itab.
    *&      Form  SUB_FIELD_CATALOG
    FORM sub_field_catalog .
      PERFORM sub_fill_alv_field_catalog USING:
         '01' 'VBELN' 'ITAB' 'VBELN' 'VBAP' ,
         '02' 'POSNR' 'ITAB' 'POSNR' 'VBAP' ,
         '03' 'MATNR' 'ITAB' 'MATNR' 'VBAP' ,
         '04' 'NETWR' 'ITAB' 'NETWR' 'VBAP' .
    ENDFORM.                    " SUB_FIELD_CATALOG
    *&      Form  SUB_FILL_ALV_FIELD_CATALOG
    FORM sub_fill_alv_field_catalog  USING    p_rowpos
                                              p_fldnam p_tabnam   p_ref_fieldname p_ref_tabname  .
      wa_fcat-col_pos = p_rowpos.
      wa_fcat-fieldname = p_fldnam .
      wa_fcat-tabname = p_tabnam .
      wa_fcat-ref_fieldname = p_ref_fieldname .
      wa_fcat-ref_tabname = p_ref_tabname.
      IF p_fldnam = 'NETWR'.
        wa_fcat-do_sum  = 'X'.
      ENDIF.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
    ENDFORM.                    " SUB_FILL_ALV_FIELD_CATALOG
    *&      Form  SUB_GET_EVENT
    FORM sub_get_event .
    DATA: wa_event TYPE slis_alv_event.
        CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = i_event.
      READ TABLE i_event INTO wa_event
                        WITH KEY name = 'SUBTOTAL_TEXT'.
    IF sy-subrc = 0.
        MOVE 'SUBTOT_TEXT ' TO wa_event-form.
        MODIFY i_event FROM wa_event INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " SUB_GET_EVENT
    *&      Form  subtotal_text
          Build subtotal text
          P_total  Total
          p_subtot_text Subtotal text info
    FORM subtot_text CHANGING
                   p_total TYPE any
                   p_subtot_text TYPE slis_subtot_text.
    Material level sub total
      IF p_subtot_text-criteria = 'VBELN'.
        p_subtot_text-display_text_for_subtotal
        = 'VENDOR level total'(009).
      ENDIF.
    Plant level sub total
      IF p_subtot_text-criteria = 'POSNR'.
        p_subtot_text-display_text_for_subtotal = 'POSNR level total'(010).
      ENDIF.
      WRITE :/ 'cow'.
    ENDFORM.                    "subtotal_text }

  • Event not getting triggered for a few users in production

    Hi Experts!!
    We have a workflow that gets triggered on the event REQUESTCREATED of BUS2089. In production, we see that for a few users the event is getting triggered and even the workflow is. But for a few users, the workflow is not getting triggered. However, we didn't check SWEQADM yet and are waiting to get auth to check the same. But before that, I need your valuable suggestions on this.
    When I check SWEL, I cannot see any entries at all. Not even for the successfully processed ones.
    Auth objects cannot be a reason, as all the users have same auth. Please suggest me on what else can be the reasons.
    Your help is highly appreciable.

    Hello Srinivas !
                  Check in SWEQADM to know whether the event is on queue.If so, redeliver it.
                  If there is no event on queue, check the RFC queue( transaction SWU2 ) and ST22 for possible ABAP dumps.
                  Call work item list report (transaction SWI1) and check event linkages (transaction SWETYPV )of the users for whom the event is not triggered.Are you using BAdI or user- exit to trigger the workflow ? If so, check whether those are in active state.
                 Refresh the workflow buffers(transaction SWU_OBUF).Check either of the workflow versions are in active state.
    Regards,
    S.Suresh

  • OIM 11g R2 - Recon events not getting linked

    Hi,
    In OIM 11g R2,recon events are not getting linked.The recon events are getting struck in "Data Received" status.When I tried to clicking "Reevaluate Event",then getting the message "Cause: Status of the batch is not 'Completed'. Any idea on what might be going wrong?Thanks.

    The problem is not yet solved.could see the below error in the logs
    Caused By: oracle.iam.platform.tx.OIMTransactionException: java.sql.SQLException: ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "DEV_OIM.XL_SP_RECONBLKCHILDMTHACNTCRUD", line 730
    ORA-06512: at "DEV_OIM.XL_SP_RECONBLKACNTRQDCMTCHCRUD", line 91
    ORA-06512: at line 1
         at oracle.iam.platform.tx.OIMTransactionManager.execute(OIMTransactionManager.java:28)
         at oracle.iam.reconciliation.dao.ReconActionDao$1ReconDBCall.command(ReconActionDao.java:1423)
    Any idea what might be going wrong ? Thanks.

  • Event not getting triggered for PR generated through MRP run

    Hi All,
    Could anyone let me know how to get a workflow triggered for the ReleaseStepCreated event (obj - bus2105) when the PR is created through MRP run. The MD02 control paramters have the value '1'.
    Interstingly the workflow triggers when the value is set to '2' or '3'.
    Thanks,
    Ameekar

    Thanks Aman,
    I checked field restrictions but there are none there. Actually i checked them for other object 'AOOMARA' which is being thrown as an exception when i am creating the PR through MRP run.
    Exception says -> field not maintained.
    So i guess, i need to maintain the field for Change Document but i am not sure how. COuld you please aid me with that.
    Thanks A lot !!

  • OSR registry not getting connected from Jdeveloper 10.1.3.3.

    Hi,
    i am getting below error while connecting to OSR registry link. i.e, while making a new UDDI connection from JDev.
    Testing connection with no proxy...
    Contacting http://calvin.fcoracle.com:7800/registry/uddi/web...
    The inquiry endpoint could not be contacted. Test failed.
    Unsupported response content type &quot;text/html; charset=UTF-8&quot;, must starts with &quot;text/xml&quot;. Response was:
    &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
    &lt;html&gt;
    &lt;head&gt;
    &lt;META http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot;&gt;
    &lt;title&gt;Registry Control 10.1.3.1 - Home&lt;/title&gt;
    &lt;base href=&quot;http://calvin.fcoracle.com:7800/registry/uddi/webdata/&quot;/&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;script/uddi.css&quot;/&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/cookies.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/wf.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/uddi.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/tree.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/init.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/ctxmenu2.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/sizer.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/tabswitch.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/fswitch.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/tree_scroller.js&quot;&gt;&lt;/script&gt;
    &lt;noscript&gt;???pageHeader_notSupportJavascript???&lt;/noscript&gt;
    &lt;/head&gt;
    &lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; rightmargin=&quot;0&quot; bottommargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; onResize=&quot;redrawScrollable()&quot;&gt;
    &lt;table&gt;
    &lt;form name=&quot;form&quot; method=&quot;POST&quot; &gt;
    &lt;input type=&quot;hidden&quot; name=&quot;actionId&quot;/&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;targetTask&quot;/&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;targetDepth&quot;/&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;redirect&quot;/&gt;
    &lt;/table&gt;
    &lt;div style=&quot;position:absolute;top:0px;left:50px;width:350px;height:50px;display:none;&quot; id=&quot;alertDiv&quot; name=&quot;alertDiv&quot;&gt;&lt;/div&gt;
    &lt;div style=&quot;position:absolute;top:0px;left:0px;width:10px;height:10px;display:none;background:url(&apos;gfx/tree/selector.gif&apos;);border:1px solid #606060;&quot; id=&quot;selectorDiv&quot; name=&quot;selectorDiv&quot;&gt;&lt;/div&gt;
    &lt;script language=&quot;JavaScript&quot;&gt;
    var navObjs=new Array();
    navObjs[0]=&apos;mbrowse&apos;;
    navObjs[1]=&apos;msearch&apos;;
    navObjs[2]=&apos;mpublish&apos;;
    &lt;/script&gt;
    &lt;!-- using localizable script, fixed by utdanh --&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/naviswitch.js&quot;&gt;&lt;/script&gt;
    &lt;!-- page content start --&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;middle&quot;&gt;
    &lt;img src=&quot;gfx/logo/uddi_logo.gif&quot; alt=&quot;Registry Control 10.1.3.1&quot; width=&quot;335&quot; height=&quot;33&quot; border=&quot;0&quot; &gt;
    &lt;/td&gt;
    &lt;td align=&quot;right&quot; valign=&quot;bottom&quot; width=&quot;100%&quot; nowrap&gt;
    &lt;span class=&quot;registryName&quot;&gt;OracleAS Service Registry&lt;/span&gt;&amp;nbsp;
    &lt;br&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/limits&apos;,&apos;root##834&apos;,-1,false);&quot; title=&quot;&quot;&gt; Licensing Information.&lt;/a&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;100%&quot; valign=&quot;bottom&quot; align=&quot;right&quot; nowrap&gt;
    &lt;a href=&quot;http://calvin.fcoracle.com:7800/registry/uddi/web#Main&quot; title=&quot;Go go the main content of page&quot;&gt;Skip to content&lt;/a&gt;&amp;nbsp;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/createAccount&apos;,&apos;root##835&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Register&quot;&gt; Register&lt;/a&gt;
    &amp;nbsp;
    &lt;/td&gt;
    &lt;td valign=&quot;bottom&quot; nowrap&gt;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;&apos;,&apos;root#login#836&apos;,-1,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Login&quot;&gt; Login&lt;/a&gt;
    &amp;nbsp;
    &lt;/td&gt;
    &lt;td valign=&quot;bottom&quot;&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;&apos;,&apos;root#refresh#837&apos;,-1,false);&quot;&gt;&lt;img src=&quot;gfx/icon/refresh.gif&quot; style=&quot;border: 0;&quot; title=&quot;Refresh page content&quot; alt=&quot;Refresh&quot; width=&quot;16&quot; height=&quot;16&quot; align=&quot;absmiddle&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;
    &lt;/td&gt;
    &lt;td valign=&quot;bottom&quot;&gt;
    &amp;nbsp;&lt;a href=&quot;../doc/index.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;gfx/icon/help.gif&quot; width=&quot;16&quot; height=&quot;16&quot; border=&quot;0&quot; alt=&quot;Help&quot; title=&quot;Registry Documentation (Open link in a new window)&quot; align=&quot;absmiddle&quot;&gt;
    &lt;/a&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td colspan=&quot;4&quot;&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot; class=&quot;headerSeperateLine&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;34&quot; height=&quot;8&quot;&gt;&lt;img src=&quot;gfx/tabs/beginLine.gif&quot; alt=&quot;&quot; width=&quot;34&quot; height=&quot;8&quot; align=&quot;middle&quot;/&gt;&lt;/td&gt;
    &lt;td width=&quot;100%&quot; height=&quot;8&quot; class=&quot;seperateLine&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&lt;/td&gt;
    &lt;td width=&quot;34&quot; height=&quot;8&quot;&gt;&lt;img src=&quot;gfx/tabs/endLine.gif&quot; alt=&quot;&quot; width=&quot;34&quot; height=&quot;8&quot; align=&quot;middle&quot;/&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td&gt;
    &amp;nbsp;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;&apos;,&apos;root##838&apos;,0,false);&quot;&gt; Home&lt;/a&gt;
    &lt;/td&gt;
    &lt;td colspan=&quot;3&quot; align=&quot;right&quot; class=&quot;welcomeMessage&quot; nowrap&gt;
    Welcome&amp;nbsp;
    Guest&amp;nbsp;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;div class=&quot;headerHorizon&quot;&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;
    &lt;tbody&gt;
    &lt;tr&gt;
    &lt;td class=&quot;lightHeaderHorizon&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/tbody&gt;
    &lt;/table&gt;
    &lt;/div&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;
    &lt;tr&gt;
    &lt;td class=&quot;darkHeaderHorizon&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table border=&quot;0&quot; width=&quot;100%&quot; border=&quot;0&quot; bordercolor=&quot;#6600cc&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; id=&quot;UIheaderTable&quot; name=&quot;UIheaderTable&quot; &gt;
    &lt;tr&gt;
    &lt;td colspan=&quot;4&quot;&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTopLeftTabActive&quot; name=&quot;L_mbrowse&quot; id=&quot;L_mbrowse&quot; background=&quot;gfx/tabs/menu_tween_top_left_1.gif&quot; &gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td align=&quot;center&quot; nowrap=&quot;nowrap&quot; name=&quot;B_mbrowse&quot; id=&quot;B_mbrowse&quot; class=&quot;menuTabActive&quot;&gt;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:navSave(&apos;mbrowse&apos;);submitPage(&apos;form&apos;,&apos;/browseTaxonomy&apos;,&apos;root##839&apos;,0,false);&quot;&gt;Browse&lt;/a&gt;&amp;nbsp;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;
    &lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTopRightTabActive&quot; name=&quot;R_mbrowse&quot; id=&quot;R_mbrowse&quot; background=&quot;gfx/tabs/menu_tween_top_right_1.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;L_msearch&quot; id=&quot;L_msearch&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td align=&quot;center&quot; nowrap=&quot;nowrap&quot; name=&quot;B_msearch&quot; id=&quot;B_msearch&quot; class=&quot;menuTabInactive&quot;&gt;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/simpleFind&apos;,&apos;root##840&apos;,0,false);&quot;&gt;Search&lt;/a&gt;&amp;nbsp;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;
    &lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;R_msearch&quot; id=&quot;R_msearch&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;L_mpublish&quot; id=&quot;L_mpublish&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td align=&quot;center&quot; nowrap=&quot;nowrap&quot; name=&quot;B_mpublish&quot; id=&quot;B_mpublish&quot; class=&quot;menuTabInactive&quot;&gt;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:navSave(&apos;mpublish&apos;);submitToURL(&apos;form&apos;,&apos;/publish&apos;,&apos;root##841&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot;&gt;Publish&lt;/a&gt;&amp;nbsp;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;
    &lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;R_mpublish&quot; id=&quot;R_mpublish&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;100%&quot; class=&quot;menuTabInactive&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabActive&quot; name=&quot;U_mbrowse&quot; id=&quot;U_mbrowse&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabInactive&quot; name=&quot;U_msearch&quot; id=&quot;U_msearch&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabInactive&quot; name=&quot;U_mpublish&quot; id=&quot;U_mpublish&quot; &gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabInactive&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td height=&quot;24&quot; colspan=&quot;3&quot; class=&quot;horizMainMenu&quot;&gt;
    &lt;div name=&quot;mbrowse&quot; id=&quot;mbrowse&quot; style=&quot;display:block&quot;&gt;
    &amp;nbsp;
    &lt;/div&gt;
    &lt;div name=&quot;msearch&quot; id=&quot;msearch&quot; style=&quot;display:none&quot;&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findBusiness&apos;,&apos;root##842&apos;,0,false);&quot; title=&quot;Search business&quot;&gt; Business&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findService&apos;,&apos;root##843&apos;,0,false);&quot; title=&quot;Search services&quot;&gt; Services&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findBinding&apos;,&apos;root##844&apos;,0,false);&quot; title=&quot;Search bindings&quot;&gt; Bindings&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findTModel&apos;,&apos;root##845&apos;,0,false);&quot; title=&quot;Search tModels&quot;&gt; tModels&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/directGet&apos;,&apos;root##846&apos;,0,false);&quot; title=&quot;Direct get&quot;&gt; Direct get&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findWsdl&apos;,&apos;root##847&apos;,0,false);&quot; title=&quot;Search WSDL&quot;&gt; WSDL&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findXML&apos;,&apos;root##848&apos;,0,false);&quot; title=&quot;Search XML&quot;&gt; XML&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findXsd&apos;,&apos;root##849&apos;,0,false);&quot; title=&quot;Search XSD&quot;&gt; XSD&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findXslt&apos;,&apos;root##850&apos;,0,false);&quot; title=&quot;Search XSLT&quot;&gt; XSLT&lt;/a&gt;
    &amp;nbsp;
    &lt;/div&gt;
    &lt;div name=&quot;mpublish&quot; id=&quot;mpublish&quot; style=&quot;display:none&quot;&gt;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publish&apos;,&apos;root##851&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish&quot;&gt; Publish&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/subscriptions&apos;,&apos;root##852&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Subscriptions&quot;&gt; Subscriptions&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/custody&apos;,&apos;root##853&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Custody transfer&quot;&gt; Custody transfer&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishWsdl&apos;,&apos;root##854&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish WSDL&quot;&gt; WSDL&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishXML&apos;,&apos;root##855&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish XML&quot;&gt; XML&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishXsd&apos;,&apos;root##856&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish XSD&quot;&gt; XSD&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishXslt&apos;,&apos;root##857&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish XSLT&quot;&gt; XSLT&lt;/a&gt;
    &amp;nbsp;
    &lt;/div&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td height=&quot;10&quot; colspan=&quot;4&quot; background=&quot;gfx/table/sh.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;1&quot; height=&quot;10&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
    &lt;tr&gt;&lt;td class=&quot;DialogOffset_5px&quot;&gt;
    &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;
    &lt;!-- normal frame header begin --&gt;
    &lt;div class=&quot;DialogOffset_5px&quot;&gt;
    &lt;table border=&quot;0&quot; bordercolor=&quot;navy&quot; width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;10&quot; height=&quot;30&quot; background=&quot;gfx/table/bl.gif&quot; valign=&quot;top&quot;&gt;&lt;img src=&quot;gfx/table/cc01.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;30&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td height=&quot;30&quot; width=&quot;100%&quot; class=&quot;frameTop&quot; background=&quot;gfx/table/hdr_bg.gif&quot; nowrap&gt;&lt;div class=&quot;DialogName&quot; style=&quot;float:left&quot;&gt;Oracle Application Server Service Registry&amp;nbsp;&lt;/div&gt;
    &lt;/td&gt;
    &lt;td width=&quot;10&quot; height=&quot;30&quot; valign=&quot;top&quot; background=&quot;gfx/table/br.gif&quot;&gt;&lt;img src=&quot;gfx/table/c02.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;10&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;10&quot; height=&quot;30&quot; valign=&quot;top&quot; background=&quot;gfx/table/sv.gif&quot;&gt;&lt;img src=&quot;gfx/table/sc02.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;10&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td width=&quot;10&quot; background=&quot;gfx/table/bl.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;305&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td height=&quot;10&quot; valign=&quot;top&quot; class=&quot;DialogContent&quot; name=&apos;normalDialogPane&apos; id=&apos;normalDialogPane&apos;&gt;&lt;!-- normal frame header end --&gt;
    &lt;div class=&quot;mainDialogContent&quot;&gt;
    &lt;div&gt;
    &lt;!-- anchor to quickly Skip to Content --&gt;
    &lt;a name=&quot;Main&quot;&gt;&lt;/a&gt; &lt;!-- normal frame header end --&gt;
    &lt;p class=&quot;horizontalSpace&quot;&gt;
    &lt;ul class=&quot;bigtitle&quot;&gt;
    &lt;li style=&quot;width:80%&quot;&gt;&lt;h2 style=&quot;padding:0 !important;&quot;&gt;Oracle Application Server Service Registry 10.1.3.1&lt;/h2&gt;&lt;/li&gt;
    &lt;li style=&quot;text-align:right&quot;&gt;&lt;a class=&quot;docLink&quot; href=&quot;javascript:void(0);&quot; onClick=&apos;window.open(&quot;http://calvin.fcoracle.com:7800/registry/uddi/web/../doc/stepbystep/stepbystep.html&quot;,&quot;&quot;,&quot;scrollbars=yes,width=390, height=535, resizable=yes&quot;)&apos;&gt;Registry Step By Step Guide&lt;/a&gt;
    &lt;br/&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/about&apos;,&apos;root##804&apos;,-1,false);&quot; title=&quot;&quot;&gt; About Oracle Registry&lt;/a&gt;
    &lt;/li&gt;
    &lt;br/&gt;
    &lt;/ul&gt;
    &lt;/p&gt;
    &lt;p class=&quot;horizontalSpace&quot;&gt;Oracle Application Server Service Registry is the most complete and proven business services registry providing a foundation for the governance and lifecycle management of your business services. The Registry provides you with what you need to obtain enterprise-wide insight, control and economic leverage of your organization&apos;s business services assets. Much more than just a UDDI registry, the Registry captures and makes discoverable business service descriptions into a centrally managed, reliable and searchablelocation, becoming the system of record for your business services&lt;br/&gt;
    Oracle Application Server Service Registry provides two user interfaces.
    &lt;/p&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td valign=&quot;top&quot; width=&quot;50%&quot;&gt; &lt;h3 class=&quot;horizontalSpace&quot;&gt;Registry Control&lt;/h3&gt;
    &lt;ul class=&quot;list1&quot;&gt;
    &lt;li&gt;Using the &lt;b&gt;Registry Control&lt;/b&gt; users can browse and publish registry content, create subscription and perform ownership changes. The Registry Control is the primary console for administrators to perform registry management.&lt;/li&gt;
    &lt;li&gt;&lt;h4 class=&quot;horizontalSpace&quot;&gt;Getting Started with the Registry Control&lt;/h4&gt;&lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Register&lt;/b&gt; - &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/createAccount&apos;,&apos;root##805&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot;&gt;Register&lt;/a&gt; so that you can later publish business service content to the registry
    &lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Login&lt;/b&gt; - &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;&apos;,&apos;root#login#806&apos;,-1,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot;&gt;Login&lt;/a&gt; to publish content to the registry
    &lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Browse&lt;/b&gt; - &lt;a href=&quot;javascript:navSave(&apos;mbrowse&apos;);submitPage(&apos;form&apos;,&apos;/browseTaxonomy&apos;,&apos;root##807&apos;,0,false);&quot;&gt;Browse&lt;/a&gt; registry content using enterprise taxonomies
    &lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Search&lt;/b&gt; - &lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/simpleFind&apos;,&apos;root##808&apos;,0,false);&quot;&gt;Search&lt;/a&gt; registry content including services, service providers, service endpoints and interfaces, and business service artifacts
    &lt;ul class=&quot;vlist2&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findBusiness&apos;,&apos;root##809&apos;,0,false);&quot; title=&quot;Search business&quot;&gt; Business &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findService&apos;,&apos;root##810&apos;,0,false);&quot; title=&quot;Search services&quot;&gt; Services &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findBinding&apos;,&apos;root##811&apos;,0,false);&quot; title=&quot;Search bindings&quot;&gt; Bindings &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findTModel&apos;,&apos;root##812&apos;,0,false);&quot; title=&quot;Search tModels&quot;&gt; tModels &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/directGet&apos;,&apos;root##813&apos;,0,false);&quot; title=&quot;Direct get&quot;&gt; Direct get &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findWsdl&apos;,&apos;root##814&apos;,0,false);&quot; title=&quot;Search WSDL&quot;&gt; WSDL &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findXML&apos;,&apos;root##815&apos;,0,false);&quot; title=&quot;Search XML&quot;&gt; XML &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findXsd&apos;,&apos;root##816&apos;,0,false);&quot; title=&quot;Search XSD&quot;&gt; XSD &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findXslt&apos;,&apos;root##817&apos;,0,false);&quot; title=&quot;Search XSLT&quot;&gt; XSLT &lt;/a&gt;&lt;/li&gt;
    Pls. help me out with this..
    Rgds,
    Nikhil

    Hi,
    Yes, I am able to open the url and the results are:
    <?xml version="1.0" encoding="utf-8" ?>
    - <definitions name="UDDI_API_V3" targetNamespace="urn:uddi-org:api_v3generated/" xmlns:tns="urn:uddi-org:api_v3generated/" xmlns="http://schemas.xmlsoap.org/wsdl/">
    <import namespace="urn:uddi-org:api_v2" location="http://calvin.fcoracle.com:7800/registry/uddi/inquiry/2.0/wsdl" />
    <import namespace="urn:uddi-org:api_v3" location="http://calvin.fcoracle.com:7800/registry/uddi/inquiry/3.0/wsdl" />
    <import namespace="urn:uddi-org:inquiry" location="http://calvin.fcoracle.com:7800/registry/uddi/inquiry/1.0/wsdl" />
    </definitions>
    Did u get any clue to this now what might be the problem? Any services are down?
    Rgds,
    Nikhil

  • Weblogic 10.3 : Work manager is not getting assigned to a application

    Hi,
    i have assigned a work manager to an application in weblogic-application.xml and able to see that under Deployments
    -> Application name -> Configuration -> Workload tab of weblogic console.
    But while starting server get a warning as
    <Dec 17, 2008 9:45:16 AM IST> <Warning> <WorkManager> <BEA-002919> <Unable to find a WorkManager with name RealWorkManager. Dispatch policy RealWorkManager will map to the default WorkManager for the application SmpMain>
    Can some one help me out how to assign a work manager to a application.
    Thanks,
    Smita

    Thanks for your help.
    When i created a work manager from Deployments -> Configuration -> Workload -> New and the new Work Manager appears in the Application-Scoped Work Managers table. But was not able to see that in Monitering -> Workload Work managers table. Why is that so?
    Regards,
    Smita

  • Recurring Events not gets all data in a given month in C#

    Help me about this. I cannot get all the records of recurring events in Calendar. Even using <Month> ,<Year>. it doesn't give the all records. that happens when adding no end date of recurrence.
    ex. i want to filter all records on the 10-01-2018 by its month but it appears like in different result range of date. cause i've tried creating an event in calendar with recurrence of Daily weekday=true and no end date. then i don't why it doesn't give the
    correct result and just tried this date as sample. 
    here's the image of what trying to get:
    https://social.msdn.microsoft.com/Forums/getfile/621163
    here's the data showing when getting it.
    http://community.office365.com/cfs-file.ashx/__key/communityserver-discussions-components-files/154/0841.img.jpg
    Here's the code:
    var list = xWeb.Lists.TryGetList("TestCalendar");
    var oQueryBookings = new SPQuery();
    oQueryBookings.CalendarDate = new DateTime(2018,10 ,1);
    oQueryBookings.ExpandRecurrence = true;
    SPListItemCollection oCollBookings = null;
    string strViewField = "<FieldRef Name='RecurrenceID' />" +
    "<FieldRef Name='Duration' />" +
    "<FieldRef Name='Title' />" +
    "<FieldRef Name='EventDate' />" +
    "<FieldRef Name='EndDate' />" +
    "<FieldRef Name='Location' />" +
    "<FieldRef Name='Category' />" +
    "<FieldRef Name='Description' />" +
    "<FieldRef Name='fRecurrence' />" +
    "<FieldRef Name='RecurrenceData' />" +
    "<FieldRef Name='fAllDayEvent' />" +
    "<FieldRef Name='TimeZone' />" +
    "<FieldRef Name='EventType' />" +
    "<FieldRef Name='UID' />" +
    "<FieldRef Name='XMLTZone' />" +
    "<FieldRef Name='LinkTitle'/>";
    oQueryBookings.ViewFields = strViewField;
    string strQuery =" <Where>" + 
    " <DateRangesOverlap> " + 
    " <FieldRef Name=\"EventDate\" /> " + 
    " <FieldRef Name=\"EndDate\" /> " + 
    " <FieldRef Name=\"RecurrenceID\" /> " + 
    " <Value Type=\"DateTime\" IncludeTimeValue=\"TRUE\"> " + 
    " <Month /> " + 
    " </Value> " + 
    " </DateRangesOverlap> " + 
    " </Where> " ;
    oQueryBookings.Query = strQuery;
    oCollBookings = list.GetItems(oQueryBookings);
    if (oCollBookings.Count > 0)
    DataTable objDatatable = new DataTable();
    objDatatable = oCollBookings.GetDataTable();

    Hi,
    Per my understanding, you might want to get all the recurring events within a specific month using C#.
    Here is working code demo about getting recurring events by month for your reference:
    public static void getRecurringEvents()
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    SPQuery query = new SPQuery();
    query.ExpandRecurrence = true;
    query.Query = "<Where><DateRangesOverlap><FieldRef Name=\"EventDate\" /><FieldRef Name=\"EndDate\" />" +
    "<FieldRef Name=\"RecurrenceID\" /><Value Type=\"DateTime\">" +
    "<Month />" +
    "</Value></DateRangesOverlap></Where>";
    //get the events in the specific months
    query.CalendarDate = DateTime.Now.AddMonths(-1);
    SPListItemCollection calendarItems = web.GetList("/Lists/Calendar1").GetItems(query);
    foreach (SPListItem item in calendarItems)
    Console.WriteLine(item["Title"] + ": starts "
    + item["EventDate"].ToString() + " and ends "
    + item["EndDate"].ToString());
    It will return all the recurring events of last month:
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Bar graph click event not getting triggered

    i specified methods in bean for bar graph's clickListener and clickAction.
    graph data is getting rendered properly.
    graph is based on SQL based read only VO which uses bind variables as well which are set on a button click to generate report
    but on clicking on graph, control is not going to bean method which handles clickEvent
    i have wasted lots of time for this
    initially bean scope was backing, i tried with request and session as well nothing is getting control to bean
    jdev 11 1 1 5

    Hi,
    +"i have wasted lots of time for this ..."+
    And you wasted more time by not giving enough information about the graph configuration and the click listener signature. Note that we need a way to reproduce a behavior to give you some hints.
    Frank

  • Command Link in ADF table is not working/ PPR event not getting fired

    Hi All,
    I am having ADF Table, in that one column is with command link if click on command link, it is not navigating to corresponding page or method of a bean. If i give same command link out of the table it working fine, this issue i am facing is in IE9.
    if i use IE in compatibility mode the links works fine, even in IE8 version also.
    Browser: IE 9
    Jdev version: 11.1.1.5.0
    I tried all possible things, but nothing workout for me.
    showPopupBehavior not working in IE9 for af:table buttons (jdev11.1.1.5.0)
    Partial page rendering not working in ie9
    Command Link in ADF table is not working
    Thnks

    Hi,
    please file a bug if you have a customer support contract and provide a testcase
    Frank

  • I am not getting any sounds from Applications or Web Browsers, but i am getting alert sounds.

    I've tried everything: Restarting my computer, audio MIDI settings, reseting PRAM, opening garageband :l Nothing seems to work! This is really anoyying. I've looked at all the forums about this and i've tried everything it says, and no luck. Please help. And its weird because my computer is not muted and when i turn on the computer the startup sound comes, then i go into iTunes and play a song, but nothing plays, I just hear nothing but error and alert sounds! Please Help!!

    Hmmm, only thing I can think is some extension not loading or borked, open System Profiler, or whatever the name has changed to now, check Software>Extensions & see if all the myriad Audio ones appear to be loaded & valid...

Maybe you are looking for

  • How to configure Live Office Data with no Logon Prompt

    Hi, I am using Xcelsius with Live Office.  Everything appears fine except that when I attempt to preview the dashboard using the Xclesius preview button I am being prompted with a logon screen.  For my clients this will not be an acceptable solution

  • Transfer iPlhoto Library to External Drive

    I have transferred the photos from my iPhone to my G3 B/W desktop (upgraded to a g4 processor), operating on  OSX 10.4.11.  Can someone what is the best way to back up imy iPhoto Library to an external Hard Drive.

  • How to create lock object?

    How to create lock object,- by going to se11 i have created but when i am going to sm12 to see wheather the table is locked or not then it is showing no entries found. Please help me how to create Lock object and see wheather thetable is lock is lock

  • Logical Join

    I would like to know how to create a logical join between fact table and dimension table which exist already in the Business Model and Mapping. I mean that I know how to show the Business Model Diagram of a fact table, but I don't know how to add a d

  • How to Maintain a Segment in case of LSMW

    Hi,    I want to maintain a segment in LSMW so how can i maintain a segment in case of LSMW so actually i want to maintain the document flow segment so how can i maintain the segment in LSMW Regards Raju