Simple query on xmltype not working

I have a table rad_reports that has an xmltype column, report_txt. This query shows that I have a document in the db:
select r.report_txt.extract('/REPORT/IMPRESSION').getStringVal() from rad_reports r
where accession=12;
and it shows:
<IMPRESSION>
this is a test
</IMPRESSION>
But the following query results in "no rows selected":
select r.report_txt.getclobval()
from rad_reports r
where contains(report_txt, 'test INPATH(/REPORT/IMPRESSION)')>0;
What's going wrong?

Wrong forum.. queries using contains should be posted in the oracle text forum..

Similar Messages

  • Query using xmltype not working

    I have a table rad_reports that has an xmltype column, report_txt. This query shows that I have a document in the db:
    select r.report_txt.extract('/REPORT/IMPRESSION').getStringVal() from rad_reports r
    where accession=12;
    and it shows:
    <IMPRESSION>
    this is a test
    </IMPRESSION>
    But the following query results in "no rows selected":
    select r.report_txt.getclobval()
    from rad_reports r
    where contains(report_txt, 'test INPATH(/REPORT/IMPRESSION)')>0;
    Furthermore, this query also returns no results:
    select count(*) from rad_reports r
    WHERE CONTAINS(report_txt,'HASPATH(/REPORT/IMPRESSION)') > 0;
    What's going wrong?

    Please post the index creation script.

  • Very simple Char* conversion operator not working

    This should be simple, but it's not working.  The code below gives me a compiler error:
    Error 2 error C2440: 'initializing' : cannot convert from 'Foo' to 'char *' 
    class Foo
     char * _data;
    public:
     operator const char * () { return _data; }
     Foo f;
     char * bar = f;
    char*_data;
    public
    operatorconstchar*(){return_data;}
    Eric Jorgensen http://www.ericjorgensen.com

    On 3/5/2015 12:26 AM, "Eric Jorgensen" wrote:
    This should be simple, but it's not working.  The code below gives me a compiler error:
    Error 2 error C2440: 'initializing' : cannot convert from 'Foo' to 'char *'
    Foo can be converted to const char*, but not to char*
    Igor Tandetnik

  • Passing Mutivalue Constant Query Filter is not working

    Hi All,
    I am using Webi4.0.On the Query panel when I try to pass multiple values to a constant filter it does not work.For example if I try to apply State filter in my Query and if I select Constant as its type and type A,B then Webi takes only A in the query and not B.
    I know it a simple task but however it is not working.
    Any help on this will be appreciated.
    Thanks in advance.

    Hi Riddhi,
    Can you pls put scrrenshot how you are passing multiple value to filter.
    ~Anuj

  • SQL Query Single Row not working

    My workflow contain a Query Single row activity. I have added a where clause in Arabic which is not working. If I remove the Arabic condition its working.
    Is there something to do with the server?
    My server is windows 2008 R2 Server.
    The same workflow is running perfectly on another identical environment.
    Thanks for any valuable suggestions,
    Nith

    Hi Sastry,
    Connection to the database is trough Pivotal, I have tried ODBC connection as well but same error
    The instruction at "0x005d53e0" refereced memory at "0x00000014'. The memory could not be "read".
    With ODBC I have always compilation error saying
    Query Engine Error: '42000:[Microsoft][ODBC SQL Server Driver][SQL server] Incorrect syntax near the keyword 'SELECT'. '.
    but even the simple select statment is showing the error.
    Do you think the error is with Drivers???
    Regards
    Stefan

  • Query level filter not working in Webi report

    Hi All,
    I am using BOXI R3.1 (SP3), m facing one problem when refreshing Webi report on daily basis. I am using three query level filter as a prompt, but i checked one filter is not working then i need to reapply this filter and rest 2 filter is working fine.
    Can anyone suggest me why problem is coming?
    Regards,

    Hi,
    Prompts are interactive, and come from the query panel. Filters are not interactive, and are set on the report or block. There are also input controls, which are interactive filters
    1. Select the universe in the list of universes to open the Query Panel.
    2. Drag the Year object to the Result Objects pane.
    3. Drag the Number of Guests object to the Query Filters pane and create a report filter that restricts Number of Guests to greater than n.
    4. Click Combined Query.
    The Combined Query pane appears in the bottom left of the Query panel with the two queries joined by UNION.
    5. Click on the second query and remove the Year and Number of Guests objects.
    6. Drag the Reservation Year object to the Result Objects pane.
    7. Drag the Future Guests object to the Query Filters pane and create a report filter that restricts the future guests to greater than n.
    8. Click Run Query.
    Best Regards
    Naveen

  • Simple copy of reports not working - help please

    Hello
    I have this function that was written to copy a given report object to a given folder. The code is not working - the copyObj = col.Copy(obj,2) appears to be failing.
    Can anyone shed some light on this? Thank you in advance!
    - Russell
    My function:
    function CopyReport (objID, DestFolder, iStore)
    dim col
    dim obj
    dim copyObj
    on error resume next
    'QUERY FOR OBJECT TO COPY
    str = "SELECT * FROM CI_INFOOBJECTS WHERE SI_ID = " + objID
    set col = iStore.Query ( str )
    obj = col.Item(1)
    'COPY THE OBJECT
    copyObj = col.Copy(obj,2)
    'SET THE PARENTID OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENTID").Value = DestFolder
    'SET THE PARENT FOLDER OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENT_FOLDER").Value = DestFolder
    'COMMIT THE COLLECTION
    iStore.Commit(col)
    end function

    Hi All
    I've resolved the problem with the copy and am posting the code below. I'd appreciate it if it could be placed in the appropriate forum so that it may be a resource for other developers in the future. I've left in all of my debugging/error checking code for reference as well.
    - Russell
    The working copy function (with loads of debugging code) is this:
    function CopyReport (objID, DestFolder, iStore)
    'Function CopyReport
    'Parameters:
    '  objID - the ID of the report to copy
    '  DestFolder - the ID of the destination folder for the copy
    '  iStore - the InfoStore to use
    'Returns: A text string that is displayed in a web page via response.write that includes the
    '  name of the report if copied or the error information as appropriate.
    dim col
    dim obj
    dim copyObj
    dim newCol
    on error resume next
    'QUERY FOR OBJECT TO COPY
    str = "SELECT * FROM CI_INFOOBJECTS WHERE SI_ID = " + objID
    set col = iStore.Query ( str )
    If Err.Number <> 0 Then
      CopyReport = "iStore.Query failed<br>"
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      CopyReport = CopyReport & "<br>" & str
      Exit Function
    End If
    set newCol = iStore.NewInfoObjectCollection()
    If Err.Number <> 0 Then
      CopyReport = "newCol creation error"
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      CopyReport = CopyReport & "<br>" & str
      Exit Function
    End If
    set obj = col.Item(1)
    If Err.Number <> 0 Then
      CopyReport = "OBJ = col.item(1) error<br>"
      CopyReport = CopyReport & "<br>" & str
      CopyReport = CopyReport & "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'COPY THE OBJECT
    set copyObj = newCol.Copy(Obj, 2)
    If Err.Number <> 0 Then
      CopyReport = "copyOBJ error"
      CopyReport = CopyReport & "<br>Count: " & col.Count
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
    '  Exit Function
    End If
    'SET THE PARENTID OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENTID").Value = DestFolder
    If Err.Number <> 0 Then
      CopyReport = "Error setting SI_PARENTID to " & DestFolder
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'SET THE PARENT FOLDER OF THE COPIED OBJECT
    copyObj.Properties.Item("SI_PARENT_FOLDER").Value = DestFolder
    If Err.Number <> 0 Then
      CopyReport = "Error setting SI_PARENT_FOLDER to " & DestFolder
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'COMMIT THE COLLECTION
    iStore.Commit(newCol)
    If Err.Number <> 0 Then
      CopyReport = "Commit error"
      CopyReport = CopyReport + "<br>Error: " & Err.Number & " - " & Err.Description
      Exit Function
    End If
    'Return the object info
    CopyReport = copyObj.Title
    end function
    Edited by: Russell L Magidson on Dec 11, 2008 5:12 PM
    Edited by: Russell L Magidson on Dec 11, 2008 10:28 PM
    Edited by: Russell L Magidson on Dec 11, 2008 10:29 PM

  • Query remote table not working in PL/SQL

    I have a problem that is killing me to figure out. Basically we trying to query a remote table through PL/SQL and it comes back with invalid column name for the table. But the table exists in the remote database and has the column. The query works fine from the same database outside of PL/SQL, just not in PL/SQL. I'll setup a test case below.
    We have local database called DB1 and remote database called DB2. The table we are querying is called EMP.
    First we create database link:
    create database link DB2.WORLD connect to...
    Test the link:
    select ENAME from [email protected];
    ENAME
    SHAWN
    Works fine.
    Now we put this query inside a PL/SQL block:
    declare
    l_ename varchar2(20);
    begin
    select ename into l_ename from [email protected];
    end;
    This fails with the following error:
    select ename
    ERROR at line 274:
    ORA-06550: line 274, column 7:
    PL/SQL: ORA-00904: invalid column name
    ORA-06550: line 271, column 3:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 279, column 9:
    PL/SQL: ORA-00904: invalid column name
    ORA-06550: line 277, column 3:
    PL/SQL: SQL Statement ignored
    Now, I've tried changing how we select from the remote table, I've put the select statement in a cursor, tried creating a synonym which points to the remote table and selecting using the synonym in PL/SQL, it always returns the same error. But always works outside of PL/SQL.
    Now the user we are connecting to the remote database as, has select on the EMP table, through a role, along with 30 other tables, all the other tables are able to be selected through the database link, in PL/SQL, it's just this one table.
    Additionally I can go to another database, and create the same database link, and the query in PL/SQL works fine to the remote table. It's just this one table, from this one database, that doesn't work just in PL/SQL. Any ideas would be appreciated, I've exhausted everything.
    Also, creating a copy of the table using "create table as select * from..." we can select from the copy of the table using PL/SQL through the database link. The problem is this is a central warehouse table, and is used my multiple applications and updated constantly, so dropping a recreating this table is a last resort.
    Yes, this process did work, for over a year, then suddenly it stopped. Of course, no one made any changes to either database, that's always the case. I know the code didn't change though, it was still timestamped from a year ago.
    Thanks in advance.

    Could this be a variant on an old favourite, viz privileges being granted through roles. We cannot use objects in PL/SQL if our privileges are assigned through a role.
    Maybe what has changed is that instead of being granted privileges on EMP@DB2 directly the privileges have been re-organised so that your user has them granted through a role.
    Cheers, APC

  • Simple calculations in Universe not working for XI 3.0

    Simple calculations in Universe using key figures are not working in XI 3.0(without any Fix Pack)
    Below is the steps I followed.
    1. Using key figure [Jan] I am trying to round the values by deviding it by 1000.
    <EXPRESSION>@Select([Jan])/1000</EXPRESSION>
    This gives me a null cell value.
    2. I tried addition then
    <EXPRESSION>@Select([Jan])+1000</EXPRESSION> result was all the cell values changed to 1000.
    3. Finally without calculation I tried
    <EXPRESSION>@Select[Jan]</EXPRESSION> this also resulted null value
    But without EXPRESSION tag if I try @Select[Jan] it works fine.
    Am I missing anything in above expressions.
    As of now I am creating variable in report to incorporate the rounding.
    Thanks
    Raghu

    It was my mistake while writing the question. Path I have used is correct one only @Select(Key Figures/.
    If i use the above alone, I am able to se the data. But if I use in betwen <EXPRESSION> then it gives null value.
    Note: Pls dont confuse with flower bracket i used it just to avoid coverting it to a html link and also the backslash it was not showing in preview
    I have followed that pdf and created calculation in universe.
    Edited by: Raghavendra Barekere on Feb 6, 2009 6:42 AM

  • Why this simple IF - ENDIF is NOT working??

    Hi Experts,
    Am wrting a simple  IF condition with WILD CARD value , in the user exit, as below,
    if xlikp-lgbzo = 'AB'. (pls. notice that, there is WILD CARD in the 'AB' value)
    sy-subrc = 0.
    else.
    sy-subrc = 4.
    endif.
    1) Say, the XLIKP-LGBZO value = AB-01-02 (pls. notice that, there  ' - ' in the value of AB-01-02)
    then, sy-subrc is becoming 4 ?????????????
    2 )Say, the XLIKP-LGBZO value = ZB-01-02
    then, sy-subrc is becoming 4
    the 2nd case is OK, but, Why the 1st case is becoming FALSE?? actuallym it shuld b TRUE, right??
    Is it bcoz of hiphans -  " - "?? but, i tried with WITH OUT hiphans , then also NOT working CORRECTLY??
    thanq

    Hi Srini,
    Try the following:
    IF XLIKP-LGBZO  CP 'AB*'.
    sy-subrc = 0.
    ELSE.
    sy-subrc = 4.
    ENDIF.
    CP - Contains Pattern
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • XMII Query Selected tags not working

    I am using a query template for tag list against a UDS PI server and the "Selected Tags" dos not seem to wok. It retuns all tags or masked ones even when the check box "Use Group.Mask .....'  is unchecked.
    The UDS does not have groups since the alias tool  doesn't seem to allow wildcarding accomadating future tags.
    Product Version: 11.5.3 b66
    Thanks, Ed (for Shari)

    Hi,
    As Jeremy said, 'Use Group or Mask for Tag selection' is used for Current, History, HistoryEvent, and Statistics query modes. For namespace query modes such as TagList/GroupList it will not work. Please find the below link for you help:
    http://help.sap.com/saphelp_xmii115/helpdata/en/index.htm
    Hope it helps!
    Best Regards,
    Kedar

  • Simple 960px html does not work???

    I've b een coding pages a while but this has me perplexed.
    I have a page with simple code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #960Wrapper {
    width: 960px;
    background-color: #0F0;
    margin-right: auto;
    margin-left: auto;
    #header {
    background-color: #C9F;
    #footer {
    background-color: #C0F;
    </style>
    </head>
    <body>
    <div id="960Wrapper">Content for  id pageWrapper Goes Here
            <div id="header">This area is reserved for logo</div>
        <div id="contentArea">
       <p>Please click a button:</p>
      </div>
         <div id="footer">This area is reserved for footer</div>
      </div>
    </div>
    </body>
    </html>
    However everything is going to full width and edge of the browser - all of them.
    Maybe my grey cells are tired - or something is corrupt but the machine does not accept it - in or out of dreamweaver.
    I've rebooted - run ccleaner and rebooted again but something is not working for me.
    I'd appreciate if someone could confirm I'm not going mad please.
    Terry

    GROAN!
    Forgot about that one - it's as simple as that???!
    I had a whole page written and then it stopped working - I've even stripped it back to basics and it was as simple as that???
    Thank you very much for pointing this out.
    Terry

  • Simple ws-policy demo not working

    Hi Gurus,
    It's been quite awhile, I could not work it out though. I guess your help would be the last change to stop it from driving me crazy~
    The goal is to implement a simple ws-seurity enabled webservice demo using only username/password token as the policy. username/password in the ones listed in "myrealm" (might have SQL Authentication provider as well),and X509 is not the thing to be considered in this simple test.
    Env:
    WebLogic Server Version: 10.3.0.0
    JVM: Sun one installed with weblogic
    WebLogic Eclipse plugin: 1.0.0.2008.0808135653
    Windows XP sp3
    After reading that much docs, it came to below procedure and code:
    1. Eclipse -> new Dynamic web project "WSTest3"
    2. create file: example.ws.HelloW1.java
    package example.ws;
    import javax.jws.WebService;
    import weblogic.jws.Policy;
    import weblogic.jws.Policies;
    @WebService(serviceName="HelloW1")
    @Policies( { @Policy(uri = "policy:usernametoken.xml") } )
    public class HelloW1 {
         public String sayHi(String hi){
              System.out.println("Already here: " + hi);
              return "Welcome, you said: " + hi;
    3. add "weblogic.jar" to build path
    4. create WEB-INF/policies/usernametoken.xml
    <?xml version="1.0"?>
    <wsp:Policy
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200512"
    >
    <sp:SupportingTokens>
    <wsp:Policy>
    <sp:UsernameToken
    sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200512/IncludeToken/AlwaysToRecipient">
    <wsp:Policy>
    <sp:WssUsernameToken10/>
    </wsp:Policy>
    </sp:UsernameToken>
    </wsp:Policy>
    </sp:SupportingTokens>
    </wsp:Policy>
    5. Publish the project WSTest3 to weblogic server
    6. Test the webservice within weblobic admin console, get below response which is expected since there is no input for user/pass in the simple test web page:
    ~~~~~~~~~~~~~~~~~~~
    <faultcode>wsse:InvalidSecurity</faultcode>
    <faultstring>Error on verifying message against security policy Error code:1000</faultstring>
    ~~~~~~~~~~~~~~~~~~~
    7. create the WSTest3Client project
    8. new "web service client"
    9. input the WSDL "http://127.0.0.1:7001/WSTest3/HelloW1?WSDL" and have the webservice related stub files created.
    10. create java file: example.ws.client.Main.java
    package example.ws.client;
    import java.rmi.RemoteException;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.security.cert.X509Certificate;
    import javax.xml.rpc.ServiceException;
    import org.apache.axis.client.Stub;
    import example.ws.HelloW1_PortType;
    import example.ws.HelloW1_Service;
    import example.ws.HelloW1_ServiceLocator;
    import weblogic.jws.jaxws.ClientPolicyFeature;
    import weblogic.jws.jaxws.policy.InputStreamPolicySource;
    import weblogic.security.SSL.TrustManager;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import weblogic.xml.crypto.wss.WSSecurityContext;
    import weblogic.xml.crypto.wss.provider.CredentialProvider;
    public class Main {
         public static void main(String[] args)
         throws ServiceException, RemoteException{
              String username = "weblogic";
              String password = "weblogic";
              CredentialProvider cp = new ClientUNTCredentialProvider(username.getBytes(), password.getBytes());
              List credProviders = new ArrayList();
              credProviders.add(cp);
              HelloW1_Service service = new HelloW1_ServiceLocator();
              HelloW1_PortType port = service.getHelloW1Port();
         Stub stub = (Stub)port;
         stub._setProperty(WSSecurityContext.CREDENTIAL_PROVIDER_LIST, credProviders);
    //Map rc = ((BindingProvider)port).getRequestContext();
    //rc.put(WSSecurityContext.CREDENTIAL_PROVIDER_LIST, credProviders);
         System.out.println(port.sayHi("nihao"));
    11. add weblogic.jar to build path and let it go.
    The expected output string was not coming, but still the exception there:
    ~~~~~~~~~~~~~~~
    Exception in thread "main" AxisFault
    faultCode: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}InvalidSecurity
    faultSubcode:
    faultString: Error on verifying message against security policy Error code:1000
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}stackTrace:Error on verifying message against security policy Error code:1000
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
    {WITH MANY OTHER LINES BELOW}
    ~~~~~~~~~~~~~~~~~~
    use below code suggested from reference link (2)
    Map rc = ((BindingProvider)port).getRequestContext();
    rc.put(WSSecurityContext.CREDENTIAL_PROVIDER_LIST, credProviders);
    to replace stub._setProperty, but I was told can not make the CAST from stub to BindingProvide, seems it's something in Jdeveloper11, not for my env.
    if I comment "@Policies( { @Policy(uri = "policy:usernametoken.xml") } ) " off and republish the webservcie, the test would be running good, but defniately there is no anthentication, which is not what I want.
    reference link (1): http://e-docs.bea.com/wls/docs103/webserv_sec/message.html
    reference link (2): http://kingsfleet.blogspot.com/2008/12/simple-custom-policy-example-using-jax.html
    I am grateful to have your input, thanks in advance and wish you a good day!
    Regards,

    Hi, it comes to episode2.
    Now the WS client's very smoothly working in my Jdev10.1.3, the code is very alike, but it uses
    stub._setProperty(Stub.USERNAME_PROPERTY, "weblogic");
    stub._setProperty(Stub.PASSWORD_PROPERTY, "weblogic");
    // This source file is generated by Oracle tools and is subject to change
    // It is a utility client for invoking the operations of the Web service port.
    // For reporting problems, use the following
    // Version = Oracle WebServices (10.1.3.1.1, build 070111.22769)
    package proj2.proxy;
    import oracle.webservices.transport.ClientTransport;
    import oracle.webservices.OracleStub;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.Stub;
    public class HelloW1PortClient {
    private proj2.proxy.HelloW1_PortType _port;
    public HelloW1PortClient() throws Exception {
    ServiceFactory factory = ServiceFactory.newInstance();
    port = ((proj2.proxy.HelloW1Service)factory.loadService(proj2.proxy.HelloW1_Service.class)).getHelloW1Port();
    * @param args
    public static void main(String[] args) {
    try {
    proj2.proxy.HelloW1PortClient myPort = new proj2.proxy.HelloW1PortClient();
    System.out.println("calling " + myPort.getEndpoint());
    // Add your own code here
    myPort.setUsername("weblogic");
    myPort.setPassword("weblogic");
    System.out.println( myPort.sayHi("Hello") );
    } catch (Exception ex) {
    ex.printStackTrace();
    * delegate all operations to the underlying implementation class.
    public String sayHi(String arg0) throws java.rmi.RemoteException {
    return _port.sayHi(arg0);
    * used to access the JAX-RPC level APIs
    * returns the interface of the port instance
    public proj2.proxy.HelloW1_PortType getPort() {
    return _port;
    public String getEndpoint() {
    return (String) ((Stub) port).getProperty(Stub.ENDPOINT_ADDRESS_PROPERTY);
    public void setEndpoint(String endpoint) {
    ((Stub) port).setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, endpoint);
    public String getPassword() {
    return (String) ((Stub) port).getProperty(Stub.PASSWORD_PROPERTY);
    public void setPassword(String password) {
    ((Stub) port).setProperty(Stub.PASSWORD_PROPERTY, password);
    public String getUsername() {
    return (String) ((Stub) port).getProperty(Stub.USERNAME_PROPERTY);
    public void setUsername(String username) {
    ((Stub) port).setProperty(Stub.USERNAME_PROPERTY, username);
    public void setMaintainSession(boolean maintainSession) {
    ((Stub) port).setProperty(Stub.SESSION_MAINTAIN_PROPERTY, Boolean.valueOf(maintainSession));
    public boolean getMaintainSession() {
    return ((Boolean) ((Stub) port).getProperty(Stub.SESSION_MAINTAIN_PROPERTY)).booleanValue();
    * returns the transport context
    public ClientTransport getClientTransport() {
    return ((OracleStub) _port).getClientTransport();
    the weird thing is when I moved "
    stub._setProperty(Stub.USERNAME_PROPERTY, "weblogic");
    stub._setProperty(Stub.PASSWORD_PROPERTY, "weblogic");
    into Eclipse, it still complains the same error: "Error on verifying message against security policy Error code:1000", meanwhile the server outputs:
    <WSEE:18>Trying to validate identity assertion token http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken<SecurityMessageInspector.inspectIdentity:629>
    Thanks,

  • XMLTYPE not working on SQL Dev 4 EA3

    Hi,
    It appears that XMLTYPE is still not working correctly in SQL Developer EA4 Version 4.0.0.13 Build MAIN-13.30.
    The following produces an XMLTYPE result, but it is not viewable:
    SELECT
      XMLELEMENT("root",
        XMLAGG(
          XMLELEMENT("elem", 123)
    ) "XML"
    FROM dual;
    This works correctly in SQL Developer 3.
    Note that doing a .getClobVal() on that result does give the text string of the XML, so it is a view problem in EA3 that doesnt show the raw  XMLTYPE.
    Thanks,
    Steve

    yeah, it's a DB bug (16881111), which is addressed in 11.2.0.4
    As a workaround you can execute this as as script (F5), or use getclobval() in your statement

  • Why this simple 'IF' syntax is not working?

    Hello
    Pls. help me that,
    var myObject = /TextField11/
    var greyFieldsList = "TextFieldAA TextFieldBB TextFieldCC "
    var ReqFieldsList = "TextField11 TextField22 TextField33 "
    var returnValue = greyFieldsList.search(myObject);
    var returnValueReq = ReqFieldsList.search(myObject);
    if (returnValue != -1) {
    this.fillColor = "192,192,192"; //GREY
    this.access    = "readOnly";
    else if (returnValueReq != -1)
    this.fillColor = "255,255,191";  //YELLOW
    else
    // do nothing
    Yellow is not working at all!!
    Grey is working some times, some times not!
    Pls. correct my IF condition in such a way it shoud work.
    At given point of time, any field possess only one color
    Thank you

    Hi Srini,
    Try the following:
    IF XLIKP-LGBZO  CP 'AB*'.
    sy-subrc = 0.
    ELSE.
    sy-subrc = 4.
    ENDIF.
    CP - Contains Pattern
    Hope this helps you.
    Regards,
    Chandra Sekhar

Maybe you are looking for

  • Installing Windows 7 or 8.1 on Mac

    Hello Everyone, I know some of you are trying to install Windows 8.1 on your Mac PCs or Laptops. I am going to give you some basic advise below things you need to install Windows 7 or 8.1 on your Mac PCs or Laptops. Things Required for installation.

  • Windows 8.1 cannot connect to group policy client service

    Windows 8.1 laptop under administrator account has this "cannot connect to group policy client service" error.Found the following instructions on internet but I don't see this "Replace owner on subcontainers and objects" box on Permissions/Advanced p

  • How could I select more than one file in a dialog?

    Hello NG, is it possible by using a "file path - frontpanel element" to configure the dialog for the possibility of selecting more then one file? The return should be an array. At the moment, I am only able to choose one file or a whole directory. Bu

  • My emails are not coming through to my blackberry phone....

    My emails are not coming through to my blackberry phone. I think it is because I changed my password to my email?

  • OCA 1Z0-051 self-study material guidance

    Hi! I'm preparing for OCA 1Z0-051 exam and have been reading the book "OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Osborne ORACLE Press Series)". I have few questions: - Is the book enough for preparing and passing the exam?