creating xmltype excluding child elements view

stuck with:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi   
I'm writing an xmltype view that shows only the project, review (latest version) and item elements and their attributes. but exclude something more. Purpose: quick / high level search/filter on the demand side.
<project name="test">
   <revision version="1">
      <item id="some:id:100">
         <excludeme />
      </item>
      <item id="some:id:101">
         <excludeme />
      </item>
      <item id="some:id:102">
         <excludeme />
      </item>
   </revision>
   <revision version="2">
      <item id="some:id:100">
         <excludeme />
      </item>
      <item id="some:id:101">
         <excludeme />
      </item>
      <item id="some:id:102">
         <excludeme />
      </item>
   </revision>
</project>
I can't figure out how all the items in the list and also to exclude all child elements:
create or replace view "v_filter" of xmltype as
select 
  XMLELement("project",
    XMLAttributes(extractValue(object_value,'/project/@name') AS "name"),
    XMLElement("revision",
      XMLAttributes(extractValue(object_value,'/project/revision[not(@version <= preceding-sibling::revision/@version) and not(@version <= following-sibling::revision/@version)]/@version') AS "version"),
      -- unsure as to what to do here, usually I end up with an ORA-00937: not a single-group group function
      --XMLAgg(
      --  ..............
      --  )
      )
    )
  )
from ftdb_projects;
Hoping for:
<project name="test">
   <revision version="2">
      <item id="some:id:100"/>
      <item id="some:id:101"/>
      <item id="some:id:102"/>
   </revision>
</project>

Guess the XMLAGG order by clause not usable...?

Where do you want to see it used?

You might try to avoid the conversion of type of data may simply by setting VERSION such as VARCHAR2 or better probably referring via xdb annotations in the schema XML for the version xdb:SQLType = varchar2

Well, I would say that something is missing as XMLCast function to correctly get the version of a numeric data type, so that it is consistent with the schema when injected in the XQuery.

Out of curiosity, I was testing on 11.2 too with more or less the same parameters (storage of GOLD, REGISTER_NT_AS_IOT option) and well... Let's say it's day and night.
Applications shown above fully rewritten, even one with the XMLQuery call :)

Tags: Database

