Dbxml:lookup-index fails with edge-element-presence

The custom xquery function dbxml:lookup-index seems broken for edge-element-presence indices when a namespace is specified:
dbxml> lookupedge edge-element-presence 'http://ceridwen.us/default' node11 'http://ceridwen.us/default' node1
1 objects returned for eager index lookup 'edge-element-presence'
dbxml> q "declare default element namespace 'http://ceridwen.us/default'; dbxml:lookup-index('test', 'node11', 'node1')"
0 objects returned for eager expression 'declare default element namespace 'http://ceridwen.us/default'; dbxml:lookup-index('test', 'node11', 'node1')'
dbxml> q "declare default element namespace 'http://ceridwen.us/default'; dbxml:lookup-index('test', 'node11')"
2 objects returned for eager expression 'declare default element namespace 'http://ceridwen.us/default'; dbxml:lookup-index('test', 'node11')'Dbxml-2.5.16, OSX 10.6.4
Edited by: jralls on Aug 22, 2010 12:22 PM

Is this what you need?
dbxml> listin
Default Index: node-element-presence-none edge-element-presence-none
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/test}:dataType
Index: node-attribute-equality-string node-attribute-equality-double for node {http://ceridwen.us/test}:elemType
Index: node-attribute-equality-string node-attribute-equality-double for node {}:first
Index: node-attribute-equality-string node-attribute-equality-double for node {http://ceridwen.us/test}:first
Index: edge-attribute-equality-string node-attribute-equality-string node-attribute-equality-double for node {http://www.w3c.org/1999/xlink}:href
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/test}:name
Index: unique-node-metadata-equality-string for node {http://www.sleepycat.com/2002/dbxml}:name
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default}:node11
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default}:node12
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default2}:node2
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default}:node311
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default}:node312
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default}:node321
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/default}:node322
Index: node-element-equality-string node-element-equality-double for node {http://ceridwen.us/test}:ref
Index: edge-attribute-equality-string node-attribute-equality-string node-attribute-equality-double for node {http://www.w3c.org/1999/xlink}:role
Index: node-attribute-equality-string node-attribute-equality-double for node {http://www.w3c.org/1999/xlink}:second
Index: node-attribute-equality-string node-attribute-equality-double for node {http://www.w3c.org/1999/xlink}:title
Index: node-attribute-equality-string node-attribute-equality-double for node {http://www.w3c.org/1999/xlink}:type
20 indexes found.This comes from
    DbXml::XmlContainer cnt = sto->getContainer();
    DbXml::XmlTransaction txn = m_mgr->createTransaction();
    try {
     DbXml::XmlUpdateContext uc = m_mgr->createUpdateContext();
     std::string xlink_uri("http://www.w3c.org/1999/xlink");
     std::string href("href");
     std::string role("role");
     std::string attr_eq("edge-attribute-equality-string");
     std::string node_pr("edge-element-presence-none");
     cnt.addIndex(txn, xlink_uri, href, attr_eq, uc);
     cnt.addIndex(txn, xlink_uri, role, attr_eq, uc);
     cnt.addDefaultIndex(txn, node_pr, uc);
     txn.commit();
    catch(DbXml::XmlException& e) {
     logError() << "XmlStorage: Opening container  " << name.sstr() << "  threw "
             << e.what() << endl;
     throw;
    }There are only two documents in the container:
<t:TestDoc xmlns:t="http://ceridwen.us/test" t:first="an attribute" xmlns:xlink="http://www.w3c.org/1999/xlink" xlink:second="another attribute">
   This is the root node of a test document
   <t:name>The Test Document</t:name>
   <t:dataType>TestDocument</t:dataType>
   <node1 xmlns="http://ceridwen.us/default" first="a node attribute">This element has 2 subnodes
       <node11>This is the first element under node 1</node11>
       <node12>This is the second element under node 1</node12>
   </node1>
   <node2 xmlns="http://ceridwen.us/default2">This element has three text nodes</node2>
   <node2 xmlns="http://ceridwen.us/default2">This is the second text node</node2>
   <node2 xmlns="http://ceridwen.us/default2">This element is the last one</node2>
   <Table xmlns="http://ceridwen.us/default">
      <t:DataRow t:elemType="Instance">
         <node311>First List Element</node311>
         <node312>Second List Element</node312>
      </t:DataRow>
      <t:DataRow t:elemType="Instance">
         <node321>Another First List Element</node321>
         <node322>Another Second List Element</node322>
      </t:DataRow>
   </Table>
   <?XmlStorage-html default-html?>
   <!--This is a gratuitous comment for testing.-->
</t:TestDoc>
<t:TestDoc xmlns:t="http://ceridwen.us/test" t:first="an attribute" xmlns:xlink="http://www.w3c.org/1999/xlink" xlink:second="another attribute">
   This is the root node of a test document
   <t:name>The Test Document</t:name>
   <t:dataType>TestDocument</t:dataType>
   <node1 xmlns="http://ceridwen.us/default" first="a node attribute">
      This element has 2 subnodes
      <node11>This is the first element under node 1</node11>
      <node12>This is the second element under node 1</node12>
   </node1>
   <node2 xmlns="http://ceridwen.us/default2">This element has three text nodes</node2>
   <node2 xmlns="http://ceridwen.us/default2">This is the second text node</node2>
   <node2 xmlns="http://ceridwen.us/default2">This element is the last one</node2>
   <Table xmlns="http://ceridwen.us/default">
      <t:DataRow t:elemType="Instance">
         <node311>First List Element</node311>
         <node312>Second List Element</node312>
      </t:DataRow>
      <t:DataRow t:elemType="Instance">
         <node321>Another First List Element</node321>
         <node322>Another Second List Element</node322>
      </t:DataRow>
   </Table>
   <?XmlStorage-html default-html?>
   <!--This is a gratuitous comment for testing.-->
   <t:ref xlink:href="dbxml:/test/The%20Test%20Document00000001" xlink:role="data:text/plain,reference" xlink:title="The Test Document"xlink:type="simple"/>
</t:TestDoc>(Aside: It would be really nice if the dbxml shell's print command had a "pretty" option!)

Similar Messages

  • SOA composite failing with unexpected element

    Hello All
    In OIM 11g R2PS2 and SOA 11.1.1.7, we have a custom workflow which sends an approval request to all members in a specific role e.g. Role1 at operational level. I took that workflow and added a switch case which will send an approval to same role Role1 and further extended it by adding a sequential stage which will also send to all members to another role e.g. Role2. Before this switch case, there is a business rule component. After I deploy the composite and a user raise a request, the request goes to the operational level and when it is approved the request fails with the following exception in the soa log -
    ==> f-0 initial-fact()
    <Error> <oracle.soa.services.rules> <BEA-000000> <<.> Error while executing the rule session.
    The rule session 260012 failed to execute.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
    Error while executing the rule session.
    The rule session 260012 failed to execute.
    Check the underlying exception and correct the error. If the error persists, contact Oracle Support Services.
            at oracle.bpel.services.rules.rpi.AbstractDefaultRuleSession.execute(AbstractDefaultRuleSession.java:276)
            at oracle.bpel.services.rules.rpi.oracle2.OracleRuleSession.execute(OracleRuleSession.java:278)
    Caused By: javax.xml.bind.UnmarshalException: unexpected element (uri:"http://xmlns.oracle.com/RequestServiceApp/RequestDataService/CatalogData", local:"CatalogData"). Expected elements are <{http://xmlns.oracle.com/RequestServiceApp/RequestDataService/RoleData}RoleData>,<{http://xmlns.oracle.com/RequestServiceApp/RequestDataService/RoleData}RoleKey>
    This exception only occurs when I add the new changes - i.e. new switch case and sequential stage. I do not understand where I am going wrong. I am attaching some screen shots  -
    The workflowselection component is as follows -
    Please give me any advice, I am not understanding anything. Thank You in advance.

    I am not quite following exactly what you are trying to accomplish but I have two things to look at.
    1. When you added Role2 to the business rules, did you pass that in as a parameter?  If so, did you remember to reflect that new parameter in the business rule and the bpel process?
    2. In the copy rules from your screen shot, I see 3 slashes after catalogData.  I would expect to see 2.  However, it could be correct. I am not clear on exactly what is happening without seeing some actual source code.

  • Creation of  rules index failing with ORA-01652 exception

    I am trying to create a rules index in the following way,
    BEGIN
         SEM_APIS.CREATE_RULES_INDEX(
         'APPS_RDF_IDX',
         SEM_Models('SEMANTIC_SEARCH_MODEL'),
         SEM_Rulebases('OWLPRIME','SEMANTIC_SEARCH_RULEBASE'));
    END;
    with semantic_search_rulebase having about 5 rules and with 28839 triples in the model.
    When I am trying to run create index it fails after a long time by throwing exception
    ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
    though TEMP is allocated 5GB memory.
    Please clarify me on the following questions,
    1. How much TEMP space should be allocated if the triples are going to be in millions and rules at about 10 to 100 and why is indexing taking a lot of TEMP space with a less amount of triples.
    2. How much time normally would create rules index take with triples of size from thousands to millions.
    3. How to make the create rules index run faster.
    Thanks,
    Phani

    First of all, please start using create_entailment API instead of that create_rules_index API.
    Regarding 1), 5GB temp space is not a whole lot.
    It is hard to say exactly how much you need because you have user defined rules.
    Regarding 2) and 3), please check out the following inference best practice paper.
    http://www.oracle.com/technology/tech/semantic_technologies/pdf/semantic_infer_bestprac_wp.pdf
    Also, if you like, please post your rules and I may be able to help you model
    some of your rules using native OWL constructs.

  • Get-CsManagementStoreReplicationStatus fails with edge

    my replication to my edge server fails.
    I can telnet to edge using 4443.
    the Certutil -verify -urlfetch looks good.
    I have the edgepoolservername is in dns. nslookup and ping works.
    restarted services on frontend server.lync clients are not having issues

    under the event viewer on the FE server:
    Description:
    Lost connection to all Web Conferencing Edge Services.
    Cause: Service may be unavailable or Network connectivity may have been compromised.
    Resolution:
    Verify all Web Conferencing Edge Services in the topology are running, and network connectivity is available.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="LS Data MCU" />
        <EventID Qualifiers="50170">41026</EventID>
        <Level>2</Level>
        <Task>1018</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-09-11T16:38:56.000000000Z" />
        <EventRecordID>386594</EventRecordID>
        <Channel>Lync Server</Channel>
        <Computer>LABEXFE1.Lab.Local</Computer>
        <Security />
      </System>

  • CREATE INDEX fails with "insufficient privilege"

    Hello. I've never used TEXT before and frankly my first experience isn't going well. The long and the short of it is that when I ask 11g to make an index (authenticated to the schema) I get an error stack suggesting privilege problems:
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drvxtabc.create_indexes:TC
    ORA-01031: insufficient privileges
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CATINDEXMETHODS", line 97
    I've concocted this simple case so you can see my work:
    create table a_ctxtest
         mykey int not null,
         mytext varchar2(200),     
         constraint px_testkey primary key ( mykey )
    create index itx_test on a_ctxtest( mytext ) indextype is ctxsys.ctxcat PARAMETERS ('STORAGE mystore');
    This code, found in this forum, had been run earlier in the session:
    begin
    ctx_ddl.create_preference('mystore', 'BASIC_STORAGE');
    ctx_ddl.set_attribute('mystore', 'I_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
    ctx_ddl.set_attribute('mystore', 'K_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
    ctx_ddl.set_attribute('mystore', 'R_TABLE_CLAUSE', 'tablespace users storage (initial 32k) lob (data) store as (disable storage in row cache)');
    ctx_ddl.set_attribute('mystore', 'N_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
    ctx_ddl.set_attribute('mystore', 'I_INDEX_CLAUSE', 'tablespace users storage (initial 32k) compress 2');
    ctx_ddl.set_attribute('mystore', 'P_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
    ctx_ddl.set_attribute('mystore', 'S_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
    end;
    Hints or even outright commands back toward something that works as expected would certainly be welcome.

    I am going to guess that you are probably missing the create trigger privilege. I have provided a reproduction of your error, followed by granting of create trigger, followed by successful creation of the index. The required privileges can either be granted individually or through roles such as resource and ctxapp.
    SCOTT@orcl_11g> create user test identified by test
      2  /
    User created.
    SCOTT@orcl_11g> alter user test quota 100m on users
      2  /
    User altered.
    SCOTT@orcl_11g> grant connect to test
      2  /
    Grant succeeded.
    SCOTT@orcl_11g> grant create table to test
      2  /
    Grant succeeded.
    SCOTT@orcl_11g> grant execute on ctx_ddl to test
      2  /
    Grant succeeded.
    SCOTT@orcl_11g> connect test/test
    Connected.
    TEST@orcl_11g>
    TEST@orcl_11g> create table a_ctxtest
      2  (
      3  mykey int not null,
      4  mytext varchar2(200),
      5  constraint px_testkey primary key ( mykey )
      6  )
      7  /
    Table created.
    TEST@orcl_11g> begin
      2  ctx_ddl.create_preference('mystore', 'BASIC_STORAGE');
      3  ctx_ddl.set_attribute('mystore', 'I_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
      4  ctx_ddl.set_attribute('mystore', 'K_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
      5  ctx_ddl.set_attribute('mystore', 'R_TABLE_CLAUSE', 'tablespace users storage (initial 32k) lob (data) store as (disable storage in row cache)');
      6  ctx_ddl.set_attribute('mystore', 'N_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
      7  ctx_ddl.set_attribute('mystore', 'I_INDEX_CLAUSE', 'tablespace users storage (initial 32k) compress 2');
      8  ctx_ddl.set_attribute('mystore', 'P_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
      9  ctx_ddl.set_attribute('mystore', 'S_TABLE_CLAUSE', 'tablespace users storage (initial 32k)');
    10  end;
    11  /
    PL/SQL procedure successfully completed.
    TEST@orcl_11g> create index itx_test on a_ctxtest( mytext ) indextype is ctxsys.ctxcat PARAMETERS ('STORAGE mystore')
      2  /
    create index itx_test on a_ctxtest( mytext ) indextype is ctxsys.ctxcat PARAMETERS ('STORAGE mystore')
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drvxtabc.create_indexes:TC
    ORA-01031: insufficient privileges
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CATINDEXMETHODS", line 97
    TEST@orcl_11g> drop index itx_test
      2  /
    Index dropped.
    TEST@orcl_11g> connect scott/tiger
    Connected.
    SCOTT@orcl_11g>
    SCOTT@orcl_11g> grant create trigger to test
      2  /
    Grant succeeded.
    SCOTT@orcl_11g> connect test/test
    Connected.
    TEST@orcl_11g>
    TEST@orcl_11g> create index itx_test on a_ctxtest( mytext ) indextype is ctxsys.ctxcat PARAMETERS ('STORAGE mystore')
      2  /
    Index created.
    TEST@orcl_11g>

  • Index failed for Docs and PDF files with return code 8002

    Hi All,
    I try to index Word documents in a webdav folder in KM. When I add a text document the Indexing completes correctly and I can find the document via the search. When I add a Word Document or PDF to the folder and reindex I get the message Index failed with return code 8002.
    How can I solve this Problem.
    Kind Regards,
    Richard Middelburg

    Hi,
    I have changed the host already from localhost into the hostname of the linux server. I tried this also with the FQDN of the server.  I have entered the following entry
    Hostname linux = sap12
    In the URL generator service = http://sap12
    Must I restart the portal?
    Richard

  • Indexing Lotus Repository fails with an exception

    Hi,
    I am trying to index a lotus repository. But after indexing around 10000 documents the indexing fails with an exception.
    "Crawler global_index_Telstra Technology Doc Library failed - com.sapportals.wcm.service.xcrawler.XCrawlerException: crawler task INDEXMANAGEMENT_global_index.409bc343-1a86-2710-0292-b5747d8b1241 terminated unexpectedly (retriever failure)"
    Does anyone have an idea why its happening like this
    Its a bit urgent
    Regards
    Prakash

    Hi Prakash,
    assuming your intrante sites are crawled by a crawler profile "for Web-RM" the most common things you may still need to do are:
    - In the crawler parameters, Mark "Follow Links (or Redirects on Web-Sites)", if your start page(s)
    - On the intranet sites, check if they use robot information that says "noindex" or "nofollow" and possibly change that
    If that does not help...sorry, it's OSS again.
    Karsten

  • New Edge server fails with DNS lookups - incoming mail stuck in queue

    I just setup an Edge server, together with 2 Ex2013 servers with DAG. Sync works fine, however incoming mails are stuck at the edge server. The queue looks like this:
    451 4.4.0 DNS query failed. The error was: DNS query failed with error ErrorRetry
    Checking the logs, it also shows errors like this:
    2014-07-12T16:32:06.599Z,08D16C05D02E2774,SMTP,"ex2.internal.contoso.com,ex3.internal.contoso.com,ex4.internal.contoso.com",>,DNS server returned ErrorRetry reported by 0.0.0.0. [Domain:Result] = EX2.internal.contoso.com:ErrorRetry; EX3.internal.contoso.com:ErrorRetry; EX4.internal.contoso.com:ErrorRetry;
    2014-07-12T16:32:06.599Z,08D16C05D02E2774,SMTP,"ex2.internal.contoso.com,ex3.internal.contoso.com,ex4.internal.contoso.com",-,"Messages: 0 Bytes: 0 (The DNS query for 'SmartHostConnectorDelivery':'ex2.internal.contoso.com,ex3.internal.contoso.com,ex4.internal.contoso.com':'e01d6f93-e25b-4e36-9f2f-c1c7c73889ae' failed with error : ErrorRetry)"
    Now the network is a little special, as the edge server is not in DMZ, but simply in a workgroup in the same LAN as the other Exchange servers. The edge server NIC's are configured to use the internal AD DNS servers, and the edge server is able to lookup
    all the other exchange servers (ie. ex2.internal.contoso.com).
    So I wonder why the edge servers logs DNS lookup errors as long as the server it self can lookup the internal hostnames for Exchange.
    Any help would be great, as all incoming mail is now stuck at the edge server.

    This is from the Edge server:
    [PS] C:\Windows\system32>Get-SendConnector | fl
    AddressSpaces                : {smtp:*;100}
    AuthenticationCredential     :
    CloudServicesMailEnabled     : False
    Comment                      :
    ConnectedDomains             : {}
    ConnectionInactivityTimeOut  : 00:10:00
    DNSRoutingEnabled            : True
    DomainSecureEnabled          : True
    Enabled                      : True
    ErrorPolicies                : Default
    ForceHELO                    : False
    Fqdn                         :
    FrontendProxyEnabled         : False
    HomeMTA                      :
    HomeMtaServerId              :
    Identity                     : EdgeSync - MyCity to Internet
    IgnoreSTARTTLS               : False
    IsScopedConnector            : False
    IsSmtpConnector              : True
    MaxMessageSize               : 100 MB (104,857,600 bytes)
    Name                         : EdgeSync - MyCity to Internet
    Port                         : 25
    ProtocolLoggingLevel         : Verbose
    RequireOorg                  : False
    RequireTLS                   : False
    SmartHostAuthMechanism       : None
    SmartHosts                   : {}
    SmartHostsString             :
    SmtpMaxMessagesPerConnection : 20
    SourceIPAddress              : 0.0.0.0
    SourceRoutingGroup           : Exchange Routing Group (DWBGZMFD01QNBJR)
    SourceTransportServers       : {}
    TlsAuthLevel                 :
    TlsCertificateName           :
    TlsDomain                    :
    UseExternalDNSServersEnabled : False
    AddressSpaces                : {smtp:--;100}
    AuthenticationCredential     :
    CloudServicesMailEnabled     : False
    Comment                      :
    ConnectedDomains             : {}
    ConnectionInactivityTimeOut  : 00:10:00
    DNSRoutingEnabled            : False
    DomainSecureEnabled          : False
    Enabled                      : True
    ErrorPolicies                : Default
    ForceHELO                    : False
    Fqdn                         :
    FrontendProxyEnabled         : False
    HomeMTA                      :
    HomeMtaServerId              :
    Identity                     : EdgeSync - Inbound to MyCity
    IgnoreSTARTTLS               : False
    IsScopedConnector            : False
    IsSmtpConnector              : True
    MaxMessageSize               : Unlimited
    Name                         : EdgeSync - Inbound to MyCity
    Port                         : 25
    ProtocolLoggingLevel         : Verbose
    RequireOorg                  : False
    RequireTLS                   : False
    SmartHostAuthMechanism       : ExchangeServer
    SmartHosts                   : {--}
    SmartHostsString             : --
    SmtpMaxMessagesPerConnection : 20
    SourceIPAddress              : 0.0.0.0
    SourceRoutingGroup           : Exchange Routing Group (DWBGZMFD01QNBJR)
    SourceTransportServers       : {}
    TlsAuthLevel                 :
    TlsCertificateName           :
    TlsDomain                    :
    UseExternalDNSServersEnabled : False
    This is from the Hub/CAS/MBX server:
    [PS] C:\Windows\system32>Get-SendConnector | fl
    AddressSpaces                : {SMTP:*;1}
    AuthenticationCredential     :
    CloudServicesMailEnabled     : False
    Comment                      :
    ConnectedDomains             : {}
    ConnectionInactivityTimeOut  : 00:10:00
    DNSRoutingEnabled            : True
    DomainSecureEnabled          : False
    Enabled                      : False
    ErrorPolicies                : Default
    ForceHELO                    : False
    Fqdn                         : mail.va-world.com
    FrontendProxyEnabled         : False
    HomeMTA                      : Microsoft MTA
    HomeMtaServerId              : EX3
    Identity                     : outgoing SMTP
    IgnoreSTARTTLS               : False
    IsScopedConnector            : False
    IsSmtpConnector              : True
    MaxMessageSize               : 151.6 MB (158,965,760 bytes)
    Name                         : outgoing SMTP
    Port                         : 25
    ProtocolLoggingLevel         : Verbose
    RequireOorg                  : False
    RequireTLS                   : False
    SmartHostAuthMechanism       : None
    SmartHosts                   : {}
    SmartHostsString             :
    SmtpMaxMessagesPerConnection : 20
    SourceIPAddress              : 0.0.0.0
    SourceRoutingGroup           : Exchange Routing Group (DWBGZMFD01QNBJR)
    SourceTransportServers       : {EX4, EX3}
    TlsAuthLevel                 :
    TlsCertificateName           :
    TlsDomain                    :
    UseExternalDNSServersEnabled : False
    AddressSpaces                : {smtp:*;100}
    AuthenticationCredential     :
    CloudServicesMailEnabled     : False
    Comment                      :
    ConnectedDomains             : {}
    ConnectionInactivityTimeOut  : 00:10:00
    DNSRoutingEnabled            : True
    DomainSecureEnabled          : True
    Enabled                      : True
    ErrorPolicies                : Default
    ForceHELO                    : False
    Fqdn                         :
    FrontendProxyEnabled         : False
    HomeMTA                      : Microsoft MTA
    HomeMtaServerId              : Edge01
    Identity                     : EdgeSync - MyCity to Internet
    IgnoreSTARTTLS               : False
    IsScopedConnector            : False
    IsSmtpConnector              : True
    MaxMessageSize               : 100 MB (104,857,600 bytes)
    Name                         : EdgeSync - MyCity to Internet
    Port                         : 25
    ProtocolLoggingLevel         : Verbose
    RequireOorg                  : False
    RequireTLS                   : False
    SmartHostAuthMechanism       : None
    SmartHosts                   : {}
    SmartHostsString             :
    SmtpMaxMessagesPerConnection : 20
    SourceIPAddress              : 0.0.0.0
    SourceRoutingGroup           : Exchange Routing Group (DWBGZMFD01QNBJR)
    SourceTransportServers       : {Edge01}
    TlsAuthLevel                 :
    TlsCertificateName           :
    TlsDomain                    :
    UseExternalDNSServersEnabled : False
    AddressSpaces                : {smtp:--;100}
    AuthenticationCredential     :
    CloudServicesMailEnabled     : False
    Comment                      :
    ConnectedDomains             : {}
    ConnectionInactivityTimeOut  : 00:10:00
    DNSRoutingEnabled            : False
    DomainSecureEnabled          : False
    Enabled                      : True
    ErrorPolicies                : Default
    ForceHELO                    : False
    Fqdn                         :
    FrontendProxyEnabled         : False
    HomeMTA                      : Microsoft MTA
    HomeMtaServerId              : Edge01
    Identity                     : EdgeSync - Inbound to MyCity
    IgnoreSTARTTLS               : False
    IsScopedConnector            : False
    IsSmtpConnector              : True
    MaxMessageSize               : Unlimited
    Name                         : EdgeSync - Inbound to MyCity
    Port                         : 25
    ProtocolLoggingLevel         : Verbose
    RequireOorg                  : False
    RequireTLS                   : False
    SmartHostAuthMechanism       : ExchangeServer
    SmartHosts                   : {--}
    SmartHostsString             : --
    SmtpMaxMessagesPerConnection : 20
    SourceIPAddress              : 0.0.0.0
    SourceRoutingGroup           : Exchange Routing Group (DWBGZMFD01QNBJR)
    SourceTransportServers       : {Edge01}
    TlsAuthLevel                 :
    TlsCertificateName           :
    TlsDomain                    :
    UseExternalDNSServersEnabled : False
    I should note that all the Exchange servers are behind the same public IP, I just use NAT in my firewall to seperate the ports (50636 and 25 into the Edge server, 80/443 into the CAS/MBS server).

  • Premiere elements 12, new installation, serial no. accepted, installation completed and new started, but does not run. I get following msg-box: "LoadLibrary failed with error 126: Das angegebene Modul wurde nicht gefunden."

    premiere elements 12, new installation, serial no. accepted, installation completed and new started, but does not run. I get following msg-box: "LoadLibrary failed with error 126: Das angegebene Modul wurde nicht gefunden."   Installation in German Language on WIN7 professional 64bit, Samsung SSD. What can I do to run that program?

    Jurgen Freund
    Premiere Elements 12 on Window 7 64 bit. What video card/graphics card does your computer use - AMD Radeon?
    I have found this YouTube video on the subject of Error 126 with details for resolving the problem.
    How to fix the ERROR 126 when you open OpenGL programs - YouTube
    The link was contributed in an old 2013 thread here by the ID danneomarre (see post 6 of the following thread)
    LoadLibrary failed with error 126: cant find the required
    Please let us know if that worked for you.
    Thank you.
    ATR
    Add On...When all is OK and working, please update 12 to 12.1 Update using an opened project's Help Menu/Update.

  • RFC Lookup's in message mapping fail with RuntimeException for no reason

    Hi guys,
    We have developed interfaces that execute a lot of RFC's from Message Mapping, by making use of RFC Lookup API.
    In ID, in the corresponding RFC Receiver Communication Channel we have set the number of maximum connections to 100.
    However, when a big number of Idocs with lots of items is sent to XI some messages fail in XI because mapping fails with a runtime exception that is not correct, since there is a return value found from the execution of the RFC function. And when I am testing the mapping in Test mode of XI IR, the mapping is executed successfully.
    Do you think that by increasing the maximum number of connections in Communication Channel, it will take effect?
    Evaggelos

    Hi Evaggelos,
    DECREASE, may be til 10.
    Regards,
    Udo

  • RMI tunneling: JNDI lookup fails with : Disconnected: Type code out of range, is -29

    9iAS Release 2
    When trying to tunnel through Apache to the OC4J_home instance using ...
    http:ormi://<host>:<HTTPport>/<application> <admin><password>
    and then looking up a JNDI name ...
    TopicConnectionFactory connectionFactory =
    (TopicConnectionFactory)new InitialContext(p).lookup("jms/myTopicConnectionFactory");
    I get a NamingException thrown, with the message: Disconnected: Type code out of range, is -29.
    The jms.xml file is correct. It works against a standalone OC4J instance (therefore no tunneling) ...
    ormi://<host>:23791/<application> <admin><password>
    I'm connecting from a standalone client and using the RMIInitialContextFactory, the tunneling is working (changing oc4j username/password gets a SecurityException). What's missing? Do you have to change the jndi name when tunneling? What does -29 mean in english?

    Tunneling through the Apache HTTP server to an OC4J instance from remote standalone clients works on Linux installations of 9iAS but not on NT installations, failing with a 'Type Code out of range, is -29' error, JVM versions on client and server are the same. Also works against a standalone version of oc4j on NT, what's happening?

  • Crash when use indexe array with in place element structure

    Hello !
    I have a problem with in place element structure. I want index a waveform array (16 elements) and when i execute or save that labview close....
    I dont have problem with waveform array 15 elements or less, but i need index 16 elements...
    Thanks for your help !!!
    Solved!
    Go to Solution.
    Attachments:
    Test.PNG ‏8 KB

    I give you my code but it work because i used a waveform array with only 15 elements. I can't save or execute with 16 elements...
    So add it (like picture Test.png) and you will see.
    Thank you
    Attachments:
    Test.vi ‏25 KB

  • Failed to load value at index 22 with java object of type java.lang.String

    Hi all,
    As i am trying to open the notifications created from Administartor Workflow ,
    It throws a below error::
    oracle.apps.fnd.framework.OAException: oracle.jbo.AttributeLoadException: JBO-27022: Failed to load value at index 22 with java object of type java.lang.String due to java.sql.SQLException. at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:886) at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:1009) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211) at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:720) at oracle.apps.ap.oie.workflow.apexp.webui.NotifExpLinesCO.processRequest(NotifExpLinesCO.java:116) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.process
    java.sql.SQLException: Invalid column index
    at oracle.jdbc.driver.OracleResultSetImpl.getObject(OracleResultSetImpl.java:1042) at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1198) at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:1633) at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:2221).
    No extensions done in the page
    Please let me know the cause for this error ASAP
    Thanks
    Kash

    Problem solved. set the datatype as timestamp for that attribute in buissiness object.

  • Deleting Indexes Job failing with ORA-01418

    Hi,
    While deleting the indexes to the Infocube the job is failing with an Error: ORA-01418. In SM37 it is throwing the message SQL-Error ORA-01418 specfied Index does not exist.
    Checked in RSRV for the InfoCube it is showing red while we execute for the repair.
    Please advice... right replies will be appreciated.
    Regards,
    DMK

    For BW from 7.0 you can take a look to note 1003360.
    Have you tried the autorepair from rsrv?

  • Xml disassembler failing with reason start element does not match end element

    Hi,
    I'am using a WCF-WSHttp adapter to send a very simple message to a WCF service from BizTalk. The service can return a response or throw a BusinessFault or a SystemFault.
    I get the responses and faults returned and captured most part of the time . But one in a hundred message fails with the below error when a BusinessFault or a SystemFault is thrown . They are SOAP faults
    There was a failure executing the response(receive) pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Source: "XML disassembler"
    Send Port: "xy.Integration.customapplication.CustomService" URI: "https://xyz.xyz.co.xy/CustomService/CustomService.svc" Reason: Start element
    'nz/Faults/201' does not match end element 'Reason'.
    Line 1, position 677.
    I use the below Xpath for the Inbound BizTalk Message Body
    /*[local-name()='Fault']/*[local-name()='Detail' or local-name()='detail']/* | /*[not(local-name()='Fault')]
    My node encoding is Xml.
    I have enabled the Service Trace on the Biztalk server to capture the incoming message and noticed that the messages are not broken .
    Beleive this is one of the item that Microsoft has fixed for BizTalk 2009 in CU 1. But I couldnt notice a similar one for BizTalk 2010
    http://support2.microsoft.com/kb/981422
    Any tips would be very much appreciated.
    Thanks
    Suresh

    Could you post the XML message where this error occurs here please?
    Because that error usually occurs when you receive invalid XML. 
    Glenn Colpaert - MCTS BizTalk Server - Blog : http://blog.codit.eu

Maybe you are looking for

  • Using JSF and tiles

    Hi Friends, I'm trying to combine JSF and tiles as follows: Template file: <f:subview id="content"> <tiles:insert attribute="content" flush="false"/> </f:subview> content file: <tiles:insert definition="userSpecific"> <tiles:put name="content" type="

  • Why am i unable to read my e-mails/. they arrive in the in box but on opening them, the content is missing

    why am i unable to read my e-mails. they arrive ok, i can see them in my in box but when opening them the content is missing. i have been succsesful in opening them on other computers which dont use firefox

  • Making user available in db trigger

    Hi I have a requirement to make the current user available in a database trigger. Is there any way to do this? I am currently using ADF 11.1.1.1.1 deploying to a Weblogic server 10.3.1. There are no users/groups setup on Weblogic. Thanks

  • PARAMETER_CONVERSION_ERROR in case of RFC

    Hi, I am calling rfc function module FM1 with tables parameter where i have two tables, in the interface i have added two tables by referring structures. FM1 interface table1 like struct1 ( structure with enahncement category can be enhanced characte

  • How do I select a burner?

    I keep getting an error message that I need to reinstall iTunes because another burner is installed or something. I've reinstalled iTunes but I still can't burn a CD. How do I select a burner for my computer?