11G: Error invoking adf-binding service in composite with JAVA API

Hello,
i'm trying to invoke a asyncrhonous composite via JAVA API. My composite has two services: WS and ADF-BC SERVICE both of two are wired with a MEDIATOR that connects with two BPEL Process depending on two rules.
I need to invoke a process depending of the input: if the input is A i invoke the process 1 and if the input is B I invoke the process 2. I use the Mediator instead of switch because it's an example in order to build a complex decission system then.
R1 and R2 are two static rules in the Mediator.
R1 = $in.payload/client:process/client:tiposiniestro = 'A'
R2 = $in.payload/client:process/client:tiposiniestro = 'B'
And my XSD is:
<schema attributeFormDefault="unqualified"
     elementFormDefault="qualified"
     targetNamespace="http://xmlns.oracle.com/POC_jws/ProcesoApertura/ProcesoApertura"
     xmlns="http://www.w3.org/2001/XMLSchema">
<element name="process">
          <complexType>
               <sequence>
                    <element name="tiposiniestro" type="string"/>
               </sequence>
          </complexType>
     </element>
     <element name="processResponse">
          <complexType>
               <sequence>
                    <element name="result" type="string"/>
               </sequence>
          </complexType>
     </element>
</schema>
If i invoke with SOAP, sending the message:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
     <soap:Body xmlns:ns1="http://xmlns.oracle.com/POC_jws/ProcesoApertura/ProcesoApertura">
          <ns1:process>
               <ns1:tiposiniestro>A</ns1:tiposiniestro>
</ns1:process>
</soap:Body>
</soap:Envelope>
the composite works. But if i try to invoke with JAVA, with the code:
String payload5 = "<process xmlns=\"http://xmlns.oracle.com/POC_jws/ProcesoApertura/ProcesoApertura\">" +
     "     <tiposiniestro>A</tiposiniestro>" +
     "</process>";
String conversationId = UUID.randomUUID().toString();
NormalizedMessage nm = new NormalizedMessageImpl();
nm.addProperty(NormalizedMessage.PROPERTY_CONVERSATION_ID, conversationId);
Map<String,Object> payload = nm.getPayload();
payload.put("payload", pPayLoad);
nm.setPayload(payload);
service.post(pOperation, nm);
i get the following error:
Caused by: java.lang.ClassCastException: java.lang.String cannot be cast to org.w3c.dom.Element
How can I send the message via JAVA API using the mediator in my composite?
Is there any important difference in the format between send a request with SOAP or JAVA?
Thanks in advance.
Edited by: user7239022 on 05-ene-2010 7:38
Edited by: user7239022 on 05-ene-2010 7:40
Edited by: user7239022 on 05-ene-2010 7:49
Edited by: user7239022 on 05-ene-2010 8:41

Talking about the dynamic rules in the Mediator, Oracle documentation says:
"As of now, only SOAP bindings are supported. There is a dummy SOAP binding in the composite.xml file. This endpoint is overridden by Mediator in runtime through NM property. So, outbound services can be called only over SOAP."
Is it valid for static rules as well? I means, how can i use Java API to invoke a Composite with a Mediator as first element? I always get the message:
+"java.lang.ClassCastException: java.lang.String cannot be cast to org.w3c.dom.Element"+
Thanks again

