Validate SOAPMessage againts WSDL

Hi All,
Within a servlet I received a SOAPMessage object. I also have a WSDL for this webservice. What is the best way to validate the soap message with the WSDL of this webservice ?
Kind regards,
Marco Laponder

Hi Marco,
I don't know if my solution is going to fit your needs, but to make a full validation of XML against WSDL or XSD, I use XMLBeans (originally from BEA and now from Apache).
Indeed, to sum up the concept, you generate some Java objects from a XSD or WSDL thanks to the compilator from the XMLBeans toolkit (scomp). Then you put the jar in your classpath and you have all the Java objects mapping your XML Definition.
From that, if you try to convert the XML you're receiving in the Servlet to a XMLBean Root Node, it will either pass if your message is correctly formatted or crash if not. Just handle the exception and inform your user if the parsing failed, and you're done !
Hope I gave you a track to investigate.
See ya

Similar Messages

  • Validate xml againt registerd schema, ignoring xsi:noNamespaceSchemaLocatio

    hi,
    i would like to validate received xml against registered schema, ignoring the one defined in xml. I use XMLisValid(xml_data ,schema_url) but it works only if there is no xsi:noNamespaceSchemaLocation attrubute.
    This is sample xml.
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XMLSPY v2004 rel. 3 U (http://www.xmlspy.com)-->
    <ROOT xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://localhost/public/xsd/myapp.xsd">
         <ID>0</ID>
         <INFO>
              <INFO_ID>0</INFO_ID>
              <INFO_CONTENT>Text</INFO_CONTENT>
         </INFO>
    </ROOT>
    Anybody knows if it is possible?
    Thanks in advance..

    Hi,
    It should work according to the documentation, but obviously it doesn't.
    So I guess you'll have to consider one of these options :
    - Changing the xsi:noNamespaceSchemaLocation at the source to use the URL of your registered schema instead
    - The other way around : register your schema at the URL defined in the document
    - Removing the xsi:noNamespaceSchemaLocation attribute prior to validation
    Here's an example for the third option :
    BEGIN
      dbms_xmlschema.registerSchema(
        schemaURL => 'myapp2.xsd'
      , schemaDoc =>
    '<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element name="ROOT">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ID" type="xs:integer"/>
            <xs:element name="INFO">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="INFO_ID" type="xs:integer"/>
                  <xs:element name="INFO_CONTENT" type="xs:string"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>'
      , local => true
      , genTypes => false
      , genTables => false
    END;
    SQL> declare
      2 
      3    doc xmltype := xmltype('<?xml version="1.0" encoding="UTF-8"?>
      4  <ROOT xmlns:xdb="http://xmlns.oracle.com/xdb"
      5        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      6        xsi:noNamespaceSchemaLocation="http://localhost/public/xsd/myapp.xsd">
      7  <ID>0</ID>
      8  <INFO>
      9  <INFO_ID>0</INFO_ID>
    10  <INFO_CONTENT>Text</INFO_CONTENT>
    11  </INFO>
    12  </ROOT>');
    13 
    14    isValid integer;
    15 
    16  begin
    17 
    18    doc := doc.deleteXML('/ROOT/@xsi:noNamespaceSchemaLocation','xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"');
    19 
    20    select xmlisvalid(doc, 'myapp2.xsd') into isValid from dual;
    21 
    22    dbms_output.put_line('isValid = '||to_char(isValid));
    23 
    24  end;
    25  /
    isValid = 1
    PL/SQL procedure successfully completed

  • Bpelc issues with WSDL schema definition

    Hi,
    I have been attempting to deploy a relative simple BPEL example, developed using the BPEL Designer Eclipse plugin and deployed on BPEL Process Manager.
    The BPEL consists of receiving a SOAP message, copying variables using assign from the input message to a message defined in an external WSDL, invoking that WSDL's service and copying the results of that service into the output message.
    To design the external service, I developed a simple Java class in Apache Axis and used the Java2WSDL tool to create all the interfaces. I then copied that WSDL to the BPEL designer and started to design the BPEL.
    The problem is to do with the definition of messages within the WSDL, the following snippet is from the WSDL generated in Apache Axis:
    <wsdl:types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
         targetNamespace="http://mdsuk.com/wsdl/example/PSP1">
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="OutputCT">
    <sequence>
    <element name="message" nillable="true" type="xsd:string"/>
    <element name="paymentReference" nillable="true" type="xsd:string"/>
    <element name="success" nillable="true" type="xsd:boolean"/>
    </sequence>
    </complexType>
    </schema>
    </wsdl:types>
    I then tried to create the <assign> statement for the External Service Message -> BPEL Output Message using BPEL Designer using the visual editor, it generated the following code:
    <assign name="assign-2">
    <copy>
         <from variable="pspOutput" part="outputCT" query="/message"></from>
         <to variable="output" part="payload" query="/tns:OrderTestResponse/tns:result"/>
    </copy>
    <copy>
         <from variable="pspOutput" part="outputCT" query="/success"></from>
         <to variable="output" part="payload" query="/tns:OrderTestResponse/tns:success"/>
    </copy>
    </assign>
    Trying to compile this generated code resulted in:
    [bpelc] [Error ORABPEL-10057]: invalid query
    [bpelc] [Description]: in line 94 of "D:\EclipseWorkspace\OrderTest\OrderTest.bpel", query "/message" is invalid, because step 'message' is not valid..
    [bpelc] [Potential fix]: Check the XML schema and make sure your query string is valid.
    [bpelc]
    [bpelc] [Error ORABPEL-10057]: invalid query
    [bpelc] [Description]: in line 98 of "D:\EclipseWorkspace\OrderTest\OrderTest.bpel", query "/success" is invalid, because step 'success' is not valid..
    [bpelc] [Potential fix]: Check the XML schema and make sure your query string is valid.
    So, the generated code from BPEL Designer was failing to compile. This resulted in a long check of the code, finally I realised that it expected the inputCT variable to be present in the XPath, so I manually changed the code to
    <assign name="assign-2">
    <copy>
         <from variable="pspOutput" part="outputCT" query="/outputCT/message"></from>
         <to variable="output" part="payload" query="/tns:OrderTestResponse/tns:result"/>
    </copy>
    <copy>
         <from variable="pspOutput" part="outputCT" query="/outputCT/success"></from>
         <to variable="output" part="payload" query="/tns:OrderTestResponse/tns:success"/>
    </copy>
    </assign>
    This allowed to code to compile, so I deployed the BPEL to the Process Manager, and invoked a query using the Web Interface.
    The BPEL started up fine, it invoked my external Axis Web Service, Axis produced the output (visible via debugging) however Process Manager tried to process the output, it crashed with the following exception:
    06/01/19 16:29:11 com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure}
    messageType: {null}
    parts: {{summary=<summary>empty variable/expression result.
    xpath variable/expression expression "/outputCT/message" is empty at line 94, when attempting reading/copying it.
    Please make sure the variable/expression result "/outputCT/message" is not empty.
    </summary>}}
    So, the compiled BPEL code, which had the WSDL schema to compare against was failing during execution, I inspected the output from the Axis Web Service, which was:
    <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <processPaymentResponse xmlns="http://mdsuk.com/wsdl/example/PSP1">
    <outputCT xmlns="">
    <ns1:message xmlns:ns1="http://mdsuk.com/wsdl/example/PSP1">Payment Succesful</ns1:message>
    <ns2:paymentReference xmlns:ns2="http://mdsuk.com/wsdl/example/PSP1">1137688175137</ns2:paymentReference>
    <ns3:success xmlns:ns3="http://mdsuk.com/wsdl/example/PSP1">true</ns3:success>
    </outputCT>
    </processPaymentResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    The key difference was that the message / paymentReference and success attributes were prefixed with the namespace "http://mdsuk.com/wsdl/example/PSP1" , this makes sense as the schema has the attribute targetNamespace="http://mdsuk.com/wsdl/example/PSP1".
    However, when I tried to modify the BPEL to read:
    <assign name="assign-2">
    <copy>
         <from variable="pspOutput" part="outputCT" query="/outputCT/nsxml1:message"></from>
         <to variable="output" part="payload" query="/tns:OrderTestResponse/tns:result"/>
    </copy>
    <copy>
         <from variable="pspOutput" part="outputCT" query="/outputCT/nsxml1:success"></from>
         <to variable="output" part="payload" query="/tns:OrderTestResponse/tns:success"/>
    </copy>
    </assign>
    It complained:
    [bpelc] [Error ORABPEL-10057]: invalid query
    [bpelc] [Description]: in line 94 of "D:\EclipseWorkspace\OrderTest\OrderTest.bpel", query "/outputCT/nsxml1:message" is invalid, because step 'nsxml1:message' is not valid..
    [bpelc] [Potential fix]: Check the XML schema and make sure your query string is valid.
    [bpelc]
    [bpelc] [Error ORABPEL-10057]: invalid query
    [bpelc] [Description]: in line 98 of "D:\EclipseWorkspace\OrderTest\OrderTest.bpel", query "/outputCT/nsxml1:sucess" is invalid, because step 'nsxml1:sucess' is not valid..
    [bpelc] [Potential fix]: Check the XML schema and make sure your query string is valid.
    [bpelc] .
    So, the BPEL would not validate against the WSDL schema that was being produced, I read up on the W3 Schema specification, and found that the schema can take the attribute elementFormDefault - this attribute takes the values 'qualified' or 'unqualified'. If qualified, then it explicitly states that all children elements should be beloning to the namespace of this element.
    So, I changed the schema to read:
    <wsdl:types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
         targetNamespace="http://mdsuk.com/wsdl/example/PSP1"
         elementFormDefault="qualified">
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
    <complexType name="OutputCT">
    <sequence>
    <element name="message" nillable="true" type="xsd:string"/>
    <element name="paymentReference" nillable="true" type="xsd:string"/>
    <element name="success" nillable="true" type="xsd:boolean"/>
    </sequence>
    </complexType>
    </schema>
    </wsdl:types>
    The BPEL compiled and ran succesfully.
    However, the problem/issue here is, Oracle bpelc assumed that if the elementFormDefault attribute was missing from the schema definition, it defaulted to unqualified, even with the targetNamespace attribute present.
    Axis and <oXygen/> XML Editors, in which I tested the WSDL code, assumed that if the elementFormDefault attribute was missing, it defaulted to qualified.
    I cannot find anything in the Schema Specification to say which is correct - can anyone shed any light on this? I also want to make Oracle BPEL users aware of this issue.
    Regards,
    Peter Dolukhanov

    I resolved this issue by adding the following to the 2nd schema in the wsdl
    xmlns:xsdLocal1="urn:/crmondemand/xml/integrationevent"
    inside the 2nd schema
    <xsd:schema
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    xmlns:xsdLocal1="urn:/crmondemand/xml/integrationevent"
    targetNamespace="urn:crmondemand/ws/integrationevent/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    and this line immediately below it
    <xsd:import namespace="urn:/crmondemand/xml/integrationevent" />
    I could then create a proxy class using wsdl.exe

  • ERROR[WSDL Parser] Attribute 'name' not found at: wsdl:documentation

    Hello,
    I'm currently having a problem generating the Java source code from a WSDL, because the WSDL2Service ant class bundled with the WLS install (in the /server/lib/webservices.jar library) does not comply with the WSDL XSD.
    Check http://schemas.xmlsoap.org/wsdl/
    Especially if you add a <wsdl:documentation> in your <wsdl:portType> you end up with a WSDLParser error, while the file perfectly validates through Eclipse:
         <wsdl:portType name="ImportPortType">
              <wsdl:documentation>
                   Definitions of available operations through the webservice
              </wsdl:documentation>
              <wsdl:operation name="importData">
                   <wsdl:input message="tns:ImportInput" />
                   <wsdl:output message="tns:ImportOutput" />
              </wsdl:operation>
         </wsdl:portType> The error is:
    [wsdl2Service] Generating web service from wsdl C:\Java\Workspaces\MyWorkspace/WebServices/wsdl/Import.wsdl
    [wsdl2Service] weblogic.webservice.wsdl.WSDLParseException: ERROR[WSDL Parser] Attribute 'name' not found at:<wsdl:documentation>Definitions of available operations through the webservice
    [wsdl2Service]           </wsdl:documentation>
    [wsdl2Service]      at weblogic.webservice.wsdl.WSDLParser.getMustAttribute(WSDLParser.java:263)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlPortType.parsePortType(WsdlPortType.java:29)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlBinding.parseBinding(WsdlBinding.java:45)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlPort.parsePort(WsdlPort.java:46)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlService.parseService(WsdlService.java:37)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlDefinitions.parseDefinition(WsdlDefinitions.java:38)
    [wsdl2Service]      at weblogic.webservice.wsdl.WSDLParser.visit(WSDLParser.java:71)
    [wsdl2Service]      at weblogic.webservice.WebServiceFactory.createFromWSDL(WebServiceFactory.java:111)
    [wsdl2Service]      at weblogic.webservice.tools.build.internal.WSDL2JavaServiceImpl.runClassgen(WSDL2JavaServiceImpl.java:210)
    [wsdl2Service]      at weblogic.webservice.tools.build.internal.WSDL2JavaServiceImpl.run(WSDL2JavaServiceImpl.java:147)
    [wsdl2Service]      at weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service.doWSDL2JavaService(WSDL2Service.java:211)
    [wsdl2Service]      at weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service.execute(WSDL2Service.java:131)
    [wsdl2Service]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [wsdl2Service]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [wsdl2Service]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [wsdl2Service]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [wsdl2Service]      at java.lang.reflect.Method.invoke(Method.java:585)
    [wsdl2Service]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    [wsdl2Service]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [wsdl2Service]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [wsdl2Service]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    [wsdl2Service]      at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    [wsdl2Service]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [wsdl2Service]      at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    [wsdl2Service]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [wsdl2Service]      at java.lang.reflect.Method.invoke(Method.java:585)
    [wsdl2Service]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    [wsdl2Service]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [wsdl2Service]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [wsdl2Service]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    [wsdl2Service]      at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    [wsdl2Service]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [wsdl2Service]      at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    [wsdl2Service]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [wsdl2Service]      at java.lang.reflect.Method.invoke(Method.java:585)
    [wsdl2Service]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    [wsdl2Service]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [wsdl2Service]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [wsdl2Service]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    [wsdl2Service]      at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
    BUILD FAILED
    C:\Java\Workspaces\MyWorkspace\EAR\ant\build.xml:22: The following error occurred while executing this line:
    C:\Java\Workspaces\MyWorkspace\EAR\ant\build.xml:26: The following error occurred while executing this line:
    C:\Java\Workspaces\MyWorkspace\EAR\ant\build_config.xml:65: weblogic.webservice.tools.build.WSBuildException: weblogic.webservice.wsdl.WSDLParseException: ERROR[WSDL Parser] Attribute 'name' not found at:<wsdl:documentation>Definitions of available operations through the webservice
              </wsdl:documentation> Digging through the WSDLPortType class (package weblogic.webservice.wsdl ) decompiled code, I clearly saw this kind of parsing does not respect the WSDL XSD:
    public class WsdlPortType {
        public WsdlPortType() {
            operations = new ArrayList();
        void parsePortType(WSDLParser wsdlparser, XMLNode xmlnode, Port port) throws WSDLParseException {
            Iterator iterator = xmlnode.getChildren();
            do {
                if(!iterator.hasNext())
                    break;
                XMLNode xmlnode1 = (XMLNode)iterator.next(); // THE NEXT XML NODE IS NOT COMPULSORILY THE <wsdl:operation> ONE!!!
                String s = wsdlparser.getMustAttribute("name", xmlnode1);
                if(wsdlparser.canHandleMethod(xmlnode1)) {
                    weblogic.webservice.Operation operation = port.addOperation(s);
                    WsdlOperation wsdloperation = new WsdlOperation();
                    wsdloperation.parseOperation(wsdlparser, operation, xmlnode1);
                    operations.add(wsdloperation);
            } while(true);
        private ArrayList operations;
    } X-(
    Edited by maxxyme at 03/13/2008 10:34 AM

    I created a new project and tried to repeat the steps to import. Still getting the same error.
    This is my Message type definition if that helps
    <message name="Composite_Weather_ServiceRequestMessage">
              <part name="payload" type="tns1:NDFDgenRequest"/>
         </message>
         <message name="Composite_Weather_ServiceResponseMessage">
              <part name="payload" type="tns1:NDFDgenResponse"/>
         </message>

  • Wsdl validation fails for request message payload from custom schema

    Hello. I am having a problem which I cannot seem to work around. I have defined a schema to serve as a template for the request message payload of a bpel process. The schema is very simple:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:logininfo="http://sru/logininfo" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:sru="http://sru/profile" targetNamespace="http://sru/logininfo" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <xs:import namespace="http://sru/profile" schemaLocation="http://sru/profile.xsd"/>
         <xs:element name="logininfo" type="logininfo:logininfoType">
              <xs:annotation>
                   <xs:documentation>Needed information for SRU Login</xs:documentation>
              </xs:annotation>
         </xs:element>
         <xs:complexType name="logininfoType">
              <xs:all>
                   <xs:element name="email" type="sru:emailType"/>
                   <xs:element name="password">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="32"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="product" type="xs:string"/>
                   <xs:element name="ip" type="sru:ipType"/>
                   <xs:element name="timestamp" type="xs:dateTime"/>
                   <xs:element name="xpath" type="xs:string"/>
              </xs:all>
         </xs:complexType>
    </xs:schema>
    (The schema depends on another, which I have placed at the end of this message).
    I import it into the bpel process designer with no problems.
    Upon defining the payload of the request message type to be the {http://sru/logininfo}logininfoType, the WSDL file does not validate anymore:
    Validating WSDL...
    Validating E:\OraBPELPM_1\integration\jdev\jdev\mywork\SRU\BPELProcess5\BPELProcess5.wsdl
    Schema type not found: QName(http://sru/logininfo, logininfoType)
    Validate WSDL: has errors.
    Any ideas?
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns="http://sru/profile" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:sru="http://sru" xmlns:xdb="http://xmlns.oracle.com/xdb" targetNamespace="http://sru/profile" elementFormDefault="qualified" attributeFormDefault="unqualified" xdb:schemaURL="http://sru/profile.xsd">
         <xs:annotation>
              <xs:documentation>Joel Salmerón Viver</xs:documentation>
              <xs:documentation xml:lang="en">General purpose internet profile schema</xs:documentation>
         </xs:annotation>
         <xs:simpleType name="emailType">
              <xs:restriction base="xs:string">
                   <xs:maxLength value="255"/>
                   <xs:pattern value="[a-z0-9]([a-z0-9\._][a-z0-9]+)*@[a-z0-9]([a-z0-9\.\-][a-z0-9]+)*\.[a-z]{2,6}"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="ipType">
              <xs:restriction base="xs:string">
                   <xs:pattern value="((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.){3}(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="labelType">
              <xs:restriction base="xs:string">
                   <xs:maxLength value="32"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:complexType name="addressType" xdb:SQLType="ADDRESSTYPE" xdb:SQLSchema="SRU">
              <xs:all>
                   <xs:element name="lines" type="linesType" minOccurs="0" xdb:SQLName="lines" xdb:SQLType="LINESTYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true">
                        <xs:key name="linesKey">
                             <xs:selector xpath="line"/>
                             <xs:field xpath="@num"/>
                        </xs:key>
                   </xs:element>
                   <xs:element name="city" xdb:SQLName="city" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="64"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="postalcode" xdb:SQLName="postalcode" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="16"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="countrycode" xdb:SQLName="countrycode" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:length value="2"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
              </xs:all>
              <xs:attribute name="label" type="labelType" use="required" xdb:SQLName="label" xdb:SQLType="VARCHAR2"/>
              <xs:attribute name="verified" type="xs:boolean" use="required" xdb:SQLName="verified" xdb:SQLType="RAW"/>
         </xs:complexType>
         <xs:complexType name="lineType" xdb:SQLType="LINETYPE" xdb:SQLSchema="SRU">
              <xs:simpleContent>
                   <xs:extension base="xs:string">
                        <xs:attribute name="num" type="xs:positiveInteger" use="required" xdb:SQLName="num" xdb:SQLType="NUMBER"/>
                   </xs:extension>
              </xs:simpleContent>
         </xs:complexType>
         <xs:complexType name="loginType" xdb:SQLType="LOGINTYPE" xdb:SQLSchema="SRU">
              <xs:all>
                   <xs:element name="registered_date" type="xs:dateTime" xdb:SQLType="TIMESTAMP WITH TIME ZONE" xdb:SQLName="registered_date" xdb:SQLInline="true"/>
                   <xs:element name="lastlogin_date" type="xs:dateTime" xdb:SQLType="TIMESTAMP WITH TIME ZONE" xdb:SQLName="lastlogin_date" xdb:SQLInline="true"/>
                   <xs:element name="lastlogin_ip" type="ipType" minOccurs="0" xdb:SQLName="lastlogin_ip" xdb:SQLType="VARCHAR2" xdb:SQLInline="true"/>
                   <xs:element name="lastlogin_time" type="xs:time" minOccurs="0" xdb:SQLType="TIMESTAMP WITH TIME ZONE" xdb:SQLName="lastlogin_time" xdb:SQLInline="true"/>
              </xs:all>
              <xs:attribute name="product" use="required" xdb:SQLName="product" xdb:SQLType="VARCHAR2">
                   <xs:simpleType>
                        <xs:restriction base="xs:string">
                             <xs:maxLength value="32"/>
                        </xs:restriction>
                   </xs:simpleType>
              </xs:attribute>
              <xs:attribute name="status" type="xs:integer" use="required" xdb:SQLName="status" xdb:SQLType="NUMBER"/>
         </xs:complexType>
         <xs:complexType name="addressesType" xdb:SQLType="ADDRESSESTYPE" xdb:SQLSchema="SRU">
              <xs:sequence>
                   <xs:element name="address" maxOccurs="unbounded" xdb:defaultTable="PROFILE_ADDRESSES" xdb:SQLName="address" xdb:SQLSchema="SRU" xdb:SQLInline="true" xdb:defaultTableSchema="SRU" xdb:SQLCollType="address360_COLL" xdb:SQLCollSchema="SRU" xdb:maintainOrder="false">
                        <xs:complexType xdb:SQLType="address358_T" xdb:SQLSchema="SRU">
                             <xs:complexContent>
                                  <xs:extension base="addressType"/>
                             </xs:complexContent>
                        </xs:complexType>
                   </xs:element>
              </xs:sequence>
              <xs:attribute name="main" type="labelType" use="required" xdb:SQLName="main" xdb:SQLType="VARCHAR2"/>
         </xs:complexType>
         <xs:complexType name="phonesType" xdb:SQLType="PHONESTYPE" xdb:SQLSchema="SRU">
              <xs:sequence>
                   <xs:element name="phone" type="phoneType" maxOccurs="unbounded" xdb:SQLName="phone" xdb:SQLType="PHONETYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true" xdb:SQLCollType="phone363_COLL" xdb:SQLCollSchema="SRU" xdb:maintainOrder="false"/>
              </xs:sequence>
              <xs:attribute name="main" type="labelType" use="required" xdb:SQLName="main" xdb:SQLType="VARCHAR2"/>
         </xs:complexType>
         <xs:complexType name="loginsType" xdb:SQLType="LOGINSTYPE" xdb:SQLSchema="SRU">
              <xs:sequence>
                   <xs:element name="login" type="loginType" maxOccurs="unbounded" xdb:SQLName="login" xdb:SQLType="LOGINTYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true" xdb:SQLCollType="login366_COLL" xdb:SQLCollSchema="SRU" xdb:maintainOrder="false">
                        <xs:key name="loginKey">
                             <xs:selector xpath="."/>
                             <xs:field xpath="@product"/>
                        </xs:key>
                   </xs:element>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="phoneType" xdb:SQLType="PHONETYPE" xdb:SQLSchema="SRU">
              <xs:simpleContent>
                   <xs:extension base="phonenumberType"/>
              </xs:simpleContent>
         </xs:complexType>
         <xs:complexType name="profileType" xdb:SQLType="PROFILETYPE" xdb:SQLSchema="SRU">
              <xs:all>
                   <xs:element name="firstname" xdb:SQLName="firstname" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="64"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="surname1" xdb:SQLName="surname1" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="64"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="surname2" minOccurs="0" xdb:SQLName="surname2" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="64"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="gender">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:length value="1"/>
                                  <xs:enumeration value="M"/>
                                  <xs:enumeration value="F"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="alt_email" type="emailType" minOccurs="0" xdb:SQLName="alt_email" xdb:SQLType="VARCHAR2" xdb:SQLInline="true"/>
                   <xs:element name="addresses" type="addressesType" minOccurs="0" xdb:SQLName="addresses" xdb:SQLType="ADDRESSESTYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true">
                        <xs:key name="addressesKey">
                             <xs:selector xpath="address"/>
                             <xs:field xpath="@label"/>
                        </xs:key>
                        <xs:keyref name="addressRef" refer="addressesKey">
                             <xs:selector xpath="."/>
                             <xs:field xpath="@main"/>
                        </xs:keyref>
                   </xs:element>
                   <xs:element name="phones" type="phonesType" minOccurs="0" xdb:SQLName="phones" xdb:SQLType="PHONESTYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true">
                        <xs:key name="phoneKey">
                             <xs:selector xpath="phone"/>
                             <xs:field xpath="@label"/>
                        </xs:key>
                        <xs:keyref name="phoneRef" refer="phoneKey">
                             <xs:selector xpath="."/>
                             <xs:field xpath="@main"/>
                        </xs:keyref>
                   </xs:element>
                   <xs:element name="language" type="xs:language" xdb:SQLName="language" xdb:SQLType="VARCHAR2" xdb:SQLInline="true"/>
                   <xs:element name="logins" type="loginsType" minOccurs="0" xdb:SQLName="logins" xdb:SQLType="LOGINSTYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true">
                        <xs:key name="loginsKey">
                             <xs:selector xpath="login"/>
                             <xs:field xpath="@product"/>
                        </xs:key>
                   </xs:element>
                   <xs:element name="origin" minOccurs="0" xdb:SQLName="origin" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:annotation>
                             <xs:documentation>iso3166 a2 country code</xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:length value="2"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="creation_date" type="xs:dateTime" xdb:SQLType="TIMESTAMP WITH TIME ZONE" xdb:SQLName="creation_date" xdb:SQLInline="true"/>
                   <xs:element name="modified_date" type="xs:dateTime" xdb:SQLType="TIMESTAMP WITH TIME ZONE" xdb:SQLName="modified_date" xdb:SQLInline="true"/>
                   <xs:element name="password" xdb:SQLName="password" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="32"/>
                                  <xs:pattern value="[a-zA-Z0-9]+"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="hint" minOccurs="0" xdb:SQLName="hint" xdb:SQLType="VARCHAR2" xdb:SQLInline="true">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:maxLength value="32"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
                   <xs:element name="additional" type="xs:anyType" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation>future expansion</xs:documentation>
                        </xs:annotation>
                   </xs:element>
              </xs:all>
              <xs:attribute name="email" type="emailType" use="required" xdb:SQLName="email" xdb:SQLType="VARCHAR2"/>
              <xs:attribute name="active" type="xs:boolean" use="required"/>
         </xs:complexType>
         <xs:complexType name="phonenumberType" xdb:SQLType="PHONENUMBERTYPE" xdb:SQLSchema="SRU">
              <xs:simpleContent>
                   <xs:extension base="xs:string">
                        <xs:attribute name="label" type="labelType" use="required" xdb:SQLName="label" xdb:SQLType="VARCHAR2"/>
                   </xs:extension>
              </xs:simpleContent>
         </xs:complexType>
         <xs:element name="profile" type="profileType" xdb:defaultTable="PROFILES" xdb:SQLName="profile" xdb:SQLType="PROFILETYPE" xdb:SQLSchema="SRU" xdb:defaultTableSchema="SRU"/>
         <xs:complexType name="linesType" xdb:SQLType="LINESTYPE" xdb:SQLSchema="SRU">
              <xs:sequence>
                   <xs:element name="line" type="lineType" maxOccurs="unbounded" xdb:SQLName="line" xdb:SQLType="LINETYPE" xdb:SQLSchema="SRU" xdb:SQLInline="true" xdb:SQLCollType="line354_COLL" xdb:SQLCollSchema="SRU" xdb:maintainOrder="false"/>
              </xs:sequence>
         </xs:complexType>
    </xs:schema>

    IT would help if the people that are working this issue would post the resolve of their problems. Every post I see with this problem someone from oracle replies with needing the source project to replicate the issue and the thread dies....

  • Web Methods- SOAP-XI Integration

    Hi All,
    I am working on a scenario where I need to integrate web methods and XI using web services. I got WSDLs from my web methods team I have tested the same in XML spy they are working fine and I am able to see response in it.
    I have imported the same WSDL in XI and done with all the XI developments. When I am trying to send any request to web methods I am getting an exception from web methods like below,
    <?xml version="1.0" encoding="UTF-8" ?>
    - <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <SOAP-ENV:Body>
    - <SOAP-ENV:Fault>
      <faultcode>SOAP-ENV:Server</faultcode>
      <faultstring>[ISS.0088.9112] An Exception was thrown in the server</faultstring>
      <faultactor>http://abcdefgh.com:6557/soap/default</faultactor>
    - <detail xmlns:webM="http://www.webMethods.com/2001/10/soap/encoding">
    - <webM:exception>
      <webM:className>java.lang.NullPointerException</webM:className>
      <webM:message xml:lang="" />
      <webM:stackTrace xml:lang="">java.lang.NullPointerException at com.wm.util.LocalizedException.<init>(LocalizedException.java:229) at com.wm.app.b2b.server.ServerException.<init>(ServerException.java:55) at com.wm.app.b2b.server.ServiceException.<init>(ServiceException.java:43) at com.wm.app.b2b.server.SOAPException.<init>(SOAPException.java:102) at com.wm.app.b2b.server.SOAPMessage.validate(SOAPMessage.java:957) at com.wm.app.b2b.server.HTTPSOAPHandler._process(HTTPSOAPHandler.java:429) at com.wm.app.b2b.server.HTTPSOAPHandler.process(HTTPSOAPHandler.java:111) at com.wm.app.b2b.server.Dispatch.run(Dispatch.java:298) at com.wm.util.pool.PooledThread.run(PooledThread.java:105) at java.lang.Thread.run(Thread.java:534)</webM:stackTrace>
      </webM:exception>
      </detail>
      </SOAP-ENV:Fault>
      </SOAP-ENV:Body>
      </SOAP-ENV:Envelope>
    I have configured my SOAP communication channel as below,
    Transport protocol: HTTP
    Message protocol : SOAP 1.1
    Target URL : http:// abcdefgh.com:6557/soap/default
    Do not use SOAP envelop (Checked)
    Any help on this would be greatly appreciated.
    Regards,
    Prasad Babu.

    Hi !
    <b>XI->SOAP->Webmethod</b>
    also check with these
    XI->SOAP->Webmethod we can achieve it.
    This might help you
    XI with Webmethods
    Differences between XI and webMethods
    /people/abhy.thomas/blog/2007/04/19/sap-xi--webmethods-integration-150-challenges-and-migration-strategies
    XI and webMethos connectivity
    Integrate Webmethods and XI
    Just a thought
    SAP BC is also a webmethods proprietary integration solution. So in my opinion u should look into SAP BC adapter for ur integration requirements.
    /people/michal.krawczyk2/blog/2005/09/15/xi-rfc-mapping-lookups-from-bc-to-xi
    /people/bla.suranyi/blog/2006/07/10/xi--sap-business-connector-integration-using-the-http-adapter
    WebMethods has developed a WebMethods XI adapter that is plugged into WebMethods and that can post messages into the XI PipleLine url in the XI SOAP Message Format.
    Liewise XI can use the XI receiver adapter to post the message to a particualr URL on WebMethods.
    WebMethods will read the info from this URL using the Sender XI Adapter plugged into WebMethods.
    Abhy Thomas has also posted a Article on SDN and this should be out soon that discusses the finer acspects of this implementation while his blog provides a high level overview.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/a%20case%20study%20sap%20xi%20-%20webmethods%20integration.pdf
    There are couple of docs available - kind of case study..
    /people/abhy.thomas/blog/2007/04/19/sap-xi--webmethods-integration-150-challenges-and-migration-strategies
    thread discussion.. XI with Webmethods
    <b>Questions are welcome here!!
    Also mark helpful answers
    Thanks,
    Abhishek Agrahari </b>

  • WLDL files exported from XI 2.0 not valid for Web Service Clients

    Hi there,
    Im struggling for almost a week with a <b>BAPI WSDL file</b> exported from the XI repository. My scenario is very simple; A BAPI in R/3 exposed as web service through XI using the SOAP adapter.
    The intention was to generate a Web Service Client based on this WSDL file, unfortunately I get all kind of errors when trying to generate the client. (using tools like, SOAPScope, XML Spy and WebSphere Developer Studio none of this tools can validate the generated WSDL file obtained from XI)
    Can someone <b>Please explain</b> me how/what exaclty do I have to do in order to expose my BAPI as Web Service in XI 2.0? Or Please tell me if this is just impossible in this version of XI.
    Thanks a lot!
    Rob.

    Hi Rob,
    It seems that when exporting to a WSDL file from the Repository, <service> and <binding> are missing from the structure.
    A way to work this out is to either add them maually, or to create the WSDL from the Directory, using the Create End Point as Webservice in the Tools menu.
    When you do that, consider a couple of things:
    1. The message interface, by which you create the wsdl should be inbound. The message interface in the scenario should be outbound.
    2. In the binding section, the produced url is of the intergration server, and you need to change it to that defined in the SOAP adapter configuration.
    Hope this helps.
    Avihai

  • Intercepting SOAP XML message in JAX-RPC Handler and calling a diff method

    Is it possible to intercept the SOAP XML message in the JAX-RPC handler and avoid the serialization and deserialization (OR avoid XML data binding)
    Here is a more detail question
    My web service has two methods
    1. One Method which accepts Java Object (this object is mapped with a Schema
    Complex Type Element in my WSDL file)
    2. Second method which accept simple String type.
    I want my web service client to send java object (using the first method), so that the Input gets validate in the WSDL itself (before it hits the actual web service) but once the request gets validated i want to pass that converted SOAP XML String (on the Server side using JAX-RPC handler) to the Second method.

    The answer to this is that the WSDL had
    elementFormDefault="qualified"
    in the schema.
    Changing to unqualified resulted in the desired output.
    Note: The service was changed to handle both cases.

  • Problem in creating proxy code for webservices in Myeclipse

    Hi
    I am using MyEclipse 9.1 to create client proxy for Account WSDL v1. I following following steps:
    1. Created a web service project
    2. Copied the WSDL file to WebRoot folder within the MyEclispe
    3. With Right click on the WSDL file, I selected option 'New Web Service Client'
    4. With some options selected, the application started creating proxy client.
    5. During the process, it flashed a message in tool tip format. It is as following
    "WS-I: A problem occured while running the WS-I WSDL conformance check:
    org.eclipse.wst.wsi.internal.analyzer.WSIAnalyzerException: The WS-I
    Test Assertion Document (TAD)document was either not found or could not be
    processed.The WSDLAnalyzer was unable to validate the given WSDL File"
    6. When I proceeded with it, it created all the necessary classes but the proxy class was not created. Hence I could not begin writting my code in it.
    Can someone help me know what went wrong in the entire process?
    Thanks and regards,

    Hi,
       I could not respond to your answer, as I was away from work. I did the same thing as proposed by you.
    I have created the tax code V5 in FTXP. I did not enter any value in any of the rows, as we are using TAXINN.
    then in FV11, I selected gave condition JSRT.
    In column 7th, I entered tax code V5, then gave the value of 12.5% in column 3rd, then I gave in 1st column
    when i press enter or try to save system is giving error message
    The condition record entered already exists
    Now what I did in 1st column I gave from my own just like P1, it is giving message
    Tax ID V5 cannot be checked (there are several/no tax records).
    if i enter, the message disappears and i can save.
    Is it correct?
    say I have different values for the condition JSRT(Service Tax), say 12.5% and 10 %
    How to proceed in this case?
    do I have to make 2 codes say P1 and P2 against V5.
    REGARDS

  • Help in a practice

    Hi:
    I'm using captivate 4 to create a e-learning course about openoffice writer, but i have one problem, I like to know if you can help me.
    First of all, sorry for my poor english.
    I have some practices embebed in one course, the student have 3 attempts to make the practice, if it's not correct the program solves it and put a check mark in the navigation menu. But if the student makes the practice correctly is not marked on the navigation menu because there are 2 or 3 slides where the program explain how to do the practice and these are not visited.
    Do you understand me? and...can you help me?
    Thanks
    Santi

    One of my projects gives the same error. When I use the "go to source" menu selection in the compiler output message window, it takes me to the first line of bpel file. I'm guessing there's an invalid URI in a wsdl somewhere but I haven't the faintest idea how to find it if the compiler won't give the proper error line number. I did validate all the wsdl's individually and they are apparantly fine. Not sure what to try next.
    Bret

  • Exception excuting the BPM application

    Hi All,
    I want to execute my BPM Application. when I selected 'RUN' from the context menu, I got  one exception "java.lang.UnsupportedClassVersionError:bad version number in .class file" . I have imported one wsdl file for automated activity.This WSDL file is included in process composer/src/wsdl/schemas where I am getting one warning "A problem occurred while running the WS-I WSDL  conformance check org.eclipse.wst.wsi.internal. analyzer.WSIAnalyzerException : The WS-I Test Assertion Document(TAD) document was either not found or could not be processed. The WSDL Analyzer was unable to validate  the given WSDL file ".
    Kindly suggest me some solution for these exceptions.
    Regards,
    Pranjali

    Are you on Linux?
    While testing the demo on linux, perhaps one time out of 10 this issue would happen to me but I was not able to track down the cause or reproduce it consistently.
    The symptom was that running the application -- by running the UserInterface project -- somehow caused the ADF BC configurations for the SRService application module to go missing.
    To try reinstalling the demo, assuming you are on Linux, do the following:
    1. rm -rf <JDEVHOME>/jdev/samples/SRDemoSampleADFBC directory
    2. rm <HOME>/jdevhome/tmp/update/SRDemoSampleADFBCExtension.zip file
    3. rm -rf <JDEVHOME>/jdev/extensions/*srdemo*

  • BEA JRockit(R) R27.3.1-1-solaris-sparcv9 crashed

    Hi, This happens in solaris sparc machine. Please find the dmp below, could anyone shed some lights on this issue, please?
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=10, si_code=3 si_addr=0xffffffff76a08000
    Version : BEA JRockit(R) R27.3.1-1-85830-1.5.0_11-20070716-1248-solaris-sparcv9
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#0.
    : YC is not running. Last finished YC was YC#0.
    YC History : Ran 0 YCs since last OC.
    Heap : 0x1700000 - 0x5700000
    Compaction : (no compaction area)
    NurseryList : 0x1700000 - 0x3700000
    KeepArea : (no keeparea in use)
    NurseryMarker: [ 0x26ffff0,  0x2efffe8 ]
    CompRefs : References are compressed.
    <Nov 26, 2007 3:23:40 PM> <Debug> <NodeManager> <Waiting for the process to die: 4083>
    <Nov 26, 2007 3:23:40 PM> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <Nov 26, 2007 3:23:40 PM> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying wai
    ters>
    Thanks
    Tamil

    Solaris installation provides only the details I have pasted already. I dont see the core details. However, I was able to reproduce the problem in windows 64 bit machine. Here is the core details.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:03:36 on Tue Dec 04 20:44:05 2007
    Additional information is available in:
    c:\CT\dev\am\test\cases\wls\jrockit.3684.dump
    c:\CT\dev\am\test\cases\wls\jrockit.3684.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (00000000c0000005) at 0x000007FF7FC52B00 - memory at 0x0000000000000000 could not be written.
    Minidump : Wrote mdmp. Size is 133MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.3.1-1-85830-1.5.0_11-20070716-1248-windows-x86_64
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#145.
    : YC is not running. Last finished YC was YC#51.
    OC History : Strategy genparpar was used for OC#137.
    : Strategy singleparpar was used for OC#138.
    : Strategy genparpar was used for OC#139 to OC#140.
    : Strategy singleparpar was used for OC#141.
    : Strategy genparpar was used for OC#142 to OC#145.
    YC History : Ran 0 YCs before OC#141.
    : Ran 9 YCs before OC#142.
    : Ran 1 YCs before OC#143.
    : Ran 10 YCs before OC#144.
    : Ran 20 YCs before OC#145.
    : Ran 2 YCs since last OC.
    Heap : 0x0000000010500000 - 0x0000000011E29000
    Compaction : 0x00000000109B7B00 - 0x0000000010B9D200
    NurseryList : 0x0000000010B8C180 - 0x000000001189CF78
    KeepArea : 0x0000000011384B10 - 0x00000000116BCC40
    NurseryMarker: [ 0x0000000011384B10,  0x00000000116BCC40 ]
    CompRefs : References are compressed.
    CPU : Intel Core SSE SSE2 SSE3 SSSE3 Core EM64T
    Number CPUs : 1
    Tot Phys Mem : 2184585216 (2083 MB)
    OS version : Microsoft Windows Server 2003 version 5.2 Service Pack 1 (Build 3790) (64-bit)
    Thread System: Windows Threads
    State : JVM is running
    Command Line : -Dbasedir=c:\CT\dev\am\test\cases\wls -Dims.test.wsdl.validate= -Dims.test.wsdl.validate.exclude=com.rsa.configuration.,com.rsa.authmgr.admin.configuration. -Dam.admin.seedfile.path=../test/config/kh0701.xml -Dam.admin.seedfile.password= -Dims.toplevel.dir=c:\CT\dev\am\test\cases\wls/../../.. -Djava.naming.factory.initial=weblogic.jndi.WLInitialContextFactory -Djava.naming.provider.url=t3s://am-install-w64.das.na.rsa.net:7002/ -Dims.test.admin.login=admin -Dims.test.admin.password=password -Dims.test.admin.ldap=false -Dims.test.admin.activedomain=ims.000000000000000000001000e0011000 -Dam.test.output.debug=false -Dam.test.config.dir.path=../test/config/ -Dam.test.seedfile.name=tknseed_fob_5.xml -Dam.test.64bit.seedfile.name=ENG0103_1_TOKEN.XML -Dam.test.level2=false -Djava.net.preferIPv4Stack=true -Dam.test.server.ipaddress=127.0.0.1 -Dam.test.nodesecret.search=false -Dam.test.nodesecret.path= -DSDCONF_LOC=../test/config/agent_autoreg/sdconf.rec -DSDNDSCRT_LOC=../test/config/agent_autoreg/securid -DSDSTATUS_LOC=../test/config/agent_autoreg/JAStatus.1 -DRSA_LOG_LEVEL=OFF -Dam.install=true -Dam.console.ssl=false -Dims.test.admin.password.install=5uperMan! -Dam.test.ctkip.seedfile.name=tknseed_software.xml -Dtest.ctkip.client_hello.xml=../test/config/ctkip/clienthellopdu.xml -Dam.test.token.import.nickname.seedfile.name=qa_sidsoft_nn.xml -Dam.test.token.import.nicknameserialnum.seedfile.name=qa_sidsoft_nnsn.xml -Dam.test.token.import.serialnum.seedfile.name=qa_sidsoft_sn.xml -Dtest.ctkip.client_provisioning_data=../test/config/ctkip/provisioningData.xml -Dtest.ctkip.client_nonce.xml=../test/config/ctkip/clientnoncepdu.xml -Dam.test.ldap=false -Dam.test.oa.client.type=lac -Dam.test.oa.dac.domain=SID4WIN -Dam.test.oa.run=false -Dam.test.oa.dps.ipaddress=127.0.0.1 -Dam.test.oa.dah.ipaddress=10.104.102.224 -Dam.test.output.debug.prependDate=false -Dam.test.oa.dah.nodesecret.export.path=. -Dam.test.cluster.primary.membernode.hostname.1=w2k3-qa-clstr2 -Dam.test.cluster.primary.membernode.hostname.2=w2k3-qa-clstr3 -Dam.test.cluster.primary.leadernode.hostname=w2k3-qa-clstr1 -Dam.test.cluster.primary.nodes=2 -Dam.test.cluster=false -Dproperties.directory=c:/opt/rsa/am-326425/utils/etc -Djava.library.path.systemtools= -Dbea.home=c:\CT\dev\am\test\cases\wls -Dweblogic.security.TrustKeyStore=CustomTrust -Dweblogic.security.CustomTrustKeyStoreFileName=c:/opt/rsa/am-326425/appserver/jdk/jre/lib/security/cacerts -Dssl.debug= -Dweblogic.StdoutDebugEnabled= -Dims.test.ldap.isAD=false -Dtest.level=1 -Dtest.cluster=false -Dtest.oa=false -Dtest.installer=false -Dtest.runbug=false -Dtest.admin.username=admin -Dtest.admin.password=5uperMan! -Dtest.replicas.count=0 -Dtest.ids.target=SystemIS -Dtest.realm.target=SystemDomain -Dtest.internalids.name=SystemIS -Dtest.systemdomain.name=SystemDomain -Dtest.config.dir=../test/config/ -Dtest.ns.dir=c:\CT\dev\am\test\cases\wls/../../../test/cases/wls/target -Dtest.trust.enabled=false -Dtest.trust.internalids.name=SystemIS -Dtest.trust.systemdomain.name=SystemDomain -Dtest.trust.admin.username=admin -Dtest.trust.admin.password=password -Dtest.trust.cmdclient.username=CmdClient -Dtest.trust.cmdclient.password=password -Dtest.trust.naming.factory.initial=weblogic.jndi.WLInitialContextFactory -Dtest.trust.naming.provider.url=t3://ims0.na.rsa.net:7001/ -Dam.test.config.migration.dir.path=../test/config/migration/6.1/ -Dam.test.config.migration.ldap.name=LDAP-STORE -Dims.test.admin.ldap=false -Dims.test.ldap.isAD=false -Dam.test.config.migration.ldap.enabled= -Dims.test.ldap.url=ldap://blah.na.rsa.net:389/ -Dims.test.ldap.username=uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot -Dims.test.ldap.password=adminadmin -Dtest.ids.target.ldap.url=ldap://blash.na.rsa.net:289 -Dtest.ids.target.ldap.username=uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot -Dtest.ids.target.ldap.password=adminadmin -Dhttp.keepAlive=true -Dhttp.maxConnections=5 -Dtest.cmdclient.username=CmdClient_45b0ormy -Dtest.cmdclient.password=Gy0SGr5mSH -Dtest.node1.provider.url= -Dtest.node2.provider.url= -Dtest.replica1.provider.url= -Dtest.replica2.provider.url= -Dtest.replica1.cmdclient.username=CmdClient -Dtest.replica1.cmdclient.password=password -Dtest.replica2.cmdclient.username=CmdClient -Dtest.replica2.cmdclient.password=password -Dtest.method= -Dsun.java.launcher=SUN_STANDARD org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner testsfile=C:\CT\dev\am\test\cases\wls\junittestcases198292503.properties filtertrace=true haltOnError=false haltOnFailure=false formatter=org.apache.tools.ant.taskdefs.optional.junit.SummaryJUnitResultFormatter showoutput=false formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,C:\CT\dev\am\test\cases\wls\target\test-reports\IGNORETHIS.xml formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter propsfile=C:\CT\dev\am\test\cases\wls\junit533938511.properties
    java.home : C:\opt\rsa\am-326425\appserver\jdk\jre
    j.class.path : C:\CT\dev\am\test\cases\wls\target\test-classes;C:\CT\dev\am\test\cases\wls\target\classes;C:\Documents and Settings\Administrator\.maven\repository\hibernate\jars\hibernate-ejb-persistence-3.2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\weblogic-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\oracle-jdbc\jars\ojdbc14-10.2.0.2.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\framework-common.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\framework-config.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\admin-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\radius-core.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\radius-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\eap32.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\adjudicator.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\core-api.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\samples.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\common-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\amtcgen.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\oa.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\token-transport.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\auth-method-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\activity-monitor.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\migration61.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\sms-admin.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\test-command.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\ct-kip.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\cases.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\ims-client.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\ims-server.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\test-command.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\lw-agent.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\liberty.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\systemfields.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\wsapi.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\clu-common.jar;C:\Documents and Settings\Administrator\.maven\repository\altova-xmlspy\jars\xmlspy-schema-2006-sp2.jar;C:\Documents and Settings\Administrator\.maven\repository\caucho\jars\hessian-3.0.19rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\httpunit\jars\httpunit-1.6.jar;C:\Documents and Settings\Administrator\.maven\repository\junit\jars\junit-3.8.2.jar;C:\Documents and Settings\Administrator\.maven\repository\jline\jars\jline-0.9.91rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\log4j\jars\log4j-1.2.11rsa-2.jar;C:\Documents and Settings\Administrator\.maven\repository\nekohtml\jars\nekohtml-0.7.7.jar;C:\Documents and Settings\Administrator\.maven\repository\jdom\jars\jdom-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\jsafe-3.6.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\jsafeJCE-3.6.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\sslj-4.1.6.3.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\rsajsse-4.1.6.3.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\certj-2.1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\auth-elements\jars\tcgen-2.0.1-beta.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-beanutils\jars\commons-beanutils-1.7.0.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-collections\jars\commons-collections-3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-httpclient\jars\commons-httpclient-3.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-logging\jars\commons-logging-1.0.4.jar;C:\Documents and Settings\Administrator\.maven\repository\jargs\jars\jargs-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-lang\jars\commons-lang-2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-io\jars\commons-io-1.2.jar;C:\Documents and Settings\Administrator\.maven\repository\axis\jars\axis-1.3.jar;C:\Documents and Settings\Administrator\.maven\repository\jaxrpc\jars\jaxrpc-1.2.jar;C:\Documents and Settings\Administrator\.maven\repository\wsdl4j\jars\wsdl4j-1.5.1.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-discovery\jars\commons-discovery-0.2.jar;C:\Documents and Settings\Administrator\.maven\repository\axis\jars\axis-saaj-1.3.jar;C:\Documents and Settings\Administrator\.maven\repository\springframework\jars\spring-2.0.7.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-aceagent_sdk\jars\authapi-internal-5.0.3.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-ctkip\jars\ctkip-toolkit-1.2.126.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\dataManager.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\am-dataManager.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\aceclntjni.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\sidauthjni.jar;C:\Documents and Settings\Administrator\.maven\repository\easymock\jars\easymock-2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\easymock\jars\easymockclassextension-2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\aceclntjni-oo.jar;C:\Documents and Settings\Administrator\.maven\repository\ognl\jars\ognl-2.6.7.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\webservices-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\weblogic-domain-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\weblogic-container-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\diagnostics-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\diagnostics-image-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlxbean-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlw-langx-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javelinx-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlManagementImplSource-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlManagementMBean-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.antlr.runtime-2.7.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\org.apache.ant.patch-1.6.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.bcel-5.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.apache.bcel-5.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.collections-3.2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.lang-2.1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.pool-1.3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.dom-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.logging-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\org.apache.openjpa-0.9.7.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.xml.security-1.3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.xmlbeans-2.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.logging-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.bea.opensaml-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.staxb.buildtime-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.staxb.runtime-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.annogen-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.kodo-4.1.3.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.kodo.integration-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.kodo.integration.tools-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.process-5.3.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.beaxmlbeans-2.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.aspectj.aspectjweaver-5.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.apache.commons.logging-1.1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.springframework.spring-2.0.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.springframework.pitchfork-1.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.engine.impl-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.engine.api-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.api-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.impl-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.jdkutils-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.utils-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.providers.utils-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.providers.env-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.net-1.4.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.el-2.1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxb-2.0.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.resolver-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.rt-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.saaj.impl-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.sjsxp-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.tools-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.stax.ex-1.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.xmlstreambuffer-0.1.117.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.oro-2.0.8.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.activation-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.annotation-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.interceptor-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.ejb-3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jdo-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.enterprise.deploy-1.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jms-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jsp-2.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jws-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.mail-1.4.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.management.j2ee-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.persistence-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.resource-1.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.servlet-2.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.transaction-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.bind-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.soap-1.3.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.stream-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.ws-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.rpc-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.log4j-1.2.13.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\monfox.dsnmp.agent-4.6.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.jsafe-3.5.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.serp-1.12.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.beangen-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.beaninfo-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.datasource-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.descriptor-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.asm-1.5.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.diagnostics.core-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.diagnostics.instrumentor-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.i18n-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.i18n.generator-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.management.core-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.mbean.maker-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.mbean.support-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.messaging.kernel-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.resourcepool-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.rmi.client-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.security.wls-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.saaj-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.stax-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.store-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.store.gxa-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.transaction-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.full-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.classloaders-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.expressions-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.wrapper-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.timers-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.workmanager-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.workarea-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.jatmi-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.security-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.nodemanager.plugin-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.jmspool-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\emma\jars\emma-2.0.5312.jar;C:\Documents and Settings\Administrator\.maven\repository\emma\jars\emma_ant-2.0.5312.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa\jars\maven-rsa-ext-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\xdoclet\jars\xdoclet-xdoclet-module-1.2.3.jar;C:\Documents and Settings\Administrator\.maven\repository\clover\jars\clover-1.3.13.jar;C:\Documents and Settings\Administrator\.maven\repository\clover\jars\cenquatasks-1.3.14.jar;C:\Documents and Settings\Administrator\.maven\repository\xjavadoc\jars\xjavadoc-1.5-snapshot050611.jar;C:\Documents and Settings\Administrator\.maven\repository\xdoclet\jars\xdoclet-1.2.3.jar;C:\Documents and Settings\Administrator\.maven\repository\hibernate\jars\hibernate-3.2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\hibernate\jars\hibernate-annotations-3.2.1.jar;C:\Documents and Settings\Administrator\.maven\repository\antlr\jars\antlr-2.7.6.jar;C:\Documents and Settings\Administrator\.maven\repository\iscreen\jars\iScreen-1-1-0rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\iscreen\jars\iScreen-mvel-1-1-0rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\iscreen\jars\mvel-1.1.8-java1.5.0_10.jar;C:\Documents and Settings\Administrator\.maven\repository\asm\jars\asm-1.5.3.jar;C:\Documents and Settings\Administrator\.maven\repository\cglib\jars\cglib-2.1_3.jar;C:\Documents and Settings\Administrator\.maven\repository\odmg\jars\odmg-3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\dom4j\jars\dom4j-1.6.1.jar;C:\Documents and Settings\Administrator\.maven\repository\xerces\jars\xercesImpl-2.7.1.jar;C:\Documents and Settings\Administrator\.maven\repository\xml-apis\jars\xml-apis-1.3.02.jar;C:\Documents and Settings\Administrator\.maven\repository\hsqldb\jars\hsqldb-1.7.2.4.jar;C:\Documents and Settings\Administrator\.maven\repository\opensymphony-oscache\jars\oscache-2.3.2rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\j2ee\jars\j2ee-1.5.jar;C:\Documents and Settings\Administrator\.maven\repository\xml-apis\jars\xml-apis-1.3.03.jar;C:\Documents and Settings\Administrator\.maven\repository\xerces\jars\xercesImpl-2.8.0.jar;C:\Documents and Settings\Administrator\.maven\repository\xml-resolver\jars\xml-resolver-1.1.jar;C:\CT\library\apache-maven\1.1\lib\ant-launcher-1.6.5.jar;C:\CT\library\apache-maven\1.1\lib\ant-1.6.5.jar;C:\CT\library\apache-maven\1.1\lib\ant-junit-1.6.5.jar
    j.lib.path : C:\opt\rsa\am-326425\appserver\jdk\jre\bin;.;C:\WINDOWS\system32;C:\WINDOWS;c:\opt\rsa\am-326425\appserver\jdk\jre\bin;c:\opt\instantclient_10_2;C:\cygwin\bin;c:\CT\library\apache-maven\1.1\bin;c:\CT\library\activetcl\8.4.11\linux-x86\bin;C:\cygwin\bin;C:\cygwin\bin;C:\cygwin\usr\local\bin\;C:\cygwin\usr\sbin;c:\opt\instantclient_10_2;C:\cygwin\bin;c:\CT\library\apache-maven\1.1\bin;c:\CT\library\activetcl\8.4.11\linux-x86\bin;C:\cygwin\bin;C:\cygwin\bin;C:\cygwin\usr\local\bin\;C:\cygwin\usr\sbin;c:\opt\rsa\am-325621\db\bin;c:\opt\rsa\am-325471\db\bin;c:\opt\rsa\am-325281\db\bin;c:\opt\rsa\am-325250\db\bin;c:\opt\rsa\am-325240\db\bin;c:\opt\rsa\am-324877\db\bin;c:\opt\rsa\am-324751\db\bin;c:\opt\rsa\am-324743\db\bin;c:\opt\rsa\am-324632\db\bin;c:\opt\rsa\am-324516\db\bin;c:\opt\rsa\am-324412\db\bin;c:\opt\rsa\am-324131\db\bin;c:\opt\rsa\am-das-323485\db\bin;c:\opt\rsa\am-das-323453\db\bin;c:\opt\rsa\am-das-323386\db\bin;c:\opt\rsa\am-das-323315\db\bin;c:\opt\rsa\am-das-323052\db\bin;c:\opt\rsa\am-das-322733\db\bin;c:\opt\rsa\am-das-322676\db\bin;c:\opt\rsa\am-das-322622\db\bin;c:\opt\rsa\am-das-322471\db\bin;c:\opt\rsa\am-das-322445\db\bin;c:\opt\rsa\am-das-322264\db\bin;c:\opt\rsa\am-das-321939\db\bin;c:\opt\rsa\am-das-321144\db\bin;c:\opt\rsa\am-321052\db\bin;c:\opt\rsa\am-321006\db\bin;c:\opt\rsa\am-320711\db\bin;c:\opt\rsa\am-320613\db\bin;c:\opt\rsa\am-320550\db\bin;c:\opt\rsa\am-320535\db\bin;c:\opt\rsa\am-320466\db\bin;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;C:\cygwin\bin
    JAVA_HOME : c:\opt\rsa\am-326425\appserver\jdk

  • Error to validate WSDL

    Hi all,
    I try to create a ws client wint jdev wizard Create Web Service Stub\Skeleton but the wizard stop with thi error:
    Validating WSDL...
    Validating C:\jdev1012\jdev\mywork\WService.wsdl
    Schema type not found: QName(http://schemas.xmlsoap.org/soap/encoding/, string)
    Validate WSDL: has errors.
    The file WSDL is correct and I don't found a reference for that error, can anyone help me?
    Alessandro

    Alessandro,
    Unfortunately, it is not possible to register those schema into the 10.1.2 WSDL APIs. Your other option is to rely on an external tool to do the WSDL validation. I have been using SOAPscope a lot. In your case, it may not be the best as the soapenc will be marked as not WS-I compliant.
    Even if you have to use the current production version of the server, which is totaly understood, you should think about having a separate dev setup, where you can do the desing and validation with a more recent toolbox.
    Hope this helps,
    Eric

  • No supported SOAP Port found to test. Please validate WSDL

    Hi I deployed a BPEL process.
    When I click Initiate link to test it .
    it shows above error ' No supported SOAP Port found to test. Please validate WSDL'
    Where I am doing wrong ?
    Thanks
    Praveen

    Hi This is my WSDL from BPEL console
    <?xml version="1.0" encoding="UTF-8" ?>
    - <definitions name="SyncItemEBIZProvBPELABCSImpl" targetNamespace="http://xmlns.oracle.com/ABCSImpl/EBIZ/Core/SyncItemEBIZProvBPELABCSImpl/V1" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://xmlns.oracle.com/ABCSImpl/EBIZ/Core/SyncItemEBIZProvBPELABCSImpl/V1" xmlns:itemabcs="http://xmlns.oracle.com/ABCSImpl/EBIZ/Core/SyncItemEBIZProvBPELABCSImpl/V1" xmlns:itemebo="http://xmlns.oracle.com/EnterpriseObjects/Core/EBO/Item/V1" xmlns:svcdoc="http://xmlns.oracle.com/Services/Documentation/V1" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:itemsvc="http://xmlns.oracle.com/EnterpriseServices/Core/Item/V1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:client="http://xmlns.oracle.com/ABCSImpl/EBIZ/Core/SyncItemEBIZProvBPELABCSImpl/V1" xmlns:itemabo="http://www.example.org/SyncItemPublicationInput">
    <import namespace="http://xmlns.oracle.com/EnterpriseServices/Core/Item/V1" location="http://ap6032fems.us.oracle.com:7831/AIAComponents/EnterpriseBusinessServiceLibrary/Core/Item/ItemEBS.wsdl" />
    - <types>
    - <xsd:schema targetNamespace="http://xmlns.oracle.com/ABCSImpl/EBIZ/Core/SyncItemEBIZProvBPELABCSImpl/V1" elementFormDefault="qualified" xmlns:itemabcs="http://xmlns.oracle.com/ABCSImpl/EBIZ/Core/Item/V1" xmlns:itemebo="http://xmlns.oracle.com/EnterpriseObjects/Core/EBO/Item/V1" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:svcdoc="http://xmlns.oracle.com/Services/Documentation/V1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:client="http://xmlns.oracle.com/SyncItemEBIZProvBPELABCSImpl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:itemabo="http://www.example.org/SyncItemPublicationInput">
    <xsd:import namespace="http://xmlns.oracle.com/EnterpriseObjects/Core/EBO/Item/V1" schemaLocation="http://ap6032fems.us.oracle.com:7831/AIAComponents/EnterpriseObjectLibrary/Release1/Core/EBO/Item/ItemEBM.xsd" />
    <xsd:import namespace="http://www.example.org/SyncItemPublicationInput" schemaLocation="http://ap6032fems.us.oracle.com:7831/AIAComponents/ApplicationObjectLibrary/EBiz/ApplicationInterfaces/Item/Schemas/ItemABM.xsd" />
    </xsd:schema>
    </types>
    - <message name="SyncItemResponseMessage">
    <part name="SyncItemPublicationConfirmation" element="itemebo:SyncItemPublicationConfirmationEBM" />
    </message>
    - <message name="SyncItemRequestMessage">
    <part name="SyncItemPublication" element="itemebo:SyncItemPublicationEBM" />
    </message>
    - <message name="SyncItemABMRequestMessage">
    <part name="Item" element="itemabo:item" />
    </message>
    - <message name="SyncItemABMResponseMessage">
    <part name="ItemStatus" element="itemabo:itemStatus" />
    </message>
    - <portType name="SyncItemEBIZProvBPELABCSImplCallback">
    - <operation name="onResult">
    <input message="tns:SyncItemResponseMessage" />
    </operation>
    </portType>
    - <portType name="SyncItemEBIZProvBPELABCSImpl">
    - <operation name="initiate">
    <input message="tns:SyncItemRequestMessage" />
    <output message="tns:SyncItemResponseMessage" />
    </operation>
    </portType>
    - <binding name="SyncItemEBIZProvBPELABCSImplCallbackBinding" type="tns:SyncItemEBIZProvBPELABCSImplCallback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="onResult">
    <soap:operation style="document" soapAction="onResult" />
    - <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle="" />
    <soap:body use="literal" />
    </input>
    </operation>
    </binding>
    - <binding name="SyncItemEBIZProvBPELABCSImplBinding" type="tns:SyncItemEBIZProvBPELABCSImpl">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="initiate">
    <soap:operation style="document" soapAction="initiate" />
    - <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle="" />
    <soap:body use="literal" />
    </input>
    - <output>
    <soap:body use="literal" />
    </output>
    </operation>
    </binding>
    - <service name="SyncItemEBIZProvBPELABCSImplCallbackService">
    - <port name="SyncItemEBIZProvBPELABCSImplCallbackPort" binding="tns:SyncItemEBIZProvBPELABCSImplCallbackBinding">
    <soap:address location="http://set.by.caller" />
    </port>
    </service>
    - <service name="SyncItemEBIZProvBPELABCSImplService">
    - <port name="SyncItemEBIZProvBPELABCSImplPort" binding="tns:SyncItemEBIZProvBPELABCSImplBinding">
    <soap:address location="http://set.by.caller" />
    </port>
    </service>
    - <plnk:partnerLinkType name="SyncItemEBIZProvBPELABCSImpl">
    - <plnk:role name="SyncItemEBIZProvBPELABCSImplProvider">
    <plnk:portType name="tns:SyncItemEBIZProvBPELABCSImpl" />
    </plnk:role>
    - <plnk:role name="SyncItemEBIZProvBPELABCSImplRequester">
    <plnk:portType name="tns:SyncItemEBIZProvBPELABCSImplCallback" />
    </plnk:role>
    </plnk:partnerLinkType>
    - <plnk:partnerLinkType name="ItemEBS_PL">
    - <plnk:role name="ItemEBS_Role">
    <plnk:portType name="itemsvc:ItemEBS" />
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>

  • ProviderException No service defined in the WSDL

    I use WebLogic 10.3.4 with JDeveloper 11g Release 1 and the current Oracle SOA Suite 11g.
    I can deploy a simple composite with a BPEL service. However, If I use my complex BPEL composite, I always get the following stack trace on deployment (it validates perfectly within the editor):
    <02.02.2011 10:38 Uhr MEZ> <Error> <oracle.integration.platform.blocks.deploy.se
    rvlet> <SOA-21537> <Fehlermeldung wird zur³ckgesendet: Fehler beim Deployment vo
    n Composite auf AdminServer: Deployment Failed: Service kann nicht registriert w
    erden...>
    INFO: SSLSocketFactoryManagerImpl.getKeystoreLocation Expected SOA Keystore loca
    tion: C:/dev/server/Ora11g/USER_P~1/domains/BASE_D~1/config/fmwconfig/default-ke
    ystore.jks
    INFO: SSLSocketFactoryManagerImpl.getSSLSocketFactory Cannot locate the default
    or configured keystore at C:/dev/server/Ora11g/USER_P~1/domains/BASE_D~1/config/
    fmwconfig/default-keystore.jks. However, the keystore and related parameters are
    used for composite-related SSL communications and not required if SSL communica
    tion is not used.
    <02.02.2011 10:39 Uhr MEZ> <Error> <oracle.integration.platform> <SOA-20003> <Se
    rvice kann nicht registriert werden.
    oracle.webservices.provider.ProviderException: oracle.webservices.provider.Provi
    derException: No service {http://lspi.wiai.uniba.de/prototype/wsdl/collaboration
    /SimpleUseCase/role-1/transaction/bta-1-bt-example/master/client/1-0}ToMonitorin
    g defined in the WSDL
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(Provider
    ConfigImpl.java:455)
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(Provider
    ConfigImpl.java:285)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addServi
    ce(FabricProviderConfig.java:115)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addServi
    ce(FabricProviderConfig.java:204)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingCompone
    nt.load(WebServiceEntryBindingComponent.java:171)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingCompone
    nt.load(WebServiceEntryBindingComponent.java:98)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnecti
    on.deployServices(CompositeDeploymentConnection.java:160)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnecti
    on.deploy(CompositeDeploymentConnection.java:91)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerI
    mpl.initDeployment(CompositeDeploymentManagerImpl.java:149)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerI
    mpl.load(CompositeDeploymentManagerImpl.java:62)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflecti
    on(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJo
    inpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
    ReflectiveMethodInvocation.java:149)
    at oracle.integration.platform.blocks.deploy.DeploymentEventPublisher.in
    voke(DeploymentEventPublisher.java:69)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
    ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynami
    cAopProxy.java:204)
    at $Proxy307.load(Unknown Source)
    at oracle.integration.platform.blocks.deploy.StandaloneCompositeDeployme
    ntCoordinatorImpl.coordinateCompositeDeployment(StandaloneCompositeDeploymentCoo
    rdinatorImpl.java:33)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor
    .deployNewComposite(BaseDeployProcessor.java:367)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor
    .deploySARs(BaseDeployProcessor.java:219)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eployWork(DeployProcessor.java:160)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eployWork(DeployProcessor.java:109)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eploy(DeployProcessor.java:96)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.pro
    cess(DeployProcessor.java:78)
    at oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerSe
    rvlet.doPostInsideLoggingSession(CompositeDeployerServlet.java:191)
    at oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerSe
    rvlet.doPost(CompositeDeployerServlet.java:114)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:31
    3)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUt
    il.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.jav
    a:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:1
    61)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:31
    3)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUt
    il.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.jav
    a:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:1
    61)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:13
    6)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.webservices.provider.ProviderException: No service {http://lsp
    i.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bt
    a-1-bt-example/master/client/1-0}ToMonitoring defined in the WSDL
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.getServiceName(Prov
    iderConfigImpl.java:624)
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(Provider
    ConfigImpl.java:346)
    at oracle.j2ee.ws.server.provider.ProviderConfigImpl.addService(Provider
    ConfigImpl.java:285)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addServi
    ce(FabricProviderConfig.java:115)
    at oracle.integration.platform.blocks.soap.FabricProviderConfig.addServi
    ce(FabricProviderConfig.java:204)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingCompone
    nt.load(WebServiceEntryBindingComponent.java:171)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingCompone
    nt.load(WebServiceEntryBindingComponent.java:98)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnecti
    on.deployServices(CompositeDeploymentConnection.java:160)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnecti
    on.deploy(CompositeDeploymentConnection.java:91)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerI
    mpl.initDeployment(CompositeDeploymentManagerImpl.java:149)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerI
    mpl.load(CompositeDeploymentManagerImpl.java:62)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflecti
    on(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJo
    inpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
    ReflectiveMethodInvocation.java:149)
    at oracle.integration.platform.blocks.deploy.DeploymentEventPublisher.in
    voke(DeploymentEventPublisher.java:69)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(
    ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynami
    cAopProxy.java:204)
    at $Proxy307.load(Unknown Source)
    at oracle.integration.platform.blocks.deploy.StandaloneCompositeDeployme
    ntCoordinatorImpl.coordinateCompositeDeployment(StandaloneCompositeDeploymentCoo
    rdinatorImpl.java:33)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor
    .deployNewComposite(BaseDeployProcessor.java:367)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor
    .deploySARs(BaseDeployProcessor.java:219)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eployWork(DeployProcessor.java:160)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eployWork(DeployProcessor.java:109)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eploy(DeployProcessor.java:96)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.pro
    cess(DeployProcessor.java:78)
    at oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerSe
    rvlet.doPostInsideLoggingSession(CompositeDeployerServlet.java:191)
    at oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerSe
    rvlet.doPost(CompositeDeployerServlet.java:114)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:31
    3)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUt
    il.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.jav
    a:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:1
    61)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:31
    3)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUt
    il.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.jav
    a:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:1
    61)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:13
    6)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
    va:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    <02.02.2011 10:39 Uhr MEZ> <Error> <ServletContext-/soa-infra> <BEA-000000> <Err
    or during deployment
    oracle.fabric.common.FabricException: Deployment Failed: Service kann nicht regi
    striert werden.
    at oracle.integration.platform.blocks.deploy.StandaloneCompositeDeployme
    ntCoordinatorImpl.coordinateCompositeDeployment(StandaloneCompositeDeploymentCoo
    rdinatorImpl.java:38)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor
    .deployNewComposite(BaseDeployProcessor.java:367)
    at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor
    .deploySARs(BaseDeployProcessor.java:219)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eployWork(DeployProcessor.java:160)
    at oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doD
    eployWork(DeployProcessor.java:109)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.fabric.common.FabricDeploymentException: Service kann nicht re
    gistriert werden. {rootCauses=[]}
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingCompone
    nt.load(WebServiceEntryBindingComponent.java:227)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingCompone
    nt.load(WebServiceEntryBindingComponent.java:98)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnecti
    on.deployServices(CompositeDeploymentConnection.java:160)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnecti
    on.deploy(CompositeDeploymentConnection.java:91)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerI
    mpl.initDeployment(CompositeDeploymentManagerImpl.java:149)
    Truncated. see log file for complete stacktrace
    >
    <02.02.2011 10:39 Uhr MEZ> <Error> <oracle.integration.platform.blocks.deploy.se
    rvlet> <SOA-21537> <Fehlermeldung wird zur³ckgesendet: Fehler beim Deployment vo
    n Composite auf AdminServer: Deployment Failed: Service kann nicht registriert w
    erden...>
    h1. Essentials parts of the Component.xml
    <reference name="SimpleUseCaserole1bta1btexampleMonitoring" ui:wsdlLocation="wsdl/SimpleUseCaserole1bta1btexampleMonitoring.wsdl">
    <interface.wsdl interface="http://lspi.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bta-1-bt-example/monitoring/1-0#wsdl.interface(SimpleUseCaserole1bta1btexampleMonitoringPortType)" />
    <binding.ws port="http://lspi.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bta-1-bt-example/monitoring/1-0#wsdl.endpoint(SimpleUseCaserole1bta1btexampleMonitoringService/SimpleUseCaserole1bta1btexampleMonitoringPort)" soapVersion="1.1"/>
    </reference>
    h1. Essential parts of the componentType
              <reference name="ToMonitoring" ui:wsdlLocation="wsdl/SimpleUseCaserole1bta1btexampleMonitoring.wsdl">
                   <interface.wsdl interface="http://lspi.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bta-1-bt-example/monitoring/1-0#wsdl.interface(SimpleUseCaserole1bta1btexampleMonitoringPortType)"/>
              </reference>     
    h1. the WSDL file
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
         xmlns="http://schemas.xmlsoap.org/wsdl/"
         name="SimpleUseCaserole1bta1btexampleMonitoringService"
         xmlns:tns="http://lspi.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bta-1-bt-example/monitoring/1-0"
         targetNamespace="http://lspi.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bta-1-bt-example/monitoring/1-0"
         xmlns:event="http://lspi.wiai.uniba.de/prototype/xsd/event/1-0"
         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
         xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"
         xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:header="http://lspi.wiai.uniba.de/prototype/xsd/header/1-0"
         >
    <types>
    <xsd:schema targetNamespace="http://lspi.wiai.uniba.de/prototype/wsdl/collaboration/SimpleUseCase/role-1/transaction/bta-1-bt-example/monitoring/1-0">
                   <xsd:import namespace="http://lspi.wiai.uniba.de/prototype/xsd/event/1-0" schemaLocation="xsd/Event.xsd"/>           
    </xsd:schema>
    </types>
    <message name="EventMessage">
    <part name="EventPart" element="event:Event"/>
    </message>
    <portType name="SimpleUseCaserole1bta1btexampleMonitoringPortType">
    <operation name="EventOperation">
    <input name="input1" message="tns:EventMessage"/>
    </operation>
    </portType>
    <binding name="SimpleUseCaserole1bta1btexampleMonitoringBinding" type="tns:SimpleUseCaserole1bta1btexampleMonitoringPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="EventOperation">
    <soap:operation/>
    <input name="input1">
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="SimpleUseCaserole1bta1btexampleMonitoringService">
    <port name="SimpleUseCaserole1bta1btexampleMonitoringPort" binding="tns:SimpleUseCaserole1bta1btexampleMonitoringBinding">
    <soap:address location="http://localhost:8091/ode/processes/SimpleUseCaserole1bta1btexampleMonitoringService"/>
    </port>
    </service>
         <plnk:partnerLinkType name="SimpleUseCaserole1bta1btexampleMonitoring">
         <plnk:role name="SimpleUseCaserole1bta1btexampleMonitoringPortTypeRole" portType="tns:SimpleUseCaserole1bta1btexampleMonitoringPortType"/>
         </plnk:partnerLinkType>
    </definitions>
    Edited by: user2595377 on 02.02.2011 01:46

    there is a text table defined for FAGL_SEGM. Start SE11, display the table and menu: GoTo => text table

Maybe you are looking for

  • Ipod nano 4gb problem

    hi all i came here cause i have a problem with mi ipod nano 3rd gen mi screen its freeze but when i reset the ipod i can hear 2 beeps and the same white screen, i can listen to my music but i see a white screen i can do everything normal but with a w

  • Free Songs

    How do you get free songs the only way i know how is to go to itunes and click the free download of the week but i want more not just one once every 2-1 weeks any1 know how?

  • Scroll bars for this code...

    Hai All, Here is the problem i am placing .. when ever there are no.of records to display i want to put the scroll bars to view.... and i am adding my code ... can any one please give me the solution how to add vertical scroll bar to this code.... im

  • ERS settlement - GR based invoice verification

    I have a problem. I have a PO for 20000. GR done for 10000.Invoicing done for 10000. Now for this vendor ERS activated. But in PO I cannot activate GR based Inv verfication because its grayed out.The  is SPRO config. I cannot change it. Is there any

  • Best way to manage global application data

    Hello, I'm looking for the best way to manage my global application data. I have a program containing about 70 application settings which are loaded from an ini file and organised as clusters and loose variables. I want to be able to use these settin