Similar Questions

  • org.xml.sax.SAXException:SimpleDeserializer met a child element...

    Hi all

    I created a following program using the 'GetReportDefintion' method provided by BI Publisher Web Services
    package bip_webservices;
    import com.oracle.xmlns.oxp.service.PublicReportService.ItemData;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportResponse;
    import com.oracle.xmlns.oxp.service.PublicReportService.ParamNameValue;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportDefinition;
    import com.oracle.xmlns.oxp.service.PublicReportService.ScheduleRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.DeliveryRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.EMailDeliveryOption;
    
    import  java.io.FileOutputStream;
    import  java.io.OutputStream;
    import java.net.MalformedURLException;
    import java.rmi.RemoteException;
    import  java.util.Calendar;
    import javax.xml.rpc.ServiceException;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import org.apache.axis.encoding.XMLType;
    import org.apache.axis.encoding.ser.BeanDeserializerFactory;
    import org.apache.axis.encoding.ser.BeanSerializerFactory;
    import  javax.xml.namespace.QName;
    import  javax.xml.rpc.ParameterMode;
    import  java.net.URL;
    
    
    public class BIP_GetReportDefinition {
        
        public static void main(String[] args) throws ServiceException, MalformedURLException, RemoteException{
         try{
            final String bipEndpoint = "http://localhost:9704/xmlpserver/services/PublicReportService?wsdl";
            final String bipNamespace = "http://xmlns.oracle.com/oxp/service/PublicReportService";
            final String xdofile = "/MyReports/SummaryCustomerReport/SummaryCustomerReport.xdo";
          
            Service service = new Service();
            Call call = (Call) service.createCall();
            call.setTargetEndpointAddress(new URL(bipEndpoint));
     
           System.out.println("BEGIN TESTING getReportDefinition");
     
            // register the ReportDefinition class
            QName reportDef = new QName(bipNamespace, "ReportDefinition");
            call.registerTypeMapping(ReportDefinition.class, reportDef,
                            BeanSerializerFactory.class, BeanDeserializerFactory.class);
          
     
            // register the ParamNameValue class
            QName nmvals = new QName(bipNamespace, "ParamNameValue");
            call.registerTypeMapping(ParamNameValue.class, nmvals, BeanSerializerFactory.class, BeanDeserializerFactory.class);
     
            call.setOperationName(new QName(bipNamespace, "getReportDefinition"));
            call.addParameter("reportAbsolutePath", XMLType.XSD_STRING, ParameterMode.IN);
            call.addParameter("userID", XMLType.XSD_STRING, ParameterMode.IN);
            call.addParameter("password", XMLType.XSD_STRING, ParameterMode.IN);
            call.setReturnClass(ReportDefinition.class);
     
            // issue the request
            ReportDefinition reportDefn = (ReportDefinition) call.invoke(
                new Object[] { xdofile, "Administrator", "Administrator"});
     
            System.out.println("Report Definition Returns with \n Default Output Format = " + reportDefn.getDefaultOutputFormat());
            ParamNameValue params [] = reportDefn.getReportParameterNameValues();
     
            if (params != null) {
                for (int i = 0; i < params.length; i++) {
                    System.out.print("Parameter " + params.getName() + ":");
    if (params[i].getValues() != null) {
    for (int j = 0; j < params[i].getValues().length; j++)
    System.out.print(" " + params[i].getValues()[j]);
    } else
    System.out.print(" null");
    System.out.println(" - multiple values? " + params[i].isMultiValuesAllowed());
    }
    }
    System.out.println("END TESTING getReportDefinition");
    }catch(Exception e){
    e.printStackTrace();
    }
    }
    }


    I am getting following exception message. Anyone has any ideas what could be the mistake ?
    SEVERE: Exception:
    org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
            at org.apache.axis.encoding.ser.SimpleDeserializer.onStartChild(SimpleDeserializer.java:145)
            at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
            at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)
            at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
            at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
            at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
            at org.apache.axis.client.Call.invoke(Call.java:2467)
            at org.apache.axis.client.Call.invoke(Call.java:2366)
            at org.apache.axis.client.Call.invoke(Call.java:1812)
            at bip_webservices.BIP_GetReportDefinition.main(BIP_GetReportDefinition.java:67)
    AxisFault
     faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
     faultSubcode: 
     faultString: org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
     faultActor: 
     faultNode: 
     faultDetail: 
            {http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
            at org.apache.axis.encoding.ser.SimpleDeserializer.onStartChild(SimpleDeserializer.java:145)
            at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
            at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)
            at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
            at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
            at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
            at org.apache.axis.client.Call.invoke(Call.java:2467)
            at org.apache.axis.client.Call.invoke(Call.java:2366)
            at org.apache.axis.client.Call.invoke(Call.java:1812)
            at bip_webservices.BIP_GetReportDefinition.main(BIP_GetReportDefinition.java:67)
    
            {http://xml.apache.org/axis/}hostname:mildh0228
    
    org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
            at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
            at org.apache.axis.client.Call.invoke(Call.java:2470)
            at org.apache.axis.client.Call.invoke(Call.java:2366)
            at org.apache.axis.client.Call.invoke(Call.java:1812)
            at bip_webservices.BIP_GetReportDefinition.main(BIP_GetReportDefinition.java:67)
    Caused by: org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
            at org.apache.axis.encoding.ser.SimpleDeserializer.onStartChild(SimpleDeserializer.java:145)
            at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
            at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)
            at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
            at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
            at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
            at org.apache.axis.client.Call.invoke(Call.java:2467)
            ... 3 more
    Thank you for giving this problem at a glance.
    -Sookie

    Hello Sookie,

    I found the problem, it is with two or three child settings are not saved the deserializer. There are two or three extra classes must be registerd.

    Register the TemplateLabelValue class
    QName templateval = new QName (bipNamespace, "TemplateFormatLabelValue");
    Class cls = TemplateFormatLabelValue.class;
    call.registerTypeMapping (cls, templateval, BeanSerializerFactory.class, BeanDeserializerFactory.class);

    Register the TemplateLabelValues class
    QName templatevals = new QName (bipNamespace, "TemplateFormatsLabelValues");
    CLS = TemplateFormatsLabelValues.class;
    call.registerTypeMapping (cls, templatevals, BeanSerializerFactory.class, BeanDeserializerFactory.class);

    Could you please give it a try?

    Thank you.
    Yang

  • In good company the child elements of the element without terminals are not visible.

    Hi all

    Jdev version 11.1.1.7.0

    I am facing a company in good standing question...

    Scenario: I create approval Service (BPEL) with flow of human labor and the Bunises rule.

    I'm assingning HW participating using the rule based (HW and BR connection).

    Problem is:

    Shema has element 'unbounded '.

    < name of item = "ExpenseItem" maxOccurs = "unbounded" >

    < complexType >

    <>sequence

    < element name = "ItemID" type = "string" / >

    < element name = "ItemName" type = "string" / >

    < element name = "ItemPrpjectID" type = "string" / >

    < element name = "ItemStatus" type = "string" / >

    < / sequence >

    < / complexType >

    < / item >

    Whenever I have create a Busines to configure rules.

    ExpenseItem rules setting up the child elements are not visible. But those who are required to configure rules.

    If you can help solve me would be useful.

    What is a behavior bedault of the BR? If yes how can I do this?

    Thank you

    David

    Solution found:

    Click on set of rules that you have created.

    Expand rule in there.

    Select the Advanced mode and mode tree, and then click OK.

    Select the root task, click insert pattren and create pattren based on unrelated element (here actually destiny)
    Once you create pattren, will be elements of access under item boundless for the configuration of business rules.

  • Get XML child elements

    Dear Indesign scripting,

    This script is made of all the tags XML ParagraphStyles.

    But he refuses to take the child to the elements. What do I have to use the XPath expression? And how?

    function main() {  
      var xes, n, doc, ps, xe;  
      if ( !app.documents.length ) return;  
      doc = app.activeDocument;
      xes = doc.xmlElements[0].xmlElements;  
      n = xes.length;  
      while ( n-- ) {  
      xe = xes[n]; 
      st = doc.paragraphStyles.itemByName (xe.markupTag.name );  
      !st.isValid && doc.paragraphStyles.add({name:xe.markupTag.name});  
      }  
    }  
      
      
    main(); 
    

    The XML code

    <Workbook>  
         <Element_A_01>  
              <Element_A_01></Element_A_01>  
         </Element_A_01>  
         <Element_B_02>  
              <Element_B_02></Element_B_02>  
         </Element_B_02>  
    </Workbook> 
    

    Greetings from Holland

    The code creates two paragraph styles namely Element_A_01 and Element_B_02. These two are created for the immediate child nodes of the workbook node. Now, it seems you are trying to create pstyles for all nodes in the XML document, which in your case would be even these two as Element_A_01 has a child node that is also named Element_A_01 and what is the case for Element_B_02.

    If I get your straight stitch then you need to create 4 pstyles if all nodes have different names, but who doesn't. For that you recursively through each node that you receive from the fixed code [n].

    The code to be something like this

    1. main() {} function
    2. fixed var n, doc, ps, xe;
    3. If (! app.documents.length) return;
    4. doc = app.activeDocument;
    5. fixed = doc.xmlElements [0] .xmlElements; This gives the immediate children nodes of the workbook node, where the length in the next statement 2
    6. n = xes.length;
    7. While (n)-{}
    8. XE = set [n];   Here you need to recursively through the xe node
    9. The number of child elements of the xe can be obtained as xe.xmlElements.length
    10. First element can be obtained by xe.xmlElements [0]
    11. }
    12. }
    13. main();

    Hope this fixes the problem

  • My Apple ID has been locked for security reasons. I have all the details to recover my account that the account was created by a child of 6 years. How to unlock my account to use the same?

    My Apple ID has been locked for security reasons. I have all the details to recover my account that the account was created by a child of 6 years. How to unlock my account to use the same?

    < email published by host >

    It is illegal for a child from 6 years to create an Apple ID.

    You can take a date-genius bar with Apple and bring the original receipt Apple.

  • HTML Parsing error: Cannot edit the item container parent before the child element is closed (KB927917).

    Original title: HTML Parsing Error:

    When I go on this particular Web page, I can open the page, but with errors.  The error I get is: HTML Parsing Error: impossible to edit the item container parent before the child element is closed (KB927917).  Can someone out there help me solve this problem.  Also, it is the only Web page devoted to this particular site that does this.

    Hi Debbie9089,

    ·         What browser do you use?

    ·         Have you been able to access this site much earlier?

    If you use Internet Explorer, you can follow this link and check if the problem persists.

    Why do I get an "Operation aborted" error message when I visit a Web page in Internet Explorer?

    Hope the helps of information.

    Please post back and we do know.

  • Cannot access a Web site, HTMLParsingError unable to change the container element parent before the child element closed

    When I go to Geaowarehouse a site to check the properties and assessments

    I can't get the information

    This message appears when I click on the yellow triangle at the bottom LHS

    HTMLParsingError unable to edit the item container parent before the child element is closed

    http://answers.Microsoft.com/en-us/IE/Forum/IE8-windows_other/HTML-parsing-error-unable-to-modify-the-parent/e64759e0-D344-42d6-b1d8-0ce27504dd71

  • Union - generator of grid view layout query error could not create the checkerboard to correct view

    I get the error while I'm trying to run a simple union query below. The query uses simple areas. I use columns the same type of data in the same order in each of the areas and when I run the sql generated backend query, it returns the correct result. Only in obiee front end, it is not showing any result but giving the below error instead. I use version 11.1.1.6.8 Please help!

    The presentation view grid generator could not create the checkerboard to correct view. It lacked the logical column with the following ID: c6d9af7a1de3ca97a.

    Error details

    Error codes: WUSYDB5K

    Geographical area: saw.views.evc.activate, saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.

    handleConnection, saw.rpc.server.dispatch, saw.threadpool.socketrpcserver, saw.threads

    This is a bug, you must connect your environment to min 11.1.1.6.10 max 11.1.1.6.12/11.1.1.7.x

  • A video created with Adobe Premiere elements 13 can be converted to run on Adobe Premiere elements 11?

    A video created with Adobe Premiere elements 13 can be converted to work (and edited, etc.) on Adobe Premiere elements 11?

    I invested in a video creation I made with 13 items first, but now 13 refuses to work properly for several hours (space bar and game button won't do not time line indicator).  I hope that I will get the problem solved, but in the meantime I must get this complete project and don't have the time to do it again.  So, I need to convert the work so that it can be completed with 11 first which seems to work fine.

    Thanks, Dave

    A standard THAT VIDEO should work on both versions... a PROJECT file is generally not backward compatible

  • Header child element 'WSCorIDSOAPHeader' must be namespace qualified.

    I have two machines. The first machine have a managed server and server administrator OSB. The second device with a SOA managed server, the server administrator and the enterprise manager.
    Call for service in OSB is redirect do SOA Server (BPEL process).
    After the drive, the following error message show in SOA server log.

    INFO: Platform SOA FabricProviderServlet.stateChanged is running and is accepting applications
    javax.xml.soap.SOAPException: parse envelope error: probably because of an invalid SOAP message. : header child element 'WSCorIDSOAPHeader' must be the namespace qualified!
    at oracle.j2ee.ws.saaj.soap.AbstractSOAPImplementation.createEnvelope(AbstractSOAPImplementation.java:137)
    at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:95)
    at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:64)
    at oracle.j2ee.ws.saaj.soap.MessageImpl.getSOAPBody (MessageImpl.java:1572)
    at oracle.j2ee.ws.common.soap.SoapUtils.getSOAPBodyFirstChildQName(SoapUtils.java:249)
    at oracle.j2ee.ws.server.mgmt.runtime.model.WebServiceOperationModelHelper.getOperationModelFromInputMessage(WebServiceOperationModelHelper.java:139)
    at oracle.j2ee.ws.server.provider.ProviderPort.getOperationModelFromInputMessage(ProviderPort.java:986)
    at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.handleRequest(SuperServerInterceptorPipeline.java:132)
    at oracle.j2ee.ws.server.provider.management.AbstractProviderInterceptorPipeline.executeRequestInterceptorChain(AbstractProviderInterceptorPipeline.java:563)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.executeInterceptorRequestChain(ProviderProcessor.java:921)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:231)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:193)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:459)
    at oracle.integration.platform.blocks.soap.FabricProviderServlet.doPost(FabricProviderServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3715)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: javax.xml.soap.SOAPException: header child element 'WSCorIDSOAPHeader' must be the namespace qualified!
    at oracle.j2ee.ws.saaj.soap.HeaderImpl.createChildElement(HeaderImpl.java:213)
    at oracle.j2ee.ws.saaj.soap.ElementImpl.createAndAppendChildElement(ElementImpl.java:827)
    at oracle.j2ee.ws.saaj.soap.StaxHandler.startElement(StaxHandler.java:222)
    at oracle.j2ee.ws.saaj.soap.StaxHandler.staxParse(StaxHandler.java:82)
    at oracle.j2ee.ws.saaj.soap.StaxHandler.staxParse(StaxHandler.java:70)
    at oracle.j2ee.ws.saaj.soap.AbstractSOAPImplementation.getStaXParsedEnvelope(AbstractSOAPImplementation.java:204)
    at oracle.j2ee.ws.saaj.soap.AbstractSOAPImplementation.createEnvelope(AbstractSOAPImplementation.java:58)
    at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:95)
    at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:64)
    at oracle.j2ee.ws.saaj.soap.MessageImpl.getSOAPBody (MessageImpl.java:1572)
    at oracle.j2ee.ws.common.soap.SoapUtils.getSOAPBodyFirstChildQName(SoapUtils.java:249)
    at oracle.j2ee.ws.server.mgmt.runtime.model.WebServiceOperationModelHelper.getOperationModelFromInputMessage(WebServiceOperationModelHelper.java:139)
    at oracle.j2ee.ws.server.provider.ProviderPort.getOperationModelFromInputMessage(ProviderPort.java:986)
    at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.handleRequest(SuperServerInterceptorPipeline.java:132)
    at oracle.j2ee.ws.server.provider.management.AbstractProviderInterceptorPipeline.executeRequestInterceptorChain(AbstractProviderInterceptorPipeline.java:563)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.executeInterceptorRequestChain(ProviderProcessor.java:921)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:231)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:193)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:459)
    at oracle.integration.platform.blocks.soap.FabricProviderServlet.doPost(FabricProviderServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3715)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >

    What is WSCorIDSOAPHeader?

    Temporarily Introscope agent configuration of your managed servers and call to try the service.
    It is the cause of your problem.
    Contact your Administration Introscope and task on the problem of Introscope + OSB + BPEL (SOA server).

    Workaround solution:
    Temporarily Introscope agent configuration of your managed servers and call to try the service.

  • How to create a trigger on a view

    Hi all

    I am trying to create a trigger on a view that is used to update a few columns in the base table. As I am new to the trigger, an example will be appreciated.

    Thanks in advance.

    You would probably be, test the trigger by performing an insert or an update on the view in question and checking that the trigger did what you expected for the base tables.

    Justin

  • How to change the Id of a child element that is created dynamically?

    Hello

    I would like to change the id to the dynamically created elements to work easily with their more later. Currently, edge automatically generate a random id as "eid_1376057792551" for each item.

    There's my code:

    sym.setVariable ("labels", {}

    Content2: "visitor."

    Content3: "exposing."

    content4: "Organizer."

    content5: "Contact."

    content6: 'connection '.

    });

    Clear initial state

    sym.getSymbol("tab").deleteSymbol ();

    Find all the great symbols library

    var prefix = "content"; Content1 content2... content99

    allTabs var = [];

    var symbolDefns = sym.getComposition () .symbolDefns;

    for {(var in symbolDefns key)

    If (symbolDefns.hasOwnProperty (key) & & key.search (new RegExp(prefix+"[0-9]{1,2}"))! =-1) {}

    tab var = sym.createChildSymbol ('tab', 'navigation');

    tab.setVariable ("contentId", key);

    allTabs.push (tab);

    tab$ ("btnLabel") .html (sym.getVariable ("labels") [key] |) "" );

    $tabEl = tab.getSymbolElement ();

    $tabEl.data ("sym", tab).

    $tabEl.css ({float: 'left' in the margin: "0 - 1px 15px 0"});

    {$tabEl.click (function (evt)}

    var tabSym = $(evt.currentTarget) .data ("sym");

    .each $(allTabs, {function(index,item)}

    If (item! = tabSym) {item.stop ("normal"); item.setVariable ("active", false) ;}}

    });

    var $content = sym.$("content").empty ();

    sym.createChildSymbol (tabSym.getVariable ("contentId"), "content");

    });

    }

    }

    });

    Thank you .

    Try this:

    Tab.Attr ("ID", "NEWID");

    Zaxist

  • Create a parent child

    in collaboration with JDev12.1.2.

    I have a view object that is based on a query. I then another editable view object from an entity. 2 then have a link with a field view id. The VO being the parent and the VO entity based application shall name a child and having a 0.1 - 1 ratio. How can I display a table with each row in the table parent with a child, even if the child does not yet exist. I don't want to have to go and click a button create/insert for each record in the table.

    I was finally able to get it figured out. I had to get rid of my request based on VO and create 2 entity with an association to the entity objects. I then created a VO using the 2 entities and the Association. Then when I created a table of the VO it displays blank fields for the (child table) that you could call it. Then to commit it inserted records children if I entered what anyone in the fields. I had a problem with them not fixing is not the ID that connected the 2 entities, but I managed to fix that in the file VORowImpl of java.

  • Hide child element LOV cascading


    Hi all

    I have two selection lists set up in cascade LOV s, using the point of LOV cascading parameters.  Selects a Select1 element updates Select2 with child options available.  It works very well.

    What I also want to do, is to hide the Select2 element when no options are available. I guess I can use a dynamic action to hide/show the item, but I can't work on how to get a number of available options and hide/show when it is required. Should be simple but good?

    The apex is 4.2.5.00.08

    Thank you!

    ~ L

    OK think I worked this one, if will post it here for other peoples reference.

    Create a single dynamic action:

    Event: change

    Type: element

    Articles: List of child selection

    Condition: Expression of Javascript

    Value: this.triggeringElement.length - 1 > 0 (counting of list entries,-1 for a display null value)

    Real Action: The child show selection list

    False Action: Hide the child selection list

  • Cannot create folders or other elements in the same drop-down menu in "organize bookmarks".

    Cannot create new bookmark files. 'Create a new folder' and all the other relevant elements that scrolls to organize the bookmarks are grayed out.

    I have exactly the same problem. Have not found the solution.
    21/07/10