Similar Messages

  • 'owspe:PolicyAccess' error while invoking ADF BC Service Interface

    Hi,
       I have deployed a custom ADF BC Service Interface application to a standalone weblogic server. On invoking the service interface i get the following error in response.
    <env:Envelope
      xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
      <env:Fault
        xmlns:owspe="http://schemas.oracle.com/ws/policy-enforcement-2007-06">
       <faultcode>owspe:PolicyAccess</faultcode>
       <faultstring>PolicySet Invalid: WSM-02557 oracle.wsm.policymanager.accessor.BeanAccessor The documents required to configure the Oracle Web Services Manager runtime have not been retrieved from the Policy Manager application (wsm-pm), possibly because the application is not running or has not been deployed in the environment. The query "&(@appliesTo~="WS-Service()")(policysets:global/%)" is queued for later retrieval. </faultstring>
       <faultactor/>
      </env:Fault>
    </env:Body>
    </env:Envelope>
    I have deployed the same .ear file to my local weblogic server and got no error while invoking the WS.
    Please suggest if any configuration needs to be done at weblogic server or to the ADF application.
    Regards,
    Himanshu

    Hi Timo,
               No Luck.. Still getting same error. My ADF BC Custom Service Interface deployed on integrated weblogic server works fine.When i deploy the same EAR to Standalone weblogic server then i'm getting following error on invoking WS method.
    <env:Envelope
      xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
      <env:Fault
        xmlns:owspe="http://schemas.oracle.com/ws/policy-enforcement-2007-06">
       <faultcode>owspe:PolicyAccess</faultcode>
       <faultstring>PolicySet Invalid: WSM-02557 oracle.wsm.policymanager.accessor.BeanAccessor The documents required to configure the Oracle Web Services Manager runtime have not been retrieved from the Policy Manager application (wsm-pm), possibly because the application is not running or has not been deployed in the environment. The query "&(@appliesTo~="WS-Service()")(policysets:global/%)" is queued for later retrieval. WSM-02557 oracle.wsm.policymanager.accessor.BeanAccessor The documents required to configure the Oracle Web Services Manager runtime have not been retrieved from the Policy Manager application (wsm-pm), possibly because the application is not running or has not been deployed in the environment. The query "/policies/oracle/wss_http_token_service_policy" is queued for later retrieval. </faultstring>
       <faultactor/>
      </env:Fault>
    </env:Body>
    </env:Envelope>
    Could it be related to some Security: Roles or policies ?
    Regards,
    Himanshu

  • Error invoking SSL web service using pl sql UTL_HTTP

    Web Services Gurus,
    I am invoking a secure web service based on the following WSDL file from a pl/sql program using UTL_HTTP package.
    The web service is secure and prompts for authentication.
    The web services certificate is imported in Oracle Wallet on Database Server.
    I am listing the WSDL file, the pl/sql code and error message as follows -
    1. The WSDL file -
    <definitions
    name="Webservice"
    targetNamespace="http://webservice.airclic.com/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://webservice.airclic.com/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    >
    <types>
    <xs:schema targetNamespace="http://webservice.airclic.com/" version="1.0" xmlns:tns="http://webservice.airclic.com/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="Exception" type="tns:Exception"/>
    <xs:element name="sendAuthenticationResponse" type="tns:sendAuthenticationResponse"/>
    <xs:element name="sendAuthenticationResponseResponse" type="tns:sendAuthenticationResponseResponse"/>
    <xs:complexType name="AuthenticationResponse">
    <xs:complexContent>
    <xs:extension base="tns:Response">
    <xs:sequence>
    <xs:element name="success" type="xs:boolean"/>
    <xs:element name="username" type="xs:string"/>
    <xs:element minOccurs="0" name="password" type="xs:string"/>
    <xs:element minOccurs="0" name="firstName" type="xs:string"/>
    <xs:element minOccurs="0" name="lastName" type="xs:string"/>
    <xs:element minOccurs="0" name="email" type="xs:string"/>
    <xs:element minOccurs="0" name="active" type="xs:boolean"/>
    <xs:element minOccurs="0" name="timeZone" type="xs:string"/>
    <xs:element minOccurs="0" name="group" type="xs:string"/>
    <xs:element minOccurs="0" name="role" type="xs:string"/>
    <xs:element minOccurs="0" name="errorCode" type="xs:string"/>
    <xs:element minOccurs="0" name="errorMessage" type="xs:string"/>
    </xs:sequence>
    </xs:extension>
    </xs:complexContent>
    </xs:complexType>
    <xs:complexType name="DispatchEvent"></xs:complexType>
    <xs:complexType name="sendAuthenticationResponse">
    <xs:sequence>
    <xs:element minOccurs="0" name="authenticationResponse" type="tns:AuthenticationResponse"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="sendAuthenticationResponseResponse">
    <xs:sequence/>
    </xs:complexType>
    <xs:simpleType name="status"></xs:simpleType>
    <xs:simpleType name="source"></xs:simpleType>
    <xs:simpleType name="eventType"></xs:simpleType>
    </xs:schema>
    </types>
    <message name="Webservice_sendAuthenticationResponse">
    <part name="sendAuthenticationResponse" element="tns:sendAuthenticationResponse"/>
    </message>
    <message name="Webservice_sendAuthenticationResponseResponse">
    <part name="sendAuthenticationResponseResponse" element="tns:sendAuthenticationResponseResponse"/>
    </message>
    <portType name="Webservice">
    <operation name="sendAuthenticationResponse" parameterOrder="sendAuthenticationResponse">
    <input message="tns:Webservice_sendAuthenticationResponse"/>
    <output message="tns:Webservice_sendAuthenticationResponseResponse"/>
    <fault name="Exception" message="tns:Exception"/>
    </operation>
    </portType>
    <binding name="WebserviceBinding" type="tns:Webservice">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="sendAuthenticationResponse">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    <fault name="Exception">
    <soap:fault name="Exception" use="literal"/>
    </fault>
    </operation>
    </binding>
    <service name="Webservice">
    <port name="WebservicePort" binding="tns:WebserviceBinding">
    <soap:address location="https://host.airclic.com:443/webservice/product/fieldservice/v1/Webservice"/>
    </port>
    </service>
    </definitions>
    2. The pl/sql code that calls the web service operation sendAuthenticationResponse
    procedure send_auth_response
    as
    soap_request varchar2(30000);
    soap_respond varchar2(30000);
    http_req utl_http.req;
    http_resp utl_http.resp;
    resp XMLType;
    i integer;
    begin
    -- initiate wallet for AirClic certificate
    dbms_output.put_line ('1');
    utl_http.set_wallet('file:/etc/oracle/wallet','<wallet password>');
    -- create soap request
    dbms_output.put_line ('2');
    soap_request:= '<?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>
    <ns1:sendAuthenticationResponse xmlns="https://host.airclic.com:443/webservice/product/fieldservice/v1/Webservice" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <success xsi:type="xsd:boolean">true</success>
    <username xsi:type="xsd:string">changlanih</username>
    <password xsi:type="xsd:string">abcd1234</password>
    <firstName xsi:type="xsd:string">hero</firstName>
    <lastName xsi:type="xsd:string">changlani</lastName>
    <email xsi:type="xsd:string">[email protected]</email>
    <active xsi:type="xsd:boolean">true</active>
    <timeZone xsi:type="xsd:string">eastern</timeZone>
    <group xsi:type="xsd:string">Northeast</group>
    <role xsi:type="xsd:string">Service Manager</role>
    <errorCode xsi:type="xsd:string"></errorCode>
    <errorMessage xsi:type="xsd:string"></errorMessage>
    </ns1:sendAuthenticationResponse>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>';
    -- request that exceptions are raised for error Status Codes
    dbms_output.put_line ('3');
    utl_http.set_response_error_check (true);
    -- allow testing for exceptions like UTL_HTTP.http_server_error
    dbms_output.put_line ('4');
    utl_http.set_detailed_excp_support (true);
    --utl_http.set_transfer_timeout (ln_time_out);
    dbms_output.put_line ('5');
    utl_http.set_body_charset ('UTF-8');
    -- begin request
    dbms_output.put_line ('5.5');
    http_req:= utl_http.begin_request
    ('https://host.airclic.com:443/webservice/product/fieldservice/v1/Webservice/sendAuthenticationResponse', ------ is the url correct here ?
    'POST',
    'HTTP/1.1'
    dbms_output.put_line ('6');
    utl_http.set_authentication(http_req, '<username for webservice>', '<password for webservice user>');
    dbms_output.put_line ('7');
    utl_http.set_persistent_conn_support (http_req, false);
    dbms_output.put_line ('8');
    utl_http.set_header(http_req, 'Content-Type', 'text/xml'); -- since we are dealing with plain text in XML documents
    dbms_output.put_line ('9');
    utl_http.set_header(http_req, 'Content-Length', length(soap_request));
    dbms_output.put_line ('10');
    utl_http.set_header(http_req, 'SOAPAction', ''); -- required to specify this is a SOAP communication
    dbms_output.put_line ('11');
    utl_http.write_text(http_req, soap_request);
    dbms_output.put_line ('12');
    http_resp := utl_http.get_response(http_req);
    -- debug messages
    DBMS_OUTPUT.PUT_LINE('-------utl_http.get_response---------------------');
    DBMS_OUTPUT.PUT_LINE('http_resp.status_code is :'||http_resp.status_code );
    DBMS_OUTPUT.PUT_LINE('http_resp.reason_phrase is :'||http_resp.reason_phrase);
    DBMS_OUTPUT.PUT_LINE('http_resp.http_version is :'||http_resp.http_version);
    DBMS_OUTPUT.PUT_LINE('http_resp.private_hndl is :'||http_resp.private_hndl);
    DBMS_OUTPUT.PUT_LINE('-------utl_http.get_response----------------------');
    utl_http.read_text(http_resp, soap_respond);
    dbms_output.put_line ('13');
    utl_http.end_response(http_resp);
    dbms_output.put_line ('14');
    resp := XMLType.createXML(soap_respond);
    dbms_output.put_line ('15');
    resp := resp.extract('/soap:Envelop/soap:Body/child::node()',
    'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"');
    i:=0;
    dbms_output.put_line ('16');
    loop
    dbms_output.put_line(substr(soap_respond, 1 + i * 255, 250));
    i := i + 1;
    if (i * 250) > length(soap_respond) then
    exit;
    end if;
    end loop;
    exception
    when utl_http.request_failed then
    dbms_output.put_line('request failed: ' || utl_http.get_detailed_sqlerrm);
    when utl_http.http_server_error then
    dbms_output.put_line('server error: ' || utl_http.get_detailed_sqlerrm);
    when utl_http.http_client_error then
    dbms_output.put_line('client error: ' || utl_http.get_detailed_sqlerrm);
    when others then
    dbms_output.put_line(sqlerrm);
    end send_auth_response;
    3. Output when I run the send_auth_response procedure
    Connecting to the database cpdev.
    1
    2
    3
    4
    5
    5.5
    ORA-12560: TNS:protocol adapter error
    Process exited.
    Disconnecting from the database cpdev.
    Comments -
    The web service operation only has input message. The input message consists of a complex type as seen in WSDL.
    Questions -
    1. This is my first attempt in invoking a web service from pl/sql program. Is the code in SOAP body correct as mapped to the complex type in WSDL ?
    2. As seen from the dbms_out - the last message before ORA-12560 is 5.5, that means the call is erroring at following code line -
    http_req:= utl_http.begin_request ------ what am I doing wrong here ?
    3. The web service is SSL as seen from WSDLand needs a username/password for access - which is being performed by following code line -
    utl_http.set_authentication(http_req, '<username for webservice>', '<password for webservice user>'); ------- is that correct ?
    4. I am not using any proxy server - should I be using it ? When is it necessary to use proxy ?
    Appreciate any help.
    Thanx.

    Oracle is hosted by HOST A - this is where the pl/sql program resides.
    The Web Service being accessed by pl/sql program is hosted by HOST B and there are 4 firewalls in between.
    Oracle was not even able to establish connection to web services host.
    Escalated the issue with networking folks and they resolved the connectivity problem.
    Hope that helps.

  • Error in ADF Web Service Connection

    Hello everyone.
    I have the following problem.
    Create a "Web Services Proxy" to consume a Web Services outside the application.
    Web services require authentication and create a Web ADF Services Connection to authenticate, but when you programmatically use the ADF Web Service Connection I get the following error:
    java.lang.NullPointerException
         at java.lang.Class.isAssignableFrom(Native Method)
         at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:97)
         at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:118)
         at oracle.j2ee.ws.common.jaxws.runtime.OperationMappingModeler.processParameters(OperationMappingModeler.java:268)
         at oracle.j2ee.ws.common.jaxws.runtime.OperationMappingModeler.processMethod(OperationMappingModeler.java:155)
         at oracle.j2ee.ws.common.jaxws.runtime.ServiceEndpointRuntimeModeler.buildRuntimeModel(ServiceEndpointRuntimeModeler.java:114)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.getRuntimeMetadata(WsClientProxyFactory.java:69)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.createProxy(WsClientProxyFactory.java:126)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.createProxy(WsClientProxyFactory.java:106)
         at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:219)
         at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:249)
         at oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl.getJaxWSPort(WebServiceConnectionImpl.java:399)
         at edu.esade.portal.wsclient.wordpress.WordPressCliente.getDatosBlogsBndQSService(WordPressCliente.java:62)
         at edu.esade.portal.wsclient.wordpress.WordPressCliente.getDatosBlogsPortClient(WordPressCliente.java:86)
         at edu.esade.portal.wsclient.wordpress.WordPressCliente.getBlogs(WordPressCliente.java:105)
         at edu.esade.portal.wsclient.wordpress.WordPressCliente.main(WordPressCliente.java:167)
    The code I use to get the connection is:
    private DatosBlogsBndQSService getDatosBlogsBndQSService () {
    Context ctx;
    try {
    ctx = ADFContext.getCurrent().getConnectionsContext();
    WebServiceConnection wsc = (WebServiceConnection) ctx.lookup("DatosBlogsBndQSService");
    System.out.println("wsc:"+wsc.toString());
    DatosBlogsBndQSService proxy = wsc.getJaxWSPort(DatosBlogsBndQSService.class); // line 62
    return proxy;
    } catch (NamingException e) {
    e.printStackTrace();
    return null;
    Finalmente la configuración del recurso es:
    <Reference name="DatosBlogsBndQSService" className="oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl" credentialStoreKey="DatosBlogsBndQSService" xmlns="">
    <Factory className="oracle.adf.model.connection.webservice.api.WebServiceConnectionFactory"/>
    <RefAddresses>
    <XmlRefAddr addrType="WebServiceConnection">
    <Contents>
    <wsconnection description="URL-XXX" service="{URL-XXX}DatosBlogsBndQSService">
    <model name="{URL-XXX}DatosBlogsBndQSService" xmlns="http://oracle.com/ws/model">
    <service name="{URL-XXX}DatosBlogsBndQSService">
    <port name="DatosBlogsBndQSPort" binding="{URL-XXX}DatosBlogsBnd">
    <soap username="transportUserName" password="transportPassword" addressUrl="URL-XXX" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
    <operation name="consultarPosts">
    <soap soapAction="URL-XXX" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
    <output name=""/>
    <input name=""/>
    </operation>
    <operation name="listarBlogs">
    <soap soapAction="URL-XXX" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
    <output name=""/>
    <input name=""/>
    </operation>
    </port>
    </service>
    </model>
    </wsconnection>
    </Contents>
    </XmlRefAddr>
    <SecureRefAddr addrType="transportPassword"/>
    <SecureRefAddr addrType="transportUserName"/>
    </RefAddresses>
    </Reference>
    When the Web Service did not require authentication to work without problem, the error arises when you need to login and use the "ADF Web Services Connection", is there some other way to log in using the Web Service proxy client directly?
    Any help is welcome.
    Regards.
    Marcelo

    Hi Shay.
    I not use Web service data control, I use only Web Service proxy and the client class for populate data to view object programmatically.
    However, in a test class do I have this:
    public class WordPressCliente {
    private final static Logger logger = Logger.getLogger(WordPressCliente.class);
    public WordPressCliente() {
    super();
    private DatosBlogsBndQSService getDatosBlogsBndQSService () {
    Context ctx;
    try {
    ctx = ADFContext.getCurrent().getConnectionsContext();
    WebServiceConnection wsc = (WebServiceConnection) ctx.lookup("DatosBlogsBndQSService");
    System.out.println("wsc:"+wsc.toString());
    DatosBlogsBndQSService proxy = wsc.getJaxWSPort(DatosBlogsBndQSService.class);
    return proxy;
    } catch (NamingException e) {
    e.printStackTrace();
    return null;
    private DatosBlogsPT getDatosBlogsPortClient() throws Exception {
    URL baseUrl = DatosBlogsBndQSService.class.getResource(".");
    URL url = new URL(baseUrl,ArchivoUtil.getInstance().getPropiedad("ws.integracion.wordpress"));
    QName qName = new QName("http://esade.edu/soa/servicio/DatosBlogs/v01_00","DatosBlogsBndQSService");
    System.setProperty("http.username", "atsistemas");
    System.setProperty("http.password", "atsistemas2011");
    DatosBlogsBndQSService integracionWordpress = new DatosBlogsBndQSService(url,qName);
    DatosBlogsPT wordpressPT = integracionWordpress.getDatosBlogsBndQSPort();
    if (ArchivoUtil.getInstance().getPropiedad("ws.integracion.wordpress.autenticacion").equals("true")) {
    System.out.println("hay que validar el WS");
    BindingProvider bp = (BindingProvider)wordpressPT;
    bp.getRequestContext().put(BindingProvider.USERNAME_PROPERTY, ArchivoUtil.getInstance().getPropiedad("ws.integracion.wordpress.usuario"));
    bp.getRequestContext().put(BindingProvider.PASSWORD_PROPERTY, ArchivoUtil.getInstance().getPropiedad("ws.integracion.wordpress.clave"));
    DatosBlogsPT wordpressPT = getDatosBlogsBndQSService().getDatosBlogsBndQSPort();
    return wordpressPT;
    private DatosItemsPT getDatosItemsPortClient() throws Exception {
    DatosItemsBndQSService datosItems = new DatosItemsBndQSService();
    DatosItemsPT itemsPT = datosItems.getDatosItemsBndQSPort();
    if (ArchivoUtil.getInstance().getPropiedad("ws.integracion.items.autenticacion").equals("true")) {
    BindingProvider bp = (BindingProvider)itemsPT;
    bp.getRequestContext().put(BindingProvider.USERNAME_PROPERTY, ArchivoUtil.getInstance().getPropiedad("ws.integracion.wordpress.usuario"));
    bp.getRequestContext().put(BindingProvider.PASSWORD_PROPERTY, ArchivoUtil.getInstance().getPropiedad("ws.integracion.wordpress.clave"));
    return itemsPT;
    public List<Blog> getBlogs() throws Exception {
    List<Blog> lista = null;
    try {
    DatosBlogsPT cliente = getDatosBlogsPortClient();
    FiltroBlogs filtroBlog = new FiltroBlogs();
    ListarBlogsInput blogInput = new ListarBlogsInput();
    HeaderESADE header = new HeaderESADE();
    header.setUsernameESADE("");
    header.setParentSOAComponent("");
    blogInput.setFiltroBlogs(filtroBlog);
    lista = cliente.listarBlogs(blogInput,header).getBlogs().getBlog();
    } catch (ClientTransportException e) {
    logger.error(e.getStackTrace());
    e.printStackTrace();
    ADFUtils.showMessage(Constantes.TITULO_01, Constantes.MENSAJE_01);
    return lista;
    public List<Post> getPostsPorBlog(String idBlog) throws Exception {
    List<Post> lista = null;
    try {
    DatosBlogsPT cliente = getDatosBlogsPortClient();
    ConsultarPostsInput postInput = new ConsultarPostsInput();
    FiltroPosts filtroPost = new FiltroPosts();
    HeaderESADE header = new HeaderESADE();
    filtroPost.setBlogId(new Long(idBlog).longValue());
    filtroPost.setFechaInicio(FechaUtil.getFecha());
    filtroPost.setFechaFin(null);
    header.setUsernameESADE("");
    header.setParentSOAComponent("");
    lista = cliente.consultarPosts(postInput,header).getPosts().getPost();
    } catch (ClientTransportException e) {
    logger.error(e.getStackTrace());
    ADFUtils.showMessage(Constantes.TITULO_01, Constantes.MENSAJE_01);
    return lista;
    public static void main(String[] args) {
    WordPressCliente wordPressCliente = new WordPressCliente();
    try {
    Iterator i = wordPressCliente.getBlogs().iterator();
    while (i.hasNext()) {
    Blog blog = (Blog)i.next();
    logger.debug("Blog Id:" + blog.getId() + " url:" + blog.getUrl() + " nombre:" + blog.getNombre() + " publico:" + blog.isPublico() + " lang:" + blog.getLang());
    try {
    Iterator j = wordPressCliente.getPostsPorBlog(Long.toString(blog.getId())).iterator();
    while (j.hasNext()) {
    Post post = (Post)j.next();
    logger.debug(" Post Id:" + post.getId() + " autor:" + post.getAutor() + " titulo:" + post.getTitulo() + " size ambitos:" + post.getAmbitos().getAmbito().size() +
    " tags:" + post.getTags());
    } catch (Exception e) {
    e.printStackTrace();
    } catch (Exception e) {
    e.printStackTrace();
    }

  • Have Error invoking SSL web service using pl sql procedure

    Hi All,
    Please any one can tell where i am going wrong,in calling ssl soa web service from plsql procedure.
    Below steps i followed ssl configure in soa server
    1- For configuring ssl in soa 11g, i am going to weblogic console->environment-> servers-> soa_server1-> check ssl box of port 8002.
    2- restart the server.
    3- One process i devloped, deployed in em console, while trying to acces the service with 8002 port, i need to use https://servicepath.
    Is there is any problem in the above approch for configuring ssl in soa server.
    Now coming to the procedure part, in below i given the deatails
    DECLARE
    HTTP_REQ UTL_HTTP.REQ;
    HTTP_RESP UTL_HTTP.RESP;
    URL_TEXT VARCHAR2(32767);
    lv_process_xml_body varchar2(4000);
    BEGIN
    DBMS_OUTPUT.ENABLE(1000000);
    lv_process_xml_body:='<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body xmlns:ns1="http://xmlns.oracle.com/SOA_RND_jws/Sample/DemoBPELProcess">
              <ns1:process>
                   <ns1:input></ns1:input>
    </ns1:process>
    </soap:Body>
    </soap:Envelope>';
    UTL_HTTP.SET_WALLET('file:/db/oracle/app/oradb/product/11.2.0/dbhome_1/bin/client', 'abcd123');
    HTTP_REQ := UTL_HTTP.BEGIN_REQUEST('https://172.28.40.20:8002/soa-infra/services/Client/Sample/demobpelprocess_client_ep', 'POST' , 'HTTP/1.0');
    UTL_HTTP.set_header(http_req, 'Content-Type', 'text/xml');
    UTL_HTTP.set_header(http_req, 'Content-Length', LENGTH(lv_process_xml_body));
    UTL_HTTP.SET_HEADER(HTTP_REQ, 'SOAPAction', 'process');
    UTL_HTTP.write_text(http_req, lv_process_xml_body);
    HTTP_RESP := UTL_HTTP.GET_RESPONSE(HTTP_REQ);
    UTL_HTTP.END_RESPONSE(HTTP_RESP);
    dbms_output.put_line('success');
    exception
    when others then
    dbms_output.put_line(sqlerrm);
    END;
    But i am getting the error, unable to open the file
    Regarding certificate i have taken from the browser while running the above soa service in browser with 8002 port.
    Please let me know where i am doing wrong...
    Please if some one knows about steps ...... to do it to work
    Its urgent please help me out on this
    Thanks
    Dillip
    Edited by: 903915 on Dec 21, 2011 9:51 PM
    Edited by: 903915 on Dec 21, 2011 10:11 PM

    Oracle is hosted by HOST A - this is where the pl/sql program resides.
    The Web Service being accessed by pl/sql program is hosted by HOST B and there are 4 firewalls in between.
    Oracle was not even able to establish connection to web services host.
    Escalated the issue with networking folks and they resolved the connectivity problem.
    Hope that helps.

  • Error invoking a web service within another web service

    Hi all!
    I have to develop a web service which needs to invoke another web service, thus the first web service is acting as a client of the second one. To get this, the first web service uses the proxy provided by the home page of the second one. However, when the first service invokes the second service, the body within the soap message is modified in such a way that it is not valid for the second service, because some namespaces declarations are added, in spite of the fact that they already exist. Then, I find the following:
    Body of the SOAP request created by the first web service:
    <a:request attribute1="urn:attribute:one"
    xmlns:a="urn:namespace:one" xmlns:b="urn:namespace:two">
    <b:body>Hello</b:body>
    </a:request>
    Body of the SOAP request received by the second web service:
    <a:request xmlns:a="urn:namespace:one"
    attribute1="urn:attribute:one"
    xmlns:a="urn:namespace:one" xmlns:b="urn:namespace:two">
    <b:body xmlns:b="urn:namespace:two">Hello</b:body>
    </a:request>
    I have also tried to run a client using this proxy outside the web service, and everything is ok. So, from my point of view, the problem is when running the proxy inside a web service. I wonder if I have to do something special with this proxy in order to use it within a web service.
    Has anybody run into this situation?
    Could anybody be so kind as to tell me how to solve it or if, on the contrary, it is an oc4j bug, please?
    Thank you very much in advance.
    Inma.

    Hi,
    Thanx it is working now.
    BTW can you give me some urls with info of this kind of setting which i need to do for other kind of integarions in J2EE platform.Sorry if i am asking too much as i am a starter in this technology.

  • Error in Adobe Document Services on Sneak Preview Java 2004s

    Hi,
    I installed Sneak Preview NW2004s and installed the credentials for Adobe Document Services as per the configuration guide.
    When i test the Web Service, i get the version info and the response
    Required stream: "PDFDocument" not found
    In the logs i get:
    1.5#0013D486EEA90054000001B2000006A0000417BBB764A829#1151994909991#com.sap.engine.services.httpserver##com.sap.engine.services.httpserver#Guest#0#####SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#/System/Server#Plain###User Guest, IP address HTTP request processing failed. HTTP error [401] will be returned. The error is [No login module succeeded.No details available].##1.5#0013D486EEA9005000000871000006A0000417BBB7B07DAE#1151994914960#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#79#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffff8c]####J-Integra for .NET TP Thread 2##0#0#Error#1#/System/Server#Plain###Required stream: "PDFDocument" not found.##1.5#0013D486EEA9005000000873000006A0000417BBB7B07F17#1151994914960#com.adobe.AdobeDocumentServicesWorker#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#79#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffff8c]####J-Integra for .NET TP Thread 2##0#0#Error#1#/System/Server#Plain###Required stream: "PDFDocument" not found.#
    On the client PC i have installed Adobe Reader 7.0.7 and xACF for NW04s.
    When i test the sample Apllication for Interactive forms
    http://localhost:50100/webdynpro/dispatcher/local/TutWD_OnlineInteractiveForm/OnlineInteractiveFormApp
    I get a page with a blue screen in place of the Travel request Form with the message "I am the ACF Control"
    In the logs i get:
    0}#1#org.omg.CORBA.BAD_PARAM: Not found ServiceContext with id=0  vmcid: OMG  minor code: 26 completed: Maybe     at com.sap.engine.services.iiop.internal.giop.ClientRequest.get_reply_service_context(ClientRequest.java:284)     at com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor.receive_reply(ClientJTSInterceptor.java:91)     at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:133)     at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:125)     at com.sap.engine.services.iiop.server.portable.Delegate.invoke(Delegate.java:282)     at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:457)     at com.adobe.service._ControlAgentStub.newRequestHandler(_ControlAgentStub.java:42)     at com.adobe.service.ProcessResource.allocateConnection(ProcessResource.java:569)     at com.adobe.service.ConnectionResource.getConnection(ConnectionResource.java:39)     at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactoryManagerPeerImpl.java:106)     at com.adobe.ads.request.RemoteRenderer.initializeFactory(RemoteRenderer.java:473)     at com.adobe.ads.request.RemoteRenderer.renderAllRemote(RemoteRenderer.java:158)     at com.adobe.ads.request.RemoteRenderer.renderAll(RemoteRenderer.java:102)     at com.adobe.ads.request.RemoteRenderer.renderAll(RemoteRenderer.java:114)     at com.adobe.ads.request.Renderer.renderWithoutCache(Renderer.java:492)     at com.adobe.ads.request.Renderer.execute(Renderer.java:433)     at com.adobe.BaseADSRequest.doWork(BaseADSRequest.java:111)     at com.adobe.AdobeDocumentServicesWorker.processRender(AdobeDocumentServicesWorker.java:1142)     at com.adobe.AdobeDocumentServicesWorker.execute(AdobeDocumentServicesWorker.java:598)     at com.adobe.AdobeDocumentServicesEJB.processRequest(AdobeDocumentServicesEJB.java:130)     at com.adobe.AdobeDocumentServicesEJB.rpData(AdobeDocumentServicesEJB.java:108)     at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:324)     at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)     at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)     at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)     at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)     at SoapServlet.doPost(SoapServlet.java:51)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)     at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)     at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)     at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)     at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)     at java.security.AccessController.doPrivileged(Native Method)     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)[/code]
    And many more similar to this one.
    After Activating the trace for Adobe i get the trace as:
    #1.5#0013D486EEA90054000001B7000006A0000417BC293C813F#1151996819977#com.sap.engine.services.httpserver##com.sap.engine.services.httpserver#Guest#0#####SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#/System/Server#Plain###User Guest, IP address HTTP request processing failed. HTTP error [401] will be returned. The error is [No login module succeeded.No details available].##1.5#0013D486EEA90053000002F1000006A0000417BC2998B0C6#1151996826009#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#82#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffac]####SAPEngine_Application_Thread[impl:3]_11##0#0#Info##Plain###Non-secure Adobe Document Services request received.##1.5#0013D486EEA90053000002F4000006A0000417BC2998B389#1151996826009#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#82#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffac]####SAPEngine_Application_Thread[impl:3]_11##0#0#Debug##Plain###Check if IIOP service is running.##1.5#0013D486EEA90053000002F5000006A0000417BC2998B41A#1151996826009#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#82#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffac]####SAPEngine_Application_Thread[impl:3]_11##0#0#Debug##Plain###IIOP service is running##1.5#0013D486EEA90053000002F8000006A0000417BC2998B699#1151996826009#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#82#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffac]####SAPEngine_Application_Thread[impl:3]_11##0#0#Error#1#/System/Server#Plain###Required stream: "PDFDocument" not found.##1.5#0013D486EEA90053000002FA000006A0000417BC2998B81F#1151996826009#com.adobe.AdobeDocumentServicesWorker#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#82#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffac]####SAPEngine_Application_Thread[impl:3]_11##0#0#Error#1#/System/Server#Plain###Required stream: "PDFDocument" not found.#
    When i test the application i get:
    2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Info##Plain###Non-secure Adobe Document Services request received.##1.5#0013D486EEA9005E0000001F000006A0000417BC30852C14#1151996942184#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Check if IIOP service is running.##1.5#0013D486EEA9005E00000020000006A0000417BC30852CC2#1151996942184#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###IIOP service is running##1.5#0013D486EEA9005E00000021000006A0000417BC30852DF4#1151996942184#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Build DOM for: document##1.5#0013D486EEA9005E00000022000006A0000417BC309C1407#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Processing PDFDocument instructions##1.5#0013D486EEA9005E00000023000006A0000417BC309C15DD#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Destination = pdf##1.5#0013D486EEA9005E00000024000006A0000417BC309C1689#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Source = URL##1.5#0013D486EEA9005E00000025000006A0000417BC309C171D#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = acrobat6.xdc##1.5#0013D486EEA9005E00000026000006A0000417BC309C17E1#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing IsPDF = 1##1.5#0013D486EEA9005E00000027000006A0000417BC309C1888#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Type = Stream##1.5#0013D486EEA9005E00000028000006A0000417BC309C191D#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = docTarget##1.5#0013D486EEA9005E00000029000006A0000417BC309C1A05#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Source = URL##1.5#0013D486EEA9005E0000002A000006A0000417BC309C1A97#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = xfa.xci##1.5#0013D486EEA9005E0000002B000006A0000417BC309C1B8F#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Validate PDFDocumentXML Render request##1.5#0013D486EEA9005E0000002C000006A0000417BC309C1C22#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Validating template Template (xdp):Source = Stream Name = docTemplate CacheInfo = ##1.5#0013D486EEA9005E0000002D000006A0000417BC309C1CB6#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Validate PDFDocumentXML request for Output.##1.5#0013D486EEA9005E0000002E000006A0000417BC309C1D42#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Successfully validated PDFDocumentXML request for Output.##1.5#0013D486EEA9005E0000002F000006A0000417BC309C1DD6#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Succcessfully validated Render request##1.5#0013D486EEA9005E00000030000006A0000417BC309C1E76#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Get PDF from input: docDatafrom source: Stream##1.5#0013D486EEA9005E00000031000006A0000417BC309C36A3#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Get bytes from input file: AdobeDocumentServices\lib\custom_xfa.xcifrom source: DIR_GLOBAL##1.5#0013D486EEA9005E00000032000006A0000417BC309C377C#1151996943684#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Reading bytes from file: F:\usr\sap\J2E\SYS\global\AdobeDocumentServices\lib\custom_xfa.xci##1.5#0013D486EEA9005E00000033000006A0000417BC309CF1C5#1151996943731#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Get bytes from input file: AdobeDocumentServices\lib\xfa.xcifrom source: DIR_GLOBAL##1.5#0013D486EEA9005E00000034000006A0000417BC309CF2AB#1151996943731#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Reading bytes from file: F:\usr\sap\J2E\SYS\global\AdobeDocumentServices\lib\xfa.xci##1.5#0013D486EEA9005E00000035000006A0000417BC309D8216#1151996943778#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Get PDF from input: docTemplatefrom source: Stream##1.5#0013D486EEA9005E00000036000006A0000417BC309DD840#1151996943793#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Perform licenseEJB lookup##1.5#0013D486EEA9005E00000037000006A0000417BC309DD966#1151996943793#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Successfully performed LicenseEJB lookup##1.5#0013D486EEA9005E00000038000006A0000417BC309DDAA2#1151996943793#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Determine form status##1.5#0013D486EEA9005E00000039000006A0000417BC309F0233#1151996943871#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Begin render call to XML Form Module##1.5#0013D486EEA9005E0000003A000006A0000417BC309F02F4#1151996943871#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Initializing the CORBA XMLForm Module factory##1.5#0013D486EEA9005E0000003B000006A0000417BC30AAEB11#1151996944653#com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor#com.adobe/AdobeDocumentServices#com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Error##Java###ClientJTSInterceptor.receive_reply [EXCEPTION] {0}#1#org.omg.CORBA.BAD_PARAM: Not found ServiceContext with id=0  vmcid: OMG  minor code: 26 completed: Maybe     at com.sap.engine.services.iiop.internal.giop.ClientRequest.get_reply_service_context(ClientRequest.java:284)     at com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor.receive_reply(ClientJTSInterceptor.java:91)     at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:133)     at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:125)     at com.sap.engine.services.iiop.server.portable.Delegate.invoke(Delegate.java:282)     at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:457)     at com.adobe.service._ControlAgentStub.newRequestHandler(_ControlAgentStub.java:42)     at com.adobe.service.ProcessResource.allocateConnection(ProcessResource.java:569)     at com.adobe.service.ConnectionResource.getConnection(ConnectionResource.java:39)     at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactoryManagerPeerImpl.java:106)     at com.adobe.ads.request.RemoteRenderer.initializeFactory(RemoteRenderer.java:473)     at com.adobe.ads.request.RemoteRenderer.renderAllRemote(RemoteRenderer.java:158)     at com.adobe.ads.request.RemoteRenderer.renderAll(RemoteRenderer.java:102)     at com.adobe.ads.request.RemoteRenderer.renderAll(RemoteRenderer.java:114)     at com.adobe.ads.request.Renderer.renderWithoutCache(Renderer.java:492)     at com.adobe.ads.request.Renderer.execute(Renderer.java:433)     at com.adobe.BaseADSRequest.doWork(BaseADSRequest.java:111)     at com.adobe.AdobeDocumentServicesWorker.processRender(AdobeDocumentServicesWorker.java:1142)     at com.adobe.AdobeDocumentServicesWorker.execute(AdobeDocumentServicesWorker.java:598)     at com.adobe.AdobeDocumentServicesEJB.processRequest(AdobeDocumentServicesEJB.java:130)     at com.adobe.AdobeDocumentServicesEJB.rpData(AdobeDocumentServicesEJB.java:108)     at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:324)     at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)     at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)     at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)     at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)     at SoapServlet.doPost(SoapServlet.java:51)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)     at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)     at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)     at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)     at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)     at java.security.AccessController.doPrivileged(Native Method)     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)1.5#0013D486EEA9005E0000003D000006A0000417BC31D6244E#1151996964262#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Render completed successfully##1.5#0013D486EEA9005E0000003E000006A0000417BC31D624F5#1151996964262#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###End render call to XML Form Module##1.5#0013D486EEA9005E0000003F000006A0000417BC31D6258F#1151996964262#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Render status: success with warnings##1.5#0013D486EEA9005E00000040000006A0000417BC31D63101#1151996964262#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Create file databuffer##1.5#0013D486EEA9005E00000041000006A0000417BC31D631AD#1151996964262#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Performing DataManager lookup.##1.5#0013D486EEA9005E00000042000006A0000417BC31D6323F#1151996964262#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Performing DataManager service lookup.##1.5#0013D486EEA9005E00000043000006A0000417BC31D64C46#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Info##Plain###Created a PDF Manipulation Module for PDF: C:\WINNT\Temp\adobewa_J2E_11510850\DM6800447063737269126.dir\DM-7642865196240361528.tmp##1.5#0013D486EEA9005E00000044000006A0000417BC31D64D46#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Credential = ReaderRights##1.5#0013D486EEA9005E00000045000006A0000417BC31D64E00#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Message = ReaderRights credential##1.5#0013D486EEA9005E00000046000006A0000417BC31D64ECB#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = SignRights##1.5#0013D486EEA9005E00000047000006A0000417BC31D64F84#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Modify##1.5#0013D486EEA9005E00000048000006A0000417BC31D6505D#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E00000049000006A0000417BC31D65112#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Add##1.5#0013D486EEA9005E0000004A000006A0000417BC31D651EB#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E0000004B000006A0000417BC31D65298#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Delete##1.5#0013D486EEA9005E0000004C000006A0000417BC31D65375#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E0000004D000006A0000417BC31D6543B#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Export##1.5#0013D486EEA9005E0000004E000006A0000417BC31D6552B#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E0000004F000006A0000417BC31D655DF#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = FillIn##1.5#0013D486EEA9005E00000050000006A0000417BC31D656B1#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E00000051000006A0000417BC31D6575B#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = SpawnTemplate##1.5#0013D486EEA9005E00000052000006A0000417BC31D6582C#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E00000053000006A0000417BC31D658D8#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = SubmitStandAlone##1.5#0013D486EEA9005E00000054000006A0000417BC31D6599D#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = FormRights##1.5#0013D486EEA9005E00000055000006A0000417BC31D65A41#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Online##1.5#0013D486EEA9005E00000056000006A0000417BC31D65B1C#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = AnnotRights##1.5#0013D486EEA9005E00000057000006A0000417BC31D65BC8#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Copy##1.5#0013D486EEA9005E00000058000006A0000417BC31D65C98#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = AnnotRights##1.5#0013D486EEA9005E00000059000006A0000417BC31D65D44#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Create##1.5#0013D486EEA9005E0000005A000006A0000417BC31D65E18#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = AnnotRights##1.5#0013D486EEA9005E0000005B000006A0000417BC31D65EC5#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Delete##1.5#0013D486EEA9005E0000005C000006A0000417BC31D65F9D#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = AnnotRights##1.5#0013D486EEA9005E0000005D000006A0000417BC31D66048#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Export##1.5#0013D486EEA9005E0000005E000006A0000417BC31D66117#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = AnnotRights##1.5#0013D486EEA9005E0000005F000006A0000417BC31D661C2#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Import##1.5#0013D486EEA9005E00000060000006A0000417BC31D6629C#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Name = AnnotRights##1.5#0013D486EEA9005E00000061000006A0000417BC31D66346#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Parsing Value = Modify##1.5#0013D486EEA9005E00000062000006A0000417BC31D6640C#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Validate PDFDocumentXML UsageRights request.##1.5#0013D486EEA9005E00000063000006A0000417BC31D664C3#1151996964278#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Successfully validated PDFDocumentXML UsageRights request.##1.5#0013D486EEA9005E00000064000006A0000417BC31D6AFCB#1151996964294#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Set usage rights for com.adobe.document.pdf.PDFDocument##1.5#0013D486EEA9005E00000065000006A0000417BC31D6B0B0#1151996964294#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Lookup PDFManipulation Module factory##1.5#0013D486EEA9005E00000066000006A0000417BC31D6B151#1151996964294#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Performing CORBA ConnectionFactory lookup: com.adobe~PDFManipulation##1.5#0013D486EEA9005E00000067000006A0000417BC31D6B1FA#1151996964294#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###JNDI lookup property: java.naming.provider.url : localhost:50004##1.5#0013D486EEA9005E00000068000006A0000417BC31D6B28D#1151996964294#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###JNDI lookup property: java.naming.factory.initial : com.sap.engine.services.jndi.InitialContextFactoryImpl##1.5#0013D486EEA9005E00000069000006A0000417BC31D6FC49#1151996964309#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Successful CORBA ConnectionFactory lookup: com.adobe~PDFManipulation##1.5#0013D486EEA9005E0000006A000006A0000417BC31EC8B9A#1151996965669#com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor#com.adobe/AdobeDocumentServices#com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Error##Java###ClientJTSInterceptor.receive_reply [EXCEPTION] {0}#1#org.omg.CORBA.BAD_PARAM: Not found ServiceContext with id=0  vmcid: OMG  minor code: 26 completed: Maybe#1.5#0013D486EEA9005E00000071000006A0000417BC32F29869#1151996982904#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Manage temporary file##1.5#0013D486EEA9005E00000072000006A0000417BC32F2B20B#1151996982904#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Info##Plain###Wrote output PDF to temporary file: C:\WINNT\Temp\adobewa_J2E_11510850\DM6800447063737269126.dir\DM134259188913852534.tmp##1.5#0013D486EEA9005E00000073000006A0000417BC32F2B31B#1151996982904#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Info##Plain###Returning output PDF via stream: docTarget##1.5#0013D486EEA9005E00000074000006A0000417BC32F2BEE2#1151996982919#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Debug##Plain###Adobe Document Servics return stream content: docTarget##1.5#0013D486EEA9005E00000075000006A0000417BC32F2D2EC#1151996982919#com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor#com.adobe/AdobeDocumentServices#com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor#ADSUSER#83#SAP J2EE Engine JTA Transaction : [0ffffffafffffffa44202fffffff8ffffffb2]####SAPEngine_Application_Thread[impl:3]_14##0#0#Error##Java###ClientJTSInterceptor.receive_reply [EXCEPTION]
    Please help in resolving the issue.
    Thanks,
    Malika

    I believe this means that your test was successful.  I was able to get this same response -- which is good, but now I can't get this response, I get Exception in method rpData now, with no version info -- so I don't know how I broke this piece.

  • Web Service Wizards crash with java.lang.StackOverflowError

    Hi there!
    I'm desperately trying to integrate some Web Services into our Java project developed with NWDS 2.0.7 / WebAS 6.40. Unfortunately every time I try to create Virtual Interfaces or a Web Service within the Web Service Perspective, nothing happens.
    When I use File/New/Other/Web Service (New VI and WSD) the whole Developer Studio simply crashes with a java.lang.StackOverflowError.
    I restarted from scratch with a new project in a different workspace and everything went fine. So I think it's not a problem with my installation but with the project's configuration I want to create the Web Services in. Perhaps it's something to do with the .classpath or the such?
    Do you have any idea where I can start looking into for getting any hints, what's going wrong here?
    I've added a Configuration Details output for reference below. Any help is greatfully appreciated!
    Best regards,
       Frank
    *** Date: 15.02.05 09:29
    System properties:
    JDK1.3.1_HOME=C:ProgrammeJavaj2sdk1.4.2_04
    JDK1.4_HOME=C:ProgrammeJavaj2sdk1.4.2_04
    allUserDir=C:Dokumente und EinstellungenAll UsersAnwendungsdaten
    awt.toolkit=sun.awt.windows.WToolkit
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=
    http.nonProxyHosts=
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:ProgrammeSAPJDTeclipseSapStartup.jar
    java.class.version=48.0
    java.endorsed.dirs=C:ProgrammeJavaj2sdk1.4.2_04jrelibendorsed
    java.ext.dirs=C:ProgrammeJavaj2sdk1.4.2_04jrelibext
    java.home=C:ProgrammeJavaj2sdk1.4.2_04jre
    java.io.tmpdir=C:DOKUME1F2267LOKALE1Temp
    java.library.path=C:ProgrammeJavaj2sdk1.4.2_04 in;.;C:WINDOWSSystem32;C:WINDOWS;C:ProgrammeSAPJDTeclipse;c:sapdbprograms in;c:sapdbprogramspgm;C:PROGRA1RATIONALRATION1NUTCROOT in;C:PROGRA1RATIONALRATION1NUTCROOT inx11;C:PROGRA1RATIONALRATION1NUTCROOTmksnt;c:programmePVCSVMwin32 in;C:ProgrammeOracle.817 in;C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:PROGRAMMESGEASY;C:cygwin in;C:ProgrammeRationalcommon;C:ProgrammeRationalClearQuest;C:ProgrammeRationalRoseTopLink;C:ProgrammeRationalRational Test;C:TIBCOTIBRVBIN;C:ProgrammeUltraEdit
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.4.2_04-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.4
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.4.2_04
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.4.2_04-b05
    line.separator=
    os.arch=x86
    os.name=Windows XP
    os.version=5.1
    path.separator=;
    proxyHost=http://http-proxy.hannover.is-energy.de
    proxyPort=8080
    proxySet=true
    sun.arch.data.model=32
    sun.boot.class.path=C:ProgrammeJavaj2sdk1.4.2_04jrelib
    t.jar;C:ProgrammeJavaj2sdk1.4.2_04jrelibi18n.jar;C:ProgrammeJavaj2sdk1.4.2_04jrelibsunrsasign.jar;C:ProgrammeJavaj2sdk1.4.2_04jrelibjsse.jar;C:ProgrammeJavaj2sdk1.4.2_04jrelibjce.jar;C:ProgrammeJavaj2sdk1.4.2_04jrelibcharsets.jar;C:ProgrammeJavaj2sdk1.4.2_04jreclasses
    sun.boot.library.path=C:ProgrammeJavaj2sdk1.4.2_04jre in
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    sun.io.unicode.encoding=UnicodeLittle
    sun.java2d.fontpath=
    sun.os.patch.level=Service Pack 1
    user.country=DE
    user.dir=C:ProgrammeSAPJDTEclipse
    user.home=C:Dokumente und EinstellungenF2267
    user.language=de
    user.name=f2267
    user.timezone=Europe/Berlin
    user.variant=
    user.workspace=C:ProgrammeSAPJDTeclipse
    Features:
    com.sap.ip.me.mdk.developmentTools (2.5.1.1) "com.sap.ip.me.mdk.developmentTools"
    com.sap.java.ide (2.0.7) "com.sap.java.ide"
    com.togethersoft.togethersap (6.1.0) "com.togethersoft.togethersap"
    org.eclipse.gef (2.0.0) "org.eclipse.gef"
    org.eclipse.gef.source (2.0.0) "org.eclipse.gef.source"
    org.eclipse.jdt (2.1.2) "org.eclipse.jdt"
    org.eclipse.jdt.source (2.1.2) "org.eclipse.jdt.source"
    org.eclipse.pde (2.1.2) "org.eclipse.pde"
    org.eclipse.platform (2.1.2) "org.eclipse.platform"
    org.eclipse.platform.source (2.1.2) "org.eclipse.platform.source"
    org.eclipse.platform.win32 (2.1.2) "org.eclipse.platform.win32"
    org.eclipse.platform.win32.source (2.1.2) "org.eclipse.platform.win32.source"
    org.eclipse.sdk.win32 (2.1.2) "org.eclipse.sdk.win32"
    Plug-in Registry:
    com.sap.bc.proj.jstartup (2.0.0) "J2EE Jstartup"
    com.sap.cms.client (2.0.0) "Infrastructure CMS Client"
    com.sap.cms.organizer (1.0.0) "Infrastructure CMS Transport Organizer"
    com.sap.cms.tcs (2.0.0) "Infrastructure TCS Deploy Servlet"
    com.sap.devmanual.doc.user (2.0.0) "Documentation Development Manual"
    com.sap.dictionary.database (2.0.0) "Dictionary Database"
    com.sap.dictionary.designtime (1.0.0) "Dictionary Types Designtime"
    com.sap.dictionary.projectbrowser (2.0.0) "Dictionary Project Browser"
    com.sap.dictionary.runtime (2.0.0) "Dictionary Types Runtime"
    com.sap.dictionary.runtime.javadoc (2.0.0) "Documentation Dictionary Types Runtime"
    com.sap.dictionary.services (2.0.0) "Dictionary Types Services"
    com.sap.dictionary.tools.archivebuilder (2.0.0) "Dictionary Archive Builder"
    com.sap.dictionary.tools.generation (2.0.0) "Dictionary Generation"
    com.sap.dictionary.tools.nameserver (2.0.0) "Dictionary Nameserver"
    com.sap.dictionary.tools.simpletype (2.0.0) "Dictionary Simple Type Editor"
    com.sap.dictionary.tools.sqlj (2.0.0) "Persistence SQLJ"
    com.sap.dictionary.tools.structureeditor (2.0.0) "Dictionary Structure Editor"
    com.sap.dictionary.tools.tablebrowser (2.0.0) "Dictionary Table Browser"
    com.sap.dictionary.tools.tableeditor (2.0.0) "Dictionary Table Editor"
    com.sap.dictionary.tools.tsmodel.dictionary (2.0.0) "Dictionary TS Model"
    com.sap.dictionary.tools.ui (2.0.0) "Dictionary User Interface"
    com.sap.dictionary.types.mdi2metamodel (2.0.0) "Dictionary MDI Metamodel"
    com.sap.engine.javadoc (2.0.0) "Documentation J2EE Engine"
    com.sap.engine.webservices (2.0.0) "Web Service Runtime Libs"
    com.sap.ep.applicationDevelopment (6.3.20040727) "Enterprise Portal Application Development"
    com.sap.ep.configurationManager (6.3.20040727) "Enterprise Portal Configuration Manager"
    com.sap.ep.connectionManager (6.3.20040727) "Enterprise Portal Connection Manager"
    com.sap.ep.documentation (6.3.20040727) "Enterprise Portal Documentation"
    com.sap.ep.documentation.api (6.3.20040727) "Enterprise Portal Java API Documentation"
    com.sap.ep.unitTest (6.3.20040727) "Enterprise Portal Unit Test"
    com.sap.ep.webServices (6.3.20040116) "Enterprise Portal Web Services"
    com.sap.exception (2.0.0) "Core Exceptions"
    com.sap.ext.libs.webservices (2.0.0) "Web Service External Libs"
    com.sap.ide.eclipse.cbs.activation (2.0.0) "Infrastructure CBS Activation"
    com.sap.ide.eclipse.component.provider (2.0.0) "Infrastructure Component Provider"
    com.sap.ide.eclipse.debugExtensionPlugin (2.0.0) "Core Debug Extension"
    com.sap.ide.eclipse.dii (2.0.0) "Infrastructure DII"
    com.sap.ide.eclipse.ext.libs.iaik (2.0.0) "Infrastructure SSL Support External Libs"
    com.sap.ide.eclipse.ext.libs.jdo (2.0.0) "Persistence JDO Libs"
    com.sap.ide.eclipse.import.iaik (2.0.0) "Infrastructure SSL Support Import Wizard"
    com.sap.ide.eclipse.j2ee.engine (2.0.0) "J2EE Engine Utilities"
    com.sap.ide.eclipse.j2ee.model.ui (2.0.0) "J2EE Model Extensions UI"
    com.sap.ide.eclipse.jarsap (2.0.0) "Infrastructure JarSap"
    com.sap.ide.eclipse.login (2.0.0) "Infrastructure Login"
    com.sap.ide.eclipse.s2x.editor (2.0.0) "I18N S2X Editor"
    com.sap.ide.eclipse.sdm (1.0.0) "Infrastructure SDM"
    com.sap.ide.eclipse.wizards.jpx.ui (2.0.0) "Core JPX Import Wizard"
    com.sap.ide.generationfwk (2.0.0) "Generation Framework"
    com.sap.ide.jcb.core (2.0.0) "Connectivity Builder Core"
    com.sap.ide.jcb.ui (2.0.0) "Connectivity Enterprise Connector User Interface"
    com.sap.ide.metamodel.common (2.0.0) "Metamodel Common"
    com.sap.ide.metamodel.common.libs (2.0.0) "Metamodel Common Libs"
    com.sap.ide.metamodel.core (2.0.0) "Metamodel Core"
    com.sap.ide.metamodel.core.libs (2.0.0) "Metamodel Core Libs"
    com.sap.ide.metamodel.dictionary (2.0.0) "Dictionary Metamodel"
    com.sap.ide.metamodel.dictionary.libs (2.0.0) "Dictionary Metamodel Libs"
    com.sap.ide.metamodel.merger (2.0.0) "Metamodel Merger"
    com.sap.ide.metamodel.vi (2.0.0) "Web Service Virtual Interface Metamodel"
    com.sap.ide.metamodel.vi.check.libs (2.0.0) "Web Service Virtual Interface Check Metamodel Libs"
    com.sap.ide.metamodel.vi.libs (2.0.0) "Web Service Virtual Interface Metamodel Libs"
    com.sap.ide.metamodel.webdynpro (2.0.0) "Web Dynpro Metamodel"
    com.sap.ide.metamodel.webdynpro.libs (2.0.0) "Web Dynpro Metamodel Libs"
    com.sap.ide.metamodel.ws (2.0.0) "Web Service Metamodel"
    com.sap.ide.metamodel.ws.libs (2.0.0) "Web Service Metamodel Libs"
    com.sap.ide.metamodel.wsproxy (2.0.0) "Web Service Proxy Metamodel"
    com.sap.ide.metamodel.wsproxy.libs (2.0.0) "Web Service Proxy Metamodel Libs"
    com.sap.ide.metamodelsupplement.webdynpro (2.0.0) "Web Dynpro Metamodel Supplement"
    com.sap.ide.services.metamodel.webdynpro (2.0.0) "Metamodel Web Dynpro Services"
    com.sap.ide.tools.core.patternfwk (2.0.0) "Core Tools Pattern Framework"
    com.sap.ide.tools.core.template (2.0.0) "Core Tools Template"
    com.sap.ide.tools.core.template.service (2.0.0) "Core Tools Template Service"
    com.sap.ide.tools.core.treemappingcomponent (2.0.0) "Core Tools Tree Mapping"
    com.sap.ide.vi (2.0.0) "Web Service Virtual Interface"
    com.sap.ide.vi.check (2.0.0) "Web Service Virtual Interface Check"
    com.sap.ide.virtualInterface.tsmodel (2.0.0) "Web Service Virtual Interface TS Model"
    com.sap.ide.webdynpro.adobetemplatedesigner (2.0.0) "Web Dynpro Adobe Template Designer"
    com.sap.ide.webdynpro.applicationeditor (2.0.0) "Web Dynpro Application Editor"
    com.sap.ide.webdynpro.archivebuilder (2.0.0) "Web Dynpro Archive Builder"
    com.sap.ide.webdynpro.chartdesigner (2.0.0) "Web Dynpro Chart Designer"
    com.sap.ide.webdynpro.checklayer (2.0.0) "Web Dynpro Checklayer"
    com.sap.ide.webdynpro.controllereditor (2.0.0) "Web Dynpro Controller Editor"
    com.sap.ide.webdynpro.controllereditor.methodextraction (2.0.0) "Web Dynpro Method Extraction"
    com.sap.ide.webdynpro.ecatt (2.0.0) "Web Dynpro Ecatt"
    com.sap.ide.webdynpro.generation (2.0.0) "Web Dynpro Generation"
    com.sap.ide.webdynpro.messageeditor (2.0.0) "Web Dynpro Message Editor"
    com.sap.ide.webdynpro.modeleditor (2.0.0) "Web Dynpro Model Editor"
    com.sap.ide.webdynpro.projectbrowser (2.0.0) "Web Dynpro Project Browser"
    com.sap.ide.webdynpro.rendering (2.0.0) "Web Dynpro Rendering"
    com.sap.ide.webdynpro.service.applicationeditor (2.0.0) "Web Dynpro Application Editor Services"
    com.sap.ide.webdynpro.service.applicationmodeler (2.0.0) "Web Dynpro Application Modeler Services"
    com.sap.ide.webdynpro.service.controllereditor (2.0.0) "Web Dynpro Controller Editor Services"
    com.sap.ide.webdynpro.service.core (2.0.0) "Web Dynpro Core Services"
    com.sap.ide.webdynpro.service.modeleditor (2.0.0) "Web Dynpro Model Editor Services"
    com.sap.ide.webdynpro.service.viewdesigner (2.0.0) "Web Dynpro View Designer Services"
    com.sap.ide.webdynpro.template.contextcopy (2.0.0) "Web Dynpro context copy template"
    com.sap.ide.webdynpro.template.generation (2.0.0) "Web Dynpro Template Generation"
    com.sap.ide.webdynpro.template.portaleventing (2.0.0) "Web Dynpro Portal Eventing Template"
    com.sap.ide.webdynpro.template.simplescenario (2.0.0) "WebDynpro Declarative Template Wizards"
    com.sap.ide.webdynpro.template.simplescenario.generation (2.0.0) "WebDynpro Declarative Template Wizards Generation"
    com.sap.ide.webdynpro.template.wizards (2.0.0) "Web Dynpro Template Wizards"
    com.sap.ide.webdynpro.template.wizards.generation (2.0.0) "Web Dynpro Template Wizards Generation"
    com.sap.ide.webdynpro.tsmodel.application (2.0.0) "Web Dynpro TS Model"
    com.sap.ide.webdynpro.ui (2.0.0) "Web Dynpro User Interface"
    com.sap.ide.webdynpro.viewdesigner (2.0.0) "Web Dynpro View Designer"
    com.sap.ide.webservices.tsmodel (2.0.0) "Web Service TS Model"
    com.sap.ide.ws (2.0.0) "Web Service Tools"
    com.sap.ide.ws.core (2.0.0) "Web Service Core"
    com.sap.ide.ws.model (2.0.0) "Web Service Model"
    com.sap.ide.ws.navigator (2.0.0) "Web Service Navigator"
    com.sap.ide.ws.perspective (2.0.0) "Web Service Perspective"
    com.sap.ide.ws.portalintegration (1.0.0) "Portal Web Service Endpoint View"
    com.sap.ide.ws.portalintegration.soapapp (1.0.0) "Portal Web Service Soap Application"
    com.sap.ide.ws.proxygenerator (2.0.0) "Web Service Proxy Generator"
    com.sap.ide.ws.soapapp (2.0.0) "Web Service SOAP Application"
    com.sap.ide.wsproxy (2.0.0) "Web Service Proxy Tools"
    com.sap.ip.bi.sdk.doc (3.5.0) "BI Java SDK Documentation"
    com.sap.ip.me.mdk.developmentTools (2.5.1.1) "Mobile Development Kit Tools"
    com.sap.java.ide (2.0.7) "SAP NetWeaver Developer Studio"
    com.sap.jdo.api (2.0.0) "Persistence JDO API"
    com.sap.jdo.utils (2.0.0) "Persistence JDO Util"
    com.sap.jrfc (2.0.0) "Connectivity JFRC Libs"
    com.sap.km.rfwizard (7.1.5) "Knowledge Management RF Wizard"
    com.sap.km.rfwizard.pdk (7.1.5) "Knowledge Management RF PDK Wizard"
    com.sap.mdi (2.0.0) "Dictionary MDI"
    com.sap.mw.jco (2.0.0) "Connectivity JCO Libs"
    com.sap.mw.jco.javadoc (2.0.0) "Documentation JCO"
    com.sap.mw.jra.javadoc (2.0.0) "Documentation Java Resource Adapter"
    com.sap.netweaver.kmc.doc (1.0.0) "Knowledgemanagement and Collaboration"
    com.sap.opensql (2.0.0) "Core OpenSQL"
    com.sap.opensql.javadoc (2.0.0) "Documentation OpenSQL"
    com.sap.s2x (2.0.0) "I18N S2X"
    com.sap.sdm.api (2.0.0) "Infrastructure SDM API"
    com.sap.security (2.0.0) "Infrastructure Security APIs"
    com.sap.security.https.javadoc (2.0.0) "Documentation SSL/HTTPS Client Connections"
    com.sap.security.javadoc (2.0.0) "Documentation Security"
    com.sap.security.securestorage.javadoc (2.0.0) "Documentation Secure Storage"
    com.sap.sld.client (2.0.0) "Infrastructure SLD Client"
    com.sap.sld.namealloc (2.0.0) "Infrastructure SLD Name Allocation"
    com.sap.sqlj (2.0.0) "Persistence SQLJ Libs"
    com.sap.tc.ap (2.0.0) "Infrastructure Archive Pool"
    com.sap.tc.build (2.0.0) "Infrastructure Build"
    com.sap.tc.cmi (1.0.0) "Common Model Interface"
    com.sap.tc.cmi.javadoc (2.0.0) "Documentation Common Model Interface"
    com.sap.tc.col (2.0.0) "Enterprise Service Framework"
    com.sap.tc.complib (2.0.0) "Infrastructure Component Library"
    com.sap.tc.jarm (2.0.0) "Core Java Application Responsetime Measurement"
    com.sap.tc.jtools.jlin.core (2.0.0) "JLin core"
    com.sap.tc.jtools.jlin.devel (2.0.0) "JLin Test Developer Plugin"
    com.sap.tc.jtools.jlin.java (2.0.0) "JLin Java Module"
    com.sap.tc.jtools.jlin.ui (2.0.0) "Java LINt tool"
    com.sap.tc.jtools.jver.core (2.0.0) "JTools JVer Core"
    com.sap.tc.jtools.source (2.0.0) "Jtools Plugin Developer Resources"
    com.sap.tc.jtools.util (2.0.0) "Jtools Utilities"
    com.sap.tc.security (2.0.0) "Infrastructure Security"
    com.sap.tc.security.https (2.0.0) "Infrastructure Security HTTPS"
    com.sap.tc.webdynpro.runtime (2.0.0) "Web Dynpro Runtime"
    com.sap.tc.webdynpro.runtime.javadoc (2.0.0) "Documentation Web Dynpro Runtime"
    com.sap.ume.javadoc (2.0.0) "Documentation User Management Engine"
    com.togethersoft.sapient.audit (0.9.0) "Sapient Audits"
    com.togethersoft.sapient.core (0.9.0) "Sapient Core"
    com.togethersoft.sapient.depend (0.9.0) "Sapient Dependency Analyzer"
    com.togethersoft.sapient.detect (0.9.0) "Sapient Detection Strategies"
    com.togethersoft.sapient.metric (0.9.0) "Sapient Metrics"
    com.togethersoft.sapient.report (0.9.0) "Sapient Reports"
    com.togethersoft.selena.cmf (0.9.0) "Selena Patterns and Templates Support"
    com.togethersoft.selena.examples (0.9.0) "Together Examples"
    com.togethersoft.selena.gde.printing (0.9.0) "Diagram Printing"
    com.togethersoft.selena.gde.svgexport (0.9.0) "Diagram to SVG Export"
    com.togethersoft.selena.gendoc (0.9.0) "Documentation generator"
    com.togethersoft.selena.launcher (0.9.0) "Launcher Plugin"
    com.togethersoft.selena.license.sanctuary (0.9.0) "Sanctuary Plug-in"
    com.togethersoft.selena.model.navigation (0.9.0) "Model Navigation"
    com.togethersoft.selena.model.providers.patterns (0.9.0) "Patterns Providers"
    com.togethersoft.selena.model.ui.actions.java (0.9.0) "Java Actions Plugin"
    com.togethersoft.selena.model.ui.actions.patterns (0.9.0) "Pattern Actions on Model Elements"
    com.togethersoft.selena.patterns (0.9.0) "Patterns Generation"
    com.togethersoft.selena.patterns.gof (0.9.0) "GoF Patterns"
    com.togethersoft.selena.patterns.java (0.9.0) "Java Patterns"
    com.togethersoft.selena.patterns.sapient (0.9.0) "Sapient Based Pattern Recognition"
    com.togethersoft.selena.profiles (0.9.0) "Selena Profiles Support"
    com.togethersoft.selena.profiles.businessModeling (0.9.0) "UML Profile for Business Modeling"
    com.togethersoft.selena.profiles.ep (0.9.0) "Eriksson-Penker Business Extensions Profile"
    com.togethersoft.selena.profiles.incolor (0.9.0) "UML Modeling in Color Profile Plugin"
    com.togethersoft.selena.profiles.sap (0.9.0) "Web Dynpro Modeling Profile"
    com.togethersoft.selena.profiles.sdp (0.9.0) "UML Profile for Software Development Processes"
    com.togethersoft.selena.sapient (0.9.0) "Sapient Plugin"
    com.togethersoft.selena.sapient.ui (0.9.0) "QA Actions for the Model Entities"
    com.togethersoft.selena.selector (0.9.0) "Selector"
    com.togethersoft.selena.selector.model (0.9.0) "Model Selector"
    com.togethersoft.selena.viewmanagement (0.9.0) "Together View Management"
    com.togethersoft.selena.viewmaps (0.9.0) "Together Viewmaps"
    com.togethersoft.selena.xmi (0.9.0) "XMI Import/Export Plugin"
    com.togethersoft.togethersap (6.1.9) "Borland® Together® Edition for SAP NetWeaver(TM) Developer Studio"
    com.togethersoft.togethersap.presentation (1.0.0) "com.togethersoft.togethersap.presentation"
    com.togethersoft.togetherxj.doc.user (0.9.0) "Borland® Together® Edition for SAP NETWEAVER(TM) DEVELOPER STUDIO User Guide"
    com.togethersoft.togetherxj.gsd.code (0.9.0) "com.togethersoft.togetherxj.gsd.code"
    com.togethersoft.togetherxj.gsd.core (0.9.0) "Gsd Core Plug-in"
    com.togethersoft.togetherxj.gsd.ui (0.9.0) "GsdUIPlugin"
    com.togethersoft.togetherxj.java.explorer (0.9.0) "Together Java Explorer"
    com.togethersoft.togetherxj.java.properties (0.9.0) "Java Properties Plug-in"
    com.togethersoft.togetherxj.model.ui.addlinked (0.9.0) "com.togethersoft.togetherxj.model.ui.addlinked"
    com.togethersoft.togetherxj.sap.integration (0.9.0) "SAP NetWeaver(tm) Developer Studio Integration"
    com.togethersoft.togetherxj.uml (0.9.0) "Generic UML Modeling"
    com.togethersoft.togetherxj.uml.cdl (0.9.0) "CDL Plug-in"
    com.togethersoft.togetherxj.uml.interaction (0.9.0) "Interaction Diagrams Plug-in"
    com.togethersoft.togetherxj.uml.uml20 (0.9.0) "UML 2.0 Support"
    com.togethersoft.togetherxj.uml.uml20.actions (0.9.0) "UML 2.0 Actions Fragment"
    com.togethersoft.togetherxj.uml.uml20.providers (0.9.0) "UML 2.0 Providers Fragment"
    com.togethersoft.togetherxj.uml.uml20.viewmaps (0.9.0) "UML 2.0 Viewmaps Fragment"
    com.tssap.config (1.0.0) "Core Startup Configuration"
    com.tssap.dii (2.0.0) "Infrastructure DII"
    com.tssap.dtr.client.eclipse (2.0.0) "Infrastructure DTR UI"
    com.tssap.dtr.client.vfs (2.0.0) "Infrastructure DTR Client Library (VFS)"
    com.tssap.editors (2.0.0) "Core Editors"
    com.tssap.ext.libs.j2ee (2.0.0) "J2EE External Libs"
    com.tssap.j2ee.core.descriptor (2.0.0) "J2EE Descriptor Support"
    com.tssap.j2ee.core.ear (2.0.0) "J2EE Ear Model"
    com.tssap.j2ee.core.ear.impl (2.0.0) "J2EE Ear Model Implementation"
    com.tssap.j2ee.core.ejb (2.0.0) "J2EE Ejb Model"
    com.tssap.j2ee.core.ejb.impl (1.0.0) "J2EE Ejb Model Implementation"
    com.tssap.j2ee.core.ejbjar (2.0.0) "J2EE Ejb Jar Model"
    com.tssap.j2ee.core.ejbjar.impl (2.0.0) "J2EE Ejb Jar Model Implementation"
    com.tssap.j2ee.core.inheritance (1.0.0) "J2EE Ejb Inheritance"
    com.tssap.j2ee.core.inheritance.impl (1.0.0) "J2EE Ejb Inheritance Implementation"
    com.tssap.j2ee.core.providers.dtr (2.0.0) "J2EE DTR Providers"
    com.tssap.j2ee.core.providers.ear (2.0.0) "J2EE Ear Providers"
    com.tssap.j2ee.core.providers.ejb (2.0.0) "J2EE Ejb Providers"
    com.tssap.j2ee.core.providers.ejbjar (2.0.0) "J2EE Ejb Jar Providers"
    com.tssap.j2ee.core.providers.vi (2.0.0) "J2EE Web Service Virtual Interface Providers"
    com.tssap.j2ee.core.providers.web (2.0.0) "J2EE Web Providers"
    com.tssap.j2ee.core.providers.webapp (2.0.0) "J2EE Web App Providers"
    com.tssap.j2ee.core.providers.ws (2.0.0) "J2EE Web Service Providers"
    com.tssap.j2ee.core.utils (2.0.0) "J2EE Utils Plug-in"
    com.tssap.j2ee.core.web (2.0.0) "J2EE Web Model"
    com.tssap.j2ee.core.web.impl (2.0.0) "J2EE Web Model Implementation"
    com.tssap.j2ee.core.webapp (2.0.0) "J2EE Web App Model"
    com.tssap.j2ee.core.webapp.impl (2.0.0) "J2EE Web App Model Implementation"
    com.tssap.j2ee.doc.user_1.3 (2.0.0) "Documentation J2EE 1.3"
    com.tssap.j2ee.external (2.0.0) "J2EE External"
    com.tssap.j2ee.library (2.0.0) "J2EE Library"
    com.tssap.j2ee.model (2.0.0) "J2EE Model"
    com.tssap.j2ee.model.ext (2.0.0) "J2EE Model Extensions"
    com.tssap.j2ee.ui (2.0.0) "J2EE UI core"
    com.tssap.j2ee.ui.ear (2.0.0) "J2EE UI ear"
    com.tssap.j2ee.ui.ejb (2.0.0) "J2EE UI ejb"
    com.tssap.j2ee.ui.ejbjar (2.0.0) "J2EE UI ejb-jar"
    com.tssap.j2ee.ui.perspective (2.0.0) "J2EE UI perspective/views"
    com.tssap.j2ee.ui.web (2.0.0) "J2EE UI web"
    com.tssap.j2ee.util (2.0.0) "J2EE Core Utilities"
    com.tssap.j2ee.viewmaps (2.0.0) "J2EE Viewmaps"
    com.tssap.j2ee.viewmaps.java (2.0.0) "J2EE Simple Java Viewmaps"
    com.tssap.j2se.doc.user_1.3.1 (2.0.0) "Documentation J2SE 1.3.1"
    com.tssap.j2se.doc.user_1.4.2 (2.0.0) "Documentation J2SE 1.4.2"
    com.tssap.sap.libs.ejbql (2.0.0) "J2EE EJBQL"
    com.tssap.sap.libs.logging (2.0.0) "Core Logging"
    com.tssap.sap.libs.xmltoolkit (2.0.0) "Core XML Toolkit"
    com.tssap.selena.cmf (2.0.0) "Core Selena Patterns and Templates"
    com.tssap.selena.dom (1.0.0) "Core Selena DOM"
    com.tssap.selena.draw2d (2.0.0) "Core Selena Draw2D Extensions"
    com.tssap.selena.gde (2.0.0) "Core Selena GDE Extensions"
    com.tssap.selena.java.comment (2.0.0) "Core Selena Java Comment Parser"
    com.tssap.selena.layout (1.0.0) "Core Selena Layout"
    com.tssap.selena.license (2.0.0) "Core Selena Common License"
    com.tssap.selena.license.unlimited (2.0.0) "Core Selena Common License Unlimited"
    com.tssap.selena.model (2.0.0) "Core Selena Model"
    com.tssap.selena.model.extension (2.0.0) "Core Selena Model Extensions"
    com.tssap.selena.model.platform.eclipse (1.0.0) "Core Selena Model Platform"
    com.tssap.selena.model.preferences (1.0.0) "Core Selena Model Preference Store"
    com.tssap.selena.model.providers.design (0.9.0) "Design Plugin"
    com.tssap.selena.model.providers.java (2.0.0) "Core Selena Model Java Providers"
    com.tssap.selena.model.providers.proxy (2.0.0) "Core Selena Model Proxy Providers"
    com.tssap.selena.model.providers.rc (1.0.0) "Core Selena Model Reference Collections Support"
    com.tssap.selena.model.providers.resources (2.0.0) "Core Selena Model Resources Providers"
    com.tssap.selena.model.ui (2.0.0) "Core Selena Model UI"
    com.tssap.selena.model.ui.navigator (2.0.0) "Core Selena Model UI Navigator"
    com.tssap.selena.model.undo (2.0.0) "Core Selena Model Undo Support"
    com.tssap.selena.model.update (2.0.0) "Core Selena Model Graphical Diagram Editor Updater"
    com.tssap.selena.properties (2.0.0) "Core Selena Properties"
    com.tssap.selena.ui (2.0.0) "Core Selena UI"
    com.tssap.selena.viewmanagement (2.0.0) "Core Selena View Management"
    com.tssap.selena.viewmaps.figures (2.0.0) "Core Selena Viewmap Figures"
    com.tssap.tools (2.0.0) "Core Tools"
    com.tssap.tools.ui (2.0.0) "Core Tools UI"
    com.tssap.util (2.0.0) "Core Utilities"
    com.tssap.util.xml (2.0.0) "Core XML Utilities"
    org.antlr (2.0.0) "Core Antlr"
    org.apache.ant (1.5.3) "Apache Ant"
    org.apache.batik (1.5.0) "Apache Batik"
    org.apache.lucene (1.2.1) "Apache Lucene"
    org.apache.regexp (1.1.9) "Apache Regular Expression package"
    org.apache.velocity (0.9.0) "org.apache.velocity"
    org.apache.xerces (4.0.13) "Xerces Based XML Parser"
    org.eclipse.ant.core (2.1.1) "Ant Build Tool Core"
    org.eclipse.compare (2.1.0) "Compare Support"
    org.eclipse.core.boot (2.1.2) "Core Boot"
    org.eclipse.core.resources (2.1.1) "Core Resource Management"
         org.eclipse.core.resources.win32 (2.1.0) "%win32FragmentName"
    org.eclipse.core.runtime (2.1.1) "Core Runtime"
    org.eclipse.debug.core (2.1.2) "Debug Core"
    org.eclipse.debug.ui (2.1.1) "Debug UI"
    org.eclipse.draw2d (2.0.0) "Draw2d"
    org.eclipse.draw2d.doc.isv (2.0.0) "Draw2d Documentation"
    org.eclipse.gef (2.0.0) "Graphical Editor Framework"
    org.eclipse.gef.doc.isv (2.0.0) "GEF Documentation"
    org.eclipse.gef.examples.logicdesigner (2.0.0) "Logic GEF Example"
    org.eclipse.help (2.1.2) "Help System Core"
    org.eclipse.help.appserver (2.1.0) "Help Application Server"
    org.eclipse.help.ui (2.1.1) "Help System UI"
         org.eclipse.help.ui.win32 (2.1.0) "%help_system_plugin_name_win32"
    org.eclipse.help.webapp (2.1.2) "Help System Webapp"
    org.eclipse.jdt (2.1.2) "Eclipse Java Development Tools"
    org.eclipse.jdt.core (2.1.2) "Java Development Tools Core"
    org.eclipse.jdt.debug (2.1.2) "JDI Debug Model"
    org.eclipse.jdt.debug.ui (2.1.1) "JDI Debug UI"
    org.eclipse.jdt.doc.isv (2.1.0) "Eclipse JDT Plug-in Developer Guide"
    org.eclipse.jdt.doc.user (2.1.0) "Eclipse Java Development User Guide"
    org.eclipse.jdt.junit (2.1.1) "Java Development Tools JUnit support"
    org.eclipse.jdt.launching (2.1.1) "Java Development Tools Launching Support"
    org.eclipse.jdt.source (2.1.2) "Eclipse Java Development Tools SDK"
    org.eclipse.jdt.ui (2.1.2) "Java Development Tools UI"
    org.eclipse.jface (2.1.1) "JFace"
    org.eclipse.jface.text (2.1.0) "JFace Text"
    org.eclipse.pde (2.1.0) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.build (2.1.0) "Plug-in Development Environment Build Support"
    org.eclipse.pde.core (2.1.2) "Plug-in Development Core"
    org.eclipse.pde.doc.user (2.1.0) "Eclipse Plug-in Development User Guide"
    org.eclipse.pde.runtime (2.1.0) "Plug-in Development Environment Runtime"
    org.eclipse.pde.source (2.1.2) "Eclipse Plug-in Development Environment Source Code"
    org.eclipse.pde.ui (2.1.2) "Plug-in Development UI"
    org.eclipse.platform (2.1.2) "Eclipse Platform"
    org.eclipse.platform.doc.isv (2.1.0) "Eclipse Platform Plug-in Developer Guide"
    org.eclipse.platform.doc.user (2.1.1) "Eclipse Workbench User Guide"
    org.eclipse.platform.source (2.1.2) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.platform.win32 (2.1.2) "Eclipse Platform (Windows)"
    org.eclipse.platform.win32.source (2.1.2) "Eclipse Platform Plug-in Developer Resources (Windows)"
    org.eclipse.sdk.win32 (2.1.2) "Eclipse Project SDK (Windows)"
    org.eclipse.search (2.1.1) "Search Support"
    org.eclipse.swt (2.1.2) "Standard Widget Toolkit"
         org.eclipse.swt.win32 (2.1.2) "%fragmentName"
    org.eclipse.team.core (2.1.1) "Team Support Core"
    org.eclipse.team.ui (2.1.0) "Team Support UI"
    org.eclipse.text (2.1.0) "Text"
    org.eclipse.tomcat (4.0.6.2) "Tomcat Wrapper"
    org.eclipse.ui (2.1.1) "Eclipse UI"
    org.eclipse.ui.editors (2.1.0) "Default Text Editor"
    org.eclipse.ui.externaltools (2.1.1) "External Tools"
    org.eclipse.ui.versioncheck (2.1.1) "Eclipse Version Check"
    org.eclipse.ui.views (2.1.0) "Views"
    org.eclipse.ui.workbench (2.1.1) "Workbench"
         org.eclipse.ui.win32 (2.1.0) "%Win32Fragment.fragmentName"
    org.eclipse.ui.workbench.texteditor (2.1.0) "Text Editor Framework"
    org.eclipse.update.core (2.1.0) "Install/Update Core"
         org.eclipse.update.core.win32 (2.1.0) "%fragmentNameWin"
    org.eclipse.update.ui.forms (2.1.0) "Install/Update Forms"
    org.junit (3.8.1) "JUnit Testing Framework"
    User Preferences:
    #Tue Feb 15 09:29:55 CET 2005
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathContainer.PegasusLoginModuleLibrary|org.eclipse.jdt.launching.JRE_CONTAINER=
    org.eclipse.jdt.ui/_patternFilterId_.txv=true
    org.eclipse.jdt.core/org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathContainer.PegasusBusinessComponent|org.eclipse.jdt.launching.JRE_CONTAINER=
    org.eclipse.jdt.ui/_patternFilterId_.txa=true
    org.eclipse.ui.workbench/perspectives=org.eclipse.debug.ui.DebugPerspective
    org.eclipse.jdt.ui/org.eclipse.jface.textfont=1|Courier New|10|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Courier New;1|Courier|10|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Courier;1|Lucida Console|9|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Lucida Console;
    org.eclipse.ui.workbench/editors=
    org.eclipse.ui.workbench=2.1.1
    com.sap.ide.eclipse.j2ee.engine/ScsProfile=
    E11000061497
    sapmnt
    J2E
    SYS
    profile
    J2E_SCS01_e11000061497
    com.tssap.dtr.client.eclipse=2.0.0
    org.eclipse.jdt.ui/org.eclipse.jdt.ui.PackageExplorer_patternFilterId_$.class=true
    org.eclipse.ui.workbench/inner_interface_name_template=InnerInterface
    com.tssap.selena.gde=2.0.0
    org.eclipse.jdt.core/org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch
    com.sap.ide.eclipse.j2ee.engine/SystemId=J2E
    org.eclipse.ui.workbench/recognize_properties=true
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathContainer.LocalDevelopmentpegasuswebservicesde.isenergy|org.eclipse.jdt.launching.JRE_CONTAINER=<info extension="dtdbtable" name=""><editor id="com.sap.dictionary.tools.tableeditor.TableEditor"/></info><info extension="jpage" name=""><info extension="wdapplication" name=""><editor id="editor.MetaModelEditor"/><editor id="com.sap.ide.webdynpro.editors.application"/></info><info extension="dtsimpletype" name=""><info extension="jardesc" name=""><editor id="org.eclipse.jdt.ui.JARDescEditor"/></info><info extension="sqlj" name=""><info extension="java" name=""><editor id="org.eclipse.jdt.ui.CompilationUnitEditor"/></info><info extension="xml" name="provider"><editor id="com.sap.ide.eclipse.j2ee.model.ui.saplibrary.saplibraryeditor"/></info><info extension="wdcomponent" name=""><info extension="wdmodel" name=""><editor id="editor.MetaModelEditor"/></info><info extension="class" name=""><info extension="mxsd" name=""><editor id="org.eclipse.pde.ui.schemaEditor"/></info><info extension="html" name=""><info extension="dtstructure" name=""><editor id="com.sap.dictionary.tools.structureeditor.StructureEditor"/><editor id="editor.MetaModelEditor"/></info><info extension="xml" name="plugin"><editor id="org.eclipse.pde.ui.manifestEditor"/></info><info extension="htm" name=""><info extension="wsdef" name=""><editor id="editor.MetaModelEditor"/><editor id="com.sap.ide.ws.editors.wsd.WSDEditor"/></info><info extension="xml" name="build"><editor id="org.eclipse.ui.externaltools.internal.ant.editor.AntEditor"/></info><info extension="xml" name="site"><editor id="org.eclipse.pde.ui.siteEditor"/></info><info extension="xml" name="service-provider"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapservice.sapserviceeditor"/></info><info extension="txt" name=""><info extension="wdview" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xml" name="fragment"><editor id="org.eclipse.pde.ui.fragmentEditor"/></info><info extension="xml" name=""><info extension="xlf" name=""><editor id="com.sap.ide.eclipse.s2x.editor.editors.S2XMultiPageEditor"/></info><info extension="xml.old" name="web"><editor id="com.tssap.j2ee.ui.editor.webeditorold"/></info><info extension="wdbusiness" name=""><info extension="wdcompinterfacedef" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xsd" name=""><info extension="metamodel" name=""><editor id="com.sap.ide.metamodel.core.metamodel"/></info><info extension="testscript" name=""><info extension="wdcontroller" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/><editor id="editor.MetaModelEditor"/></info><info extension="xml" name="data-source-aliases"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapdsaliases.sapdsaliaseseditor"/></info><info extension="properties" name="build"><editor id="org.eclipse.pde.ui.buildEditor"/></info><info extension="lp" name=""><info extension="xxx" name=""><editor id="com.sap.ide.webdynpro.editors.implementation"/><editor id="com.sap.ide.webdynpro.editors.componentControllerUsage"/></info><info extension="xml" name="ejb-j2ee-engine"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapejbjar.sapejbjardescriptioneditor"/></info><info extension="xml" name="feature"><editor id="org.eclipse.pde.ui.featureEditor"/></info><info extension="wdwindow" name=""><info extension="exsd" name=""><editor id="org.eclipse.pde.ui.schemaEditor"/></info><info extension="xml" name="portalapp"><editor id="com.sap.portal.developmenttools.PortalappXmlEditor"/></info><info extension="testresult" name=""><info extension="logic" name=""><editor id="Logic Graphical Editor"/></info><info extension="videf" name=""><info extension="jsp" name=""><editor id="com.tssap.editors.jspeditor"/></info><info extension="wdcomponentinterface" name=""><info extension="wdnavigation" name=""><editor id="com.sap.ide.webdynpro.tsmodel.application.window"/></info><info extension="properties" name=""><info extension="wdinterfaceview" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/><editor id="editor.MetaModelEditor"/></info><info extension="wdmodelclass" name=""><info extension="wsprxdef" name=""><editor id="com.sap.ide.wsproxy.wsproxyeditor"/></info><info extension="xml" name="application-j2ee-engine"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapear.sapeareditor"/></info><info extension="xml" name="ejb-jar"><editor id="com.tssap.j2ee.ui.ejbjar.editor.ejbjareditor"/></info><info extension="tag" name="">
    org.eclipse.jdt.junit/org.eclipse.jdt.junit.active_filters=org.eclipse.jdt.internal.junit.runner.,org.eclipse.jdt.internal.junit.ui.,junit.framework.TestCase,junit.framework.TestResult,junit.framework.TestSuite,junit.framework.Assert,java.lang.reflect.Method.invoke
    Update Manager Log:
    Configuration=02.02.2005 19:33:56
    Is current configuration=true
    Date=02.02.05 19:33
    Activities=file:C:/Programme/SAP/JDT/eclipse/
    Action=Site installed
    Status=Success
    Date=02.02.05 19:33
    Activities=file:C:/Programme/SAP/JDT/eclipse/.metadata/.config/platform.cfg.metadata/v2LocalSite.xml
    Action=Reconcile
    Status=Success
    Error Log:
    !SESSION Feb 08, 2005 12:56:13.421 -
    java.version=1.4.2_04
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_DE
    Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide -data C:ProgrammeSAPJDTeclipse -install file:C:/Programme/SAP/JDT/eclipse/
    !ENTRY Startup 1 0 Feb 08, 2005 12:56:13.421
    !MESSAGE Sap NetWeaver Developer Studio - Build: 200407270250
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:26.818
    !MESSAGE Updating metamodel archives from classpath for project JFreeChart
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.329
    !MESSAGE Updating metamodel archives from classpath for project PegasusBusinessComponent
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.369
    !MESSAGE Updating metamodel archives from classpath for project PegasusClient
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.379
    !MESSAGE Updating metamodel archives from classpath for project PegasusClientStubs
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.399
    !MESSAGE Updating metamodel archives from classpath for project PegasusCuf
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.409
    !MESSAGE Updating metamodel archives from classpath for project PegasusDev
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.419
    !MESSAGE Updating metamodel archives from classpath for project PegasusLoginModuleLibrary
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.439
    !MESSAGE Updating metamodel archives from classpath for project PegasusLoginModuleProject
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.690
    !MESSAGE Updating metamodel archives from classpath for project PegasusServer
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:27.960
    !MESSAGE Updating metamodel archives from classpath for project PegasusServlet
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 12:56:28.120
    !MESSAGE Updating metamodel archives from classpath for project PegasusTest
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 13:52:57.427
    !MESSAGE Updating metamodel archives from classpath for project LocalDevelopmentpegasuswebservicesde.isenergy
    !ENTRY com.sap.ide.metamodel.core 1 1 Feb 08, 2005 13:53:56.303
    !MESSAGE Removed  Metamodel for project LocalDevelopmentpegasuswebservicesde.isenergy
    !ENTRY com.tssap.util 4 0 Feb 08, 2005 13:56:43.36
    !MESSAGE Feb 8, 2005 1:56:43 PM                com.tssap.util.ui.menu.MenuFactory              Error: Error in performing action
    !STACK 0
    java.lang.StackOverflowError
    /code

    Hi yue42, thanks alot for your rely.
    The error occured before I tried to apply the xsl template to translate the xml data into html page, anyway here is my template. dave
    <?xml version="1.0"?>                                                           
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 
    <xsl:output method="html"/>                                                     
    <xsl:include href="global.xsl"/>
    <xsl:template match="/">                                                        
    <html>                                                                          
    <head>News</head>
    <body>
    <table>
    <xsl:for-each select="//NEWS/STORY">
    <xsl:if test="6>position()">
    <tr>
    <td><xsl:value-of select="position()"/></td>
    <td><xsl:value-of select="./HEADLINE"/></td>
    </tr>
    </xsl:if>
    </xsl:for-each>
    </table>
    </body>         
    </html>         
    </xsl:template> 
    </xsl:stylesheet>                                   

  • Error while transforming XSLT by calling function with Reflection API

    Hi,
    I'm new to Reflection API. I want to call function from the jar file which is not in my application context. So I have loaded that jar ( say XXX.jar) file at runtime with URLClassLoader and call the function say [ *myTransform(Document document)* ]. Problem is that when I want to transform any XSLT file in that function it throws exception 'Could not compile stylesheet'. All required classes are in XXX.jar.
    If I call 'myTransform' function directly without reflection API then it transformation successfully completed.
    Following is code of reflection to invoke function
            ClassLoader contextCL = Thread.currentThread().getContextClassLoader();
            URLClassLoader loader = new URLClassLoader(jarURLs, contextCL);
            Class c = loader.loadClass(fullClasspath);
            Constructor constructor = c.getDeclaredConstructor(constructorParamsClasses);
            Object instance = constructor.newInstance(constructorParams);
            Method method = c.getDeclaredMethod("myTransform", methodParamsClasses);
            Object object = method.invoke(instance, methodParams);Following is function to be called with reflection API.
    public Document myTransform ( Document document ) {
    // Reference of Document (DOM NODE) used to hold the result of transformation.
                Document doc = null ;
                // DocumentBuilderFactory instance which is used to initialize DocumentBuilder to create newDocumentBuilder.
                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance () ;
                // Reference of DocumentBuilder used to create new Document (DOM NODE).
                DocumentBuilder builder;
                try {
                      // Initialize DocumentBuilder by using DocumentBuilderFactory instance.
                      builder = factory.newDocumentBuilder ();
                      // Initialize new document instance by using DocumentBuilder instance.
                      doc = builder.newDocument () ;
                      // Creates new DOMSource by using document (DOM NODE) which is coming through current transform() method parameter.
                      DOMSource domsource = new DOMSource ( document ) ;
                      // Creates new instance of TransformerFactory.
                      TransformerFactory transformerfactory = TransformerFactory.newInstance () ;
                      // Creates new Transformer instance by using TransformerFactory which holds XSLT file.
                      Transformer transformer = null;
    ********* exception is thrown from here onward ******************
                      transformer = transformerfactory.newTransformer (new StreamSource (xsltFile));
                      // Transform XSLT on document (DOM NODE) and store result in doc (DOM NODE).
                      transformer.transform ( domsource , new DOMResult ( doc ) ) ;
                } catch (ParserConfigurationException ex) {
                      ex.printStackTrace();
                } catch (TransformerConfigurationException ex) {
                      ex.printStackTrace();
                } catch (TransformerException ex) {
                     ex.printStackTrace();
                } catch (Exception ex) {
                     ex.printStackTrace();
                //holds result of transformation.
                return doc ;
    }Following is full exception stacktrace
    ERROR:  'The first argument to the non-static Java function 'myBeanMethod' is not a valid object reference.'
    FATAL ERROR:  'Could not compile stylesheet'
    javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:829)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:623)
            at com.actl.dxchange.utilities.Transformation.transform(Transformation.java:83)
            at com.actl.dxchange.base.BaseConnector.transform(BaseConnector.java:330)
            at com.actl.dxchange.connectors.KuoniConnector.doRequestProcess(KuoniConnector.java:388)
            at com.actl.dxchange.connectors.KuoniConnector.hotelAvail(KuoniConnector.java:241)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            ...........

    Hi,
    Thanks for response.
    Following is code for setting 'methodParamsClasses' array object. I do ensure that Document is not null and valid. My application is web application.
    Document requestObj = /* my code for generating Document object*/
    Object[] methodParams = new Object[]{requestObj}
    Class[] methodParamsClasses = new Class[]{};
                if (methodParams != null) {
                    methodParamsClasses = new Class[methodParams.length];
                    for (int i = 0; i < methodParams.length; i++) {
                        if (methodParams[i] instanceof Document) {
    /************** if parameter is instance of Document then I set class type as "Document.class" ***********/
                            methodParamsClasses[i] = Document.class;
                        } else {
                            methodParamsClasses[i] = methodParams.getClass();

  • Bursting with JAVA APIs / MultiThreading / Errors Handling

    We are trying to use the bursting JAVA APIs 10.1.3.3.1 Standalone) to burst huge XML files and generate PDF Files from RTF templates. Here are a list of our issues with this feature:
    1. We have some problems catching the errors when bursting. We have tried to use the "oracle.apps.xdo.common.log.Logger" class, but it is not always reacting like we think it should. Could you please give us an exemple of a clean bursting error catching or a brief description of how we could do it. We have a lot of difficulties to find information about using the JAVA APIs of BIP.
    2. Is it a clean way of catching the bursting errors to use the "oracle.apps.xdo.common.log.Logger" class?
    3. When using the 10.1.3.3.1 DocumentProcessor JAVA API, the process gets killed when the RTF template is not where the control file specified it. Even when using a finally clause containing the document processor, we can't fetch the error from the "oracle.apps.xdo.common.log.Logger" class. We did not find a way to catch this error which make our program crash.
    4. How can we enable multi-threading that is included in the DocumentProcessor JAVA APIs so it can take advantage of the multi-processors environnements?

    1. Check tim d. blog, you can use the bursting listners to get the errors. It's also in the documentation.
    First, on every exception, the Bursting APIs are dumping the error in the Logger. So I can't see how we can use the listeners to catch these. We can check the hasExceptions on the Logger but still, we have some problems with this. When we deploy our application as a MDB (Message driven bean), it seems that once the hasException flag has been raised, if we call the MDB again, it is still up. Is there documentation about that Logger class? Also, I'm worried that we won't be able to call our MDB twice to run simultaneously 2 different bursting process since it seems the Logger is something static, keeping every exception in memory... That's bad.. And show me where you have found documentation about this. All I see in documentation is how to call the DocumentProcessor in a couple of lines. I don't see anything about a clean way to catch errors.
    2. Yes/No/Depends. I think it's fine. If your changing the logger options in your program that could come back to haunt you.
    I guess so, I'm not changing anything and its already haunting me...
    3. When using the 10.1.3.3.1 DocumentProcessor JAVA API, the process gets killed when the RTF template is not where the control file specified it. Even when using a finally clause containing the document processor, we can't fetch the error from the "oracle.apps.xdo.common.log.Logger" class. We did not find a way to catch this error which make our program crash.
    Even worst, when we deploy the component has an MDB, when the error happens, it kills the whole oc4j container... please correct this quick.
    4. How can we enable multi-threading that is included in the DocumentProcessor JAVA APIs so it can take advantage of the multi-processors environnements?
    We got an answer from the dev team which is to add two properties to the document processor, something like:
    enable-multithreading: true
    thread-count: >2
    We did that and what we got is that the process started and it got stuck in a dead lock at the first document processing. How nice! :)
    We got a milestone in March and I'm really worried about all those problems... Not enough documentation, a pretty bad error handling, errors making crash the whole oc4j container, Logger seems not to be handling simultaneous calls/ threads, not even handling two subsequent calls... etc.
    If anyone has the magic answer, it would be pretty welcomed!
    Thanks

  • How do I resolve connection error with Java API listener?

    I have created a listener using the new Java API (see How do I implement a listener using new MDM Java API? for background). When I run it, I get this error message
    Mar 19, 2008 3:57:58 PM com.sap.mdm.internal.net.ConnectionImpl finalize
    INFO: Disconnect was not called. Cleaning up connection in finalize.
    This message is triggered whenever I generate a data event that I would otherwise expect to be captured and handled by the listener. I have tried a number of things, including setting the connection to NO_TIMEOUT and trying SimpleConnection versus ConnectionPool, but always with the same result.
    Here is some sample code for the listener:
    public class DataListenerImpl implements DataListener {
         public void recordAdded(RecordEvent evt) {          
              System.out.println("===> Record Added Event");
              System.out.println(evt.getServerName());
         public void recordCheckedIn(RecordEvent evt) {
              System.out.println("===> Record Checked In Event");
              System.out.println(evt.getServerName());          
         public void recordCheckedOut(RecordEvent evt) {
              System.out.println("===> Record Checked Out Event");
              System.out.println(evt.getServerName());               
         public void recordModified(RecordEvent evt) {
              System.out.println("===> Record Modified Event");
              System.out.println(evt.getServerName());
    And here is the code for the Event Dispatcher:
    public void execute(Repository repository) {
         DataListener listener = new DataListenerImpl();
         try {
              EventDispatcherManager edm = EventDispatcherManager.getInstance();
              EventDispatcher ed = edm.getEventDispatcher(repository.getServer().getName());
              ed.addListener(listener);
              ed.registerDataNotifications(SystemProperties.getUserName(), SystemProperties.getPassword(),
                        repository.getIdentifier(), repository.getLoginRegion());
              ed.registerRepositoryNotifications(SystemProperties.getUserName(), SystemProperties.getPassword(),
                        repository.getIdentifier());
              ed.registerGlobalNotifications();
              while (true) {
                   Thread.yield();
                   try {
                        Thread.sleep(1500);
                   } catch (InterruptedException ex) {
                        System.out.println("Interrupted Exception: " + ex.getMessage());
         } catch (ConnectionException e) {
              e.printStackTrace();
         } catch (CommandException e) {
              e.printStackTrace();
    Has anyone else encountered this message? Could it be related to a TCP configuration on the server? Or is this a bug in the Java API?
    As I mentioned in the forum posting linked to above, I have not encountered this problem with the MDM4J API.
    Any help is greatly appreciated.

    I resolved it. We are switching over to SP6, Patch 1 and the listener code works fine with this version of the Java API.
    Just one thing to note, though: make sure that you register data notifications through MetadataManager in your initialization code:
    metadataManager.registerDataNotifications(userSessionContext, repositoryPassword);
    For information on the changes to the SP6 Java API, especially with regard to connecting to MDM with the UserSessionContext, please review Richard LeBlanc's [presentation|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20073a91-3e8b-2a10-52ae-e1b4a10add1c].

  • Error while invoke ADF BC Service component

    I have an ADF Service component, which I'm trying to call from BPEL. A process can be sucessfuly build and deployed, but at run time I'm getting error: Could not determine WSDL port.
    A error stack trace from server is below:
    2008-12-04 21:02:33.003 WS Binding: exception durign SOAP invocation: javax.xml.ws.WebServiceException: Could not determine WSDL ports
    2008-12-04 21:02:33.003 oracle.fabric.common.FabricInvocationException
    2008-12-04 21:02:33.004      at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:569)
    2008-12-04 21:02:33.004      at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:475)
    2008-12-04 21:02:33.004      at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:136)
    2008-12-04 21:02:33.004      at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
    2008-12-04 21:02:33.004      at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:111)
    2008-12-04 21:02:33.004      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2008-12-04 21:02:33.004      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2008-12-04 21:02:33.004      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-12-04 21:02:33.004      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-12-04 21:02:33.004      at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:296)
    2008-12-04 21:02:33.004      at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:177)
    2008-12-04 21:02:33.004      at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:144)
    2008-12-04 21:02:33.005      at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
    2008-12-04 21:02:33.005      at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:166)
    2008-12-04 21:02:33.005      at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    2008-12-04 21:02:33.005      at $Proxy102.request(Unknown Source)
    2008-12-04 21:02:33.005      at oracle.fabric.BPELServiceEngine.requestToMesh(BPELServiceEngine.java:501)
    2008-12-04 21:02:33.005      at com.collaxa.cube.ws.FabricInvocationHandler.invoke(FabricInvocationHandler.java:230)
    2008-12-04 21:02:33.005      at com.collaxa.cube.ws.FabricInvocationHandler.invoke(FabricInvocationHandler.java:67)
    2008-12-04 21:02:33.005      at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:263)
    2008-12-04 21:02:33.005      at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:162)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:864)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:381)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:107)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.CubeEngine._performActivity(CubeEngine.java:2954)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2868)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1437)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:73)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:188)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:280)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4895)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:859)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:163)
    2008-12-04 21:02:33.005      at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:199)
    2008-12-04 21:02:33.005      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2008-12-04 21:02:33.005      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2008-12-04 21:02:33.005      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-12-04 21:02:33.005      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-12-04 21:02:33.005      at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
    2008-12-04 21:02:33.005      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.005      at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    2008-12-04 21:02:33.005      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.005      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    2008-12-04 21:02:33.005      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.java:54)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
    2008-12-04 21:02:33.006      at java.security.AccessController.doPrivileged(Native Method)
    2008-12-04 21:02:33.006      at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:187)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:516)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:289)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.JaasModeImpl$BasicExecutor.execute(JaasModeImpl.java:158)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
    2008-12-04 21:02:33.006      at CubeEngineBean_LocalProxy_4bin6i8.syncCreateAndInvoke(Unknown Source)
    2008-12-04 21:02:33.006      at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:475)
    2008-12-04 21:02:33.006      at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:431)
    2008-12-04 21:02:33.006      at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:139)
    2008-12-04 21:02:33.006      at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:126)
    2008-12-04 21:02:33.006      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2008-12-04 21:02:33.006      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2008-12-04 21:02:33.006      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-12-04 21:02:33.006      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.006      at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
    2008-12-04 21:02:33.006      at java.security.AccessController.doPrivileged(Native Method)
    2008-12-04 21:02:33.006      at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:187)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:516)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:289)
    2008-12-04 21:02:33.006      at oracle.oc4j.security.JaasModeImpl$BasicExecutor.execute(JaasModeImpl.java:158)
    2008-12-04 21:02:33.007      at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
    2008-12-04 21:02:33.007      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.007      at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    2008-12-04 21:02:33.007      at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
    2008-12-04 21:02:33.007      at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
    2008-12-04 21:02:33.007      at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
    2008-12-04 21:02:33.007      at DeliveryBean_LocalProxy_4bin6i8.request(Unknown Source)
    2008-12-04 21:02:33.007      at oracle.fabric.BPELServiceEngine.request(BPELServiceEngine.java:277)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:136)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:179)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:111)
    2008-12-04 21:02:33.007      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2008-12-04 21:02:33.007      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2008-12-04 21:02:33.007      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-12-04 21:02:33.007      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-12-04 21:02:33.007      at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:296)
    2008-12-04 21:02:33.007      at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:177)
    2008-12-04 21:02:33.007      at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:144)
    2008-12-04 21:02:33.007      at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:59)
    2008-12-04 21:02:33.007      at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:166)
    2008-12-04 21:02:33.007      at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    2008-12-04 21:02:33.007      at $Proxy102.request(Unknown Source)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.doMessageProcessing(WebServiceEntryBindingComponent.java:911)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.processIncomingMessage(WebServiceEntryBindingComponent.java:630)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.soap.FabricProvider.processMessage(FabricProvider.java:96)
    2008-12-04 21:02:33.007      at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:1055)
    2008-12-04 21:02:33.007      at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:763)
    2008-12-04 21:02:33.007      at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:528)
    2008-12-04 21:02:33.007      at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:212)
    2008-12-04 21:02:33.007      at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:176)
    2008-12-04 21:02:33.007      at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:311)
    2008-12-04 21:02:33.007      at oracle.integration.platform.blocks.soap.FabricProviderServlet.doPost(FabricProviderServlet.java:207)
    2008-12-04 21:02:33.007      at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
    2008-12-04 21:02:33.007      at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    2008-12-04 21:02:33.007      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:692)
    2008-12-04 21:02:33.007      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:351)
    2008-12-04 21:02:33.007      at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:977)
    2008-12-04 21:02:33.007      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:878)
    2008-12-04 21:02:33.007      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:676)
    2008-12-04 21:02:33.008      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:644)
    2008-12-04 21:02:33.008      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:436)
    2008-12-04 21:02:33.008      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:185)
    2008-12-04 21:02:33.008      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:153)
    2008-12-04 21:02:33.008      at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:276)
    2008-12-04 21:02:33.008      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:223)
    2008-12-04 21:02:33.008      at oracle.oc4j.network.ServerSocketAcceptHandler.access$900(ServerSocketAcceptHandler.java:39)
    2008-12-04 21:02:33.008      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:841)
    2008-12-04 21:02:33.008      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
    2008-12-04 21:02:33.008      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
    2008-12-04 21:02:33.008      at java.lang.Thread.run(Thread.java:595)
    2008-12-04 21:02:33.008 Caused by: javax.xml.ws.WebServiceException: Could not determine WSDL ports
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.jaxws.WSDLMetadata.initPorts(WSDLMetadata.java:143)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.jaxws.WSDLMetadata.getPort(WSDLMetadata.java:380)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.createDispatch(ServiceDelegateImpl.java:262)
    2008-12-04 21:02:33.008      at javax.xml.ws.Service.createDispatch(Service.java:325)
    2008-12-04 21:02:33.008      at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:365)
    2008-12-04 21:02:33.008      at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:159)
    2008-12-04 21:02:33.008      at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:551)
    2008-12-04 21:02:33.008      ... 132 more
    2008-12-04 21:02:33.008 Caused by: java.io.IOException: Could not find schema from URL source, file source, classpath or application context at this lcoation: "file:SimilarOpportunityPredictionService.wsdl"
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.schema.SchemaLocator.getDocument(SchemaLocator.java:66)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.schema.SchemaHelper.getDocument(SchemaHelper.java:178)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.schema.SchemaHelper.getDocument(SchemaHelper.java:163)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.jaxws.WSDLMetadata.readWsdlDefinition(WSDLMetadata.java:329)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.jaxws.WSDLMetadata.initPortsFromWsdl(WSDLMetadata.java:170)
    2008-12-04 21:02:33.008      at oracle.j2ee.ws.common.jaxws.WSDLMetadata.initPorts(WSDLMetadata.java:141)
    2008-12-04 21:02:33.008      ... 138 more
    2008-12-04 21:02:33.067 Error during handle work item ORABPEL-02025
    Block cannot handle exception.
    failure of the block "BpPrc0" to handle a business exception for the instance "1203"; exception reported is: faultName: {{http://schemas.oracle.com/bpel/extension}remoteFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{code=<code>null</code>
    ,summary=<summary>Could not determine WSDL ports</summary>
    ,detail=<detail>null</detail>
    This error contained the exceptions thrown by the underlying routing system.
    Contact Oracle Support Services. Provide the error message, the composite source and the exception trace in the log files (with logging level set to debug mode).
                                                                                                                                                                                                                                                                                                                2008-12-04 21:02:33.076 Message Type is normalized, exiting agent.processFault()
    2008-12-04 21:02:33.131 An error occurred for port: FabricProvider: javax.xml.rpc.soap.SOAPFaultException.

    BPEL process:
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Thu Dec 04 20:03:30 EST 2008
    Author: alpavlov
    Purpose: Synchronous BPEL Process
    -->
    <process name="RealTimePrediction"
    targetNamespace="http://xmlns.oracle.com/SOA-WSIF/RTPrediction/RealTimePrediction"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:client="http://xmlns.oracle.com/SOA-WSIF/RTPrediction/RealTimePrediction"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ns1="http://xmlns.oracle.com/oracle/apps/spe/prediction/rt/common/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ns2="http://xmlns.oracle.com/oracle/apps/spe/prediction/rt/common/types/">
    <!--
    PARTNERLINKS
    List of services participating in this BPEL process
    -->
    <partnerLinks>
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="bpelprocess1_client" partnerLinkType="client:RealTimePrediction" myRole="RealTimePredictionProvider"/>
    <partnerLink name="SimilarOpportunityPredictionService"
    partnerRole="SimilarOpportunityPredictionService_Role"
    partnerLinkType="ns1:SimilarOpportunityPredictionService_PL"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <!-- Reference to the message that will be returned to the requester-->
    <variable name="inputVariable"
    messageType="client:RealTimePredictionRequestMessage"/>
    <variable name="outputVariable"
    messageType="client:RealTimePredictionResponseMessage"/>
    <variable name="CustomerId" type="xsd:string"/>
    <variable name="OpptyId" type="xsd:string"/>
    <variable name="RevnueId" type="xsd:string"/>
    <variable name="Invoke_1_input"
    messageType="ns1:SimilarOpportunityPredictionService_getSimilarOpportunityInfo"/>
    <variable name="Invoke_1_output"
    messageType="ns1:SimilarOpportunityPredictionService_getSimilarOpportunityInfoResponse"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <!-- Receive input from requestor. (Note: This maps to operation defined in RealTimePrediction.wsdl) -->
    <receive name="receiveInput" partnerLink="bpelprocess1_client" portType="client:RealTimePrediction" operation="process" variable="inputVariable" createInstance="yes"/>
    <!-- Generate reply to synchronous request -->
    <assign name="Assign_WS_Call_Parameters">
    <copy>
    <from variable="CustomerId"/>
    <to part="parameters"
    query="/ns2:getSimilarOpportunityInfo/ns2:customerId"
    variable="Invoke_1_input"/>
    </copy>
    <copy>
    <from variable="OpptyId"/>
    <to part="parameters" query="/ns2:getSimilarOpportunityInfo/ns2:opptyId"
    variable="Invoke_1_input"/>
    </copy>
    <copy>
    <from variable="RevnueId"/>
    <to part="parameters" query="/ns2:getSimilarOpportunityInfo/ns2:revnId"
    variable="Invoke_1_input"/>
    </copy>
    </assign>
    <invoke name="Invoke_1"
    inputVariable="Invoke_1_input"
    outputVariable="Invoke_1_output"
    partnerLink="SimilarOpportunityPredictionService"
    portType="ns1:SimilarOpportunityPredictionService"
    operation="getSimilarOpportunityInfo"/>
    <!-- Generate reply to synchronous request -->
    <reply name="replyOutput" partnerLink="bpelprocess1_client" portType="client:RealTimePrediction" operation="process" variable="outputVariable"/>
    </sequence>
    </process>
    Edited by: user553152 on Dec 4, 2008 6:14 PM

  • Error Invoking JPD from Service Control

    Hi,
    We are upgrading an application which was on weblogic 8.1 workshop domain to weblogic 10.3 and trying to commuicate to wli 10.3 domain from the jpf of presentation layer (run time) we are getting the below exception.
    Please help us on this issue. Let me know if more info is required
    Exception:
    <Apr 15, 2010 8:13:00 AM CDT> <Error> <com.bea.control.servicecontrol.util.memento.ServiceClassMementoUtil> <BEA-000000> <com.bea.control.servicecontrol.util.memento.ServiceClassMementoUtil: Could not load the following resource file: com/bellsouth/customermarkets/sbsxo/psl/controls/GetExternalUserDetailsControlServiceClassMemento.ser. There are two possibilities why this would occur. The first is that you are trying to run a 9.0 version of the service control. In this case everything should still work fine and you can ignore this exception. The other case is that the resource file is not in the proper location of the classpath. It should be in the same directory as the service control interface class. You might have to change your build scripts to make this work out for you. The resource file is generated during control assembly time and needs to be moved to the same directory as the service control interface class.>
    com.bea.control.servicecontrol.util.ServiceAnalyzerException: Cannot find types jar typegen__xmlbeans_apache__com__bellsouth__customermarkets__sbsxo__psl__controls__GetExternalUserDetailsContract.jar in ear file /opt/app/bea/WLS103/INT-DEV/Sbsxo_Admin-lib/applications/SbsxoPslFlows.ear
    at com.bea.control.servicecontrol.util.ServiceAnalyzer.constructTypesJarURI(ServiceAnalyzer.java:681)
    at com.bea.control.servicecontrol.util.ServiceAnalyzer.constructDefaultTypesJarURI(ServiceAnalyzer.java:652)
    at com.bea.control.servicecontrol.util.ServiceAnalyzer.makeServiceClassFromExistingTypes(ServiceAnalyzer.java:164)
    at com.bea.control.servicecontrol.util.ServiceClassCache.insertEntry(ServiceClassCache.java:111)
    at com.bea.control.servicecontrol.util.ServiceClassCache.getServiceClass(ServiceClassCache.java:75)
    at com.bea.control.servicecontrol.impl.ServiceControlImpl.getServiceClass(ServiceControlImpl.java:1718)
    at com.bea.control.servicecontrol.impl.ServiceControlImpl.invoke(ServiceControlImpl.java:524)
    at com.bellsouth.customermarkets.sbsxo.psl.controls.GetExternalUserDetailsControlBean.clientRequest(GetExternalUserDetailsControlBean.java:126)
    at flows.Login.LoginController.getExternalUserInfo(LoginController.java:91)
    at flows.Login.LoginController.begin(LoginController.java:390)
    Thanks,
    B R BALAJI

    In the ESB Control you can view the exception that's being thrown, is the PrivilegActionException the only stack trace you have?
    Maybe you can have a look if the data that's returned from the db-adapter is interpreted correctly by the ESB? You're working with a Request/Reply ESB so you need to make sure that as well the input as the ouput that's returned by the Routing Service is properly defined.

  • OBIEE 11g: Error while starting obiee services

    Hi All,
    I am facing problem while starting OBIEE services.
    Error Message: The configuration file (C:\obi\user_projects\domains\bifoundation_domain\config\fmwconfig\jps-config.xml) was not found or is inaccessible.
    I tried staring services through EM and OPMN, however I am getting the same error (in Presentation, BI Server, Scheduler, Cluster Controller log Files).
    It's a cluster environment and I am able to start obiee services on node 2, however node 1 gives the error as mentioned above.
    How can I resolve this issue?
    Regards,
    Deepak

    Hi Dhar,
    below is the log file content:
    opmn.log:
    Error Message from opmn.log file:
    [ERROR:1] [] [libopmncustom] Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (1035801255:1640) [No addresses matched the properties for the request]
    [ERROR:1] [] [libopmncustom] Hi Dhar,
    below is the log file content:
    opmn.log:
    Error Message from opmn.log file:
    [ERROR:1] [] [libopmncustom] Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (1035801255:1640) [No addresses matched the properties for the request]
    [ERROR:1] [] [libopmncustom] Ping failed in Ready callback for proc:1035801255
    All other log files (presentation, bi server, scheduler, cluster controller) contains the following error message:
    Error Message: The configuration file (C:\obi\user_projects\domains\bifoundation_domain\config\fmwconfig\jps-config.xml) was not found or is inaccessible.
    As per comments posted by you here: https://cn.forums.oracle.com/forums/thread.jspa?threadID=2326091
    I checked FMW_SECURITY_SERVICE_URL parameter in the NQSConfig.ini file.
    This parameter is using VIP (admin server listen to this) and not the actual IP of the server.
    Should I change this URL and point it to actual IP.
    What is the procedure to change this parameter using EM?

  • Errors in Importing Web Services to Composite Application

    Hi Everyone,
    I have created a CAF and exposed its operations as Web Services using CE 7.1 EhP1 SP2 platform.
    Now I would like to import the web services into another CAF project as external service in the same CE AS.
    The following are the error messages I have encountered during the importing of the service:
    ===========
    Status ERROR
    Plugin : com.sap.caf.designer.ui
    code=-1
    Web Service can not be imported due to some errors. See log for further details.
    children=[
    Status ERROR
    Plugin : com.sap.caf.designer.ui
    code=0
    java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException
    at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:453)
    at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Nested exceptions :com.sap.caf.foundation.caf_import.CAFDTImportException
    atcom.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:208)
    atcom.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
    atorg.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Nested exceptions :java.lang.NullPointerException
    atcom.sap.caf.foundation.mfw.util.WSDLUtils.gatherImportedSchemas(WSDLUtils.java:786)
    atcom.sap.caf.foundation.mfw.util.WSDLUtils.gatherImportedSchemas(WSDLUtils.java:792)
    atcom.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.tranformImportedWSDLs(CAFDTWSDLImporter.java:402)
    atcom.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:197)
    atcom.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
    atorg.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Status ERROR
    Plugin : com.sap.caf.designer.ui
    code=0
    com.sap.caf.foundation.caf_import.CAFDTImportException
    com.sap.caf.foundation.caf_import.CAFDTImportException
    at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:208)
    at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
    at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Nested exceptions :java.lang.NullPointerException
    atcom.sap.caf.foundation.mfw.util.WSDLUtils.gatherImportedSchemas(WSDLUtils.java:786)
    atcom.sap.caf.foundation.mfw.util.WSDLUtils.gatherImportedSchemas(WSDLUtils.java:792)
    atcom.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.tranformImportedWSDLs(CAFDTWSDLImporter.java:402)
    atcom.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:197)
    atcom.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
    atorg.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Status ERROR
    Plugin : com.sap.caf.designer.ui
    code=0
    java.lang.NullPointerException
    java.lang.NullPointerException
    at com.sap.caf.foundation.mfw.util.WSDLUtils.gatherImportedSchemas(WSDLUtils.java:786)
    at com.sap.caf.foundation.mfw.util.WSDLUtils.gatherImportedSchemas(WSDLUtils.java:792)
    at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.tranformImportedWSDLs(CAFDTWSDLImporter.java:402)
    at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:197)
    at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
    at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    ==================
    Can anyone give me some guides on how to solve this problem?
    Thank you very much.
    Regards,
    Wan Loong

    Hi Andre,
    Thanks for the reply,
    <b>but the scenerio is like this,</b>
    I have some web services which are talking to MDM,
    like create, update and delete master data in MDM,
    Now I want to create a CAF application using Guided procedures and want to put it on Portal,
    So that different actions can be done based on authorizations,
    <b>Now what I have done</b>
    I have created a CAF application in which for each webservice, I have created an entity service then an application service,
    so that I can create Callable Objects for those app services and then create a GP,
    <b>Now where I am stucked?</b>
    After creating entity service, when I create a record in entity service, so that corressponding webservice mapped can be run, I get this error
    <b>Error: Invalid Address</b>
    Now please tell me where i am wrong?
    Am I following the right approach?
    Please advice..
    waiting for the valuable opinion.
    Thanks,
    Deepak

Maybe you are looking for

  • Help For Remote Access Via VPN

    Need Help what cisco product or router specification or model  can we use for VPN connection in our remote site via Internet Connection thanks Godbless

  • Upload Vendor master data using LSMW

    Hi All,       i am working on LSMW for uploading the Vendor master data (XK01), when i execute the 13 th step (Create batch input session), i got a message like "Editing was terminated" . Could you please tell me why that message is comming. Regards,

  • Networking troubles with windows machine

    I've got this setup: arch linux machine with eth0 connected to dsl modem and eth1 connected to a win7 machine. the linux machine has a samba share on it which i can't really access on the win7 machine. i can access it, but i can't open anything which

  • Comparision of similar equipment

    Hi One of my client requirement on Comparison of similar equipment. Please help me to get the steps for above report I am not getting the table for Comparision of similar equipment regards shiva

  • JSP: Jasper Error.....NullException

    Hey guys, im trying to retrieve a database listing of items and then build a combo box from that. But I get a error when trying to load the data from the bean. Error: java.lang.NullPointerException      org.apache.jsp.administrator.testingdelete_jsp.