Maybe you are looking for

  • Configuration of the inputs/outputs of NI9401 in labview FPGA

    Hello I am very new to Labview FPGA. In fact, I'm implementing the very first example introduced by OR for learning Labview FPGA. I need to connect an entry of a NI9401 on one exit from the other. However, when I drag and drop the input/output units,

  • Windows hangs on every game is loading 2.

    It is a very strange question that's happened since I reinstalled Windows 7 x 64 Home Premium (after buying a new hard drive). The first game that I play in Windows is fine, regardless of what kind of game it is. However, after the release of the fir

  • Z3c and headphones Bose QC20

    Hello I bought the Bose In - Ear noice cancelling Headphones QC20. They are compatible with android, but it seems sony have changed something, because the buttons on the remote did not work properly. + increase volume--> it's OK -the volume reduction

  • Corrupted profile. Help solve does not.

    I had an administrator, set up account. It was worked well for almost 3 years. The other day I got a "there is a problem with your profile. You have been logged on with a temporary profile. "Following the directions of assistance &, set up another pr

  • How to arrange the result of the query and adding column outomatic translate

    Hellomy need to find number of devices activated per day in the city, my data as below1City_2Samsung5City_2IPhone4City_2IPhone2City_2IPhone1City_2IPhone1Ville1Samsung3Ville1Samsung17Ville1IPhone12Ville1IPhone5Ville1IPhone3Ville1IPhone3Ville1IPhone6Vi