Enterprise Services Client

Hi, I'm writing this post to see if anyone had this problem,
I have a Web Service this way:
http://myhost/sap/bc/soap/wsdl?services=Z_FUNCTION&sap-client=210
Even if i have he 210 client it's working in 200, i know this because i wrote in my function module Z_FUNCTION this code:
data ls_tal type YFV13_LOG_WS.
ls_tal-date = sy-datum.
ls_tal-uzeit = sy-uzeit.
ls_tal-value1 = sy-mandt.
ls_tal-value2 = iv_kunnr.
insert YFV13_LOG_WS from ls_tal.
And it records 200 as Mandant(sy-mandt), is there something i missed when i created the web service? Is there something i need to check at Basis Level?
Thank you,
Gabriel

Checking your suggestion Matt, we tried this:
Basis changed the default client to sign in in SapGui, from 200 to 210, it worked, now the WS are connecting to 210, of course, this can´t be the best solution.
We also changed the user/passw combination because we had the same password for both clients(200/210), if i open the WSDL via browser with the client-id parameter in 200 and 210 it asks for the right user/passw combination, didn´t see this before because we had the same password and i don't know if that could be the problem.
We are scheduling to return the default clientid value to 200 and check if this user/passw combination was the problem, i´ll write later.

Similar Messages

  • Problem Developing Abap program to use  Enterprise Service Client Proxy

    Hi I am new to using Webservices but I have successfully created a Client Proxy to consume a web service.  In the Abap Development Workbench and have created a Logical Port for it.  The proxy works fine when I test it using F8.
    However I do not seem to be calling it correctly from my program.  When I run the program in debug no exception is generated but the return structure is empty.
    The method call does not require any data in the input structure.
    The code is as follows :
    REPORT  zweb_test_wsclient.
    DATA: object_ref TYPE REF TO zwebco_bcepsoap,
          input TYPE   zwebget_bceplist_soap_in,
          output TYPE   zwebget_bceplist_soap_out,
          exception TYPE REF TO cx_ai_system_fault.
    START-OF-SELECTION.
      TRY.
          CREATE OBJECT object_ref.
              EXPORTING LOGICAL_PORT_NAME = 'LP1'.
        CATCH cx_ai_system_fault INTO exception.
      ENDTRY.
      TRY.
          CALL METHOD object_ref->get_bceplist
            EXPORTING
              input  = input
            IMPORTING
              output = output.
        CATCH cx_ai_system_fault INTO exception.
      ENDTRY.
    END-OF-SELECTION.
    Can tell me what I am missing or what steps I can take to identify the problem ?
    thanks

    Hello Peter,
    I have the same problem as You. Do you remember the solution?
    A lot of thanks,
    jordi

  • Web service client - consumption problem

    Hi,
    I`m trying to consume web service but there are troubles at the beginning.
    In SE80 i go: "Edit Object" ->"Enterprise Services" -> "Client Proxy" -> "Create" -> "URL/HTTP Destination" and in URL put:
    https://test-bramka.edeklaracje.gov.pl/uslugi/dokumenty?wsdl
    after this I get error:
    HTTP error (return code 110, message "")
    detailed: Message no. SPRX090
    How to manage with these difficulties?
    Probably I have to create new entry in SM59 / LPCONFIG but don`t know exactly how with HTTPS connection.

    Before configuring logical port under LPCONFIG I tried to create RFC Destination under SM59 in order to use it in LPCONFIG.
    In SM59 I tried:
    Connection Type: G
    Target Host: https://test-bramka.edeklaracje.gov.pl/uslugi/dokumenty/
    Service No.: 443
    No Logon
    SSL Active - DEFAULT SSL Client
    Next I used this RFC destination in LPCONFIG:
    Proxy Class: as my webservice proxy client name
    default port: yes
    Call Parameters:
    HTTP Destination: name from previously RFC destination
    Under Operations there are all methods defined
    ...but under SE80 in my program I still get output-STATUS = 0. Correct response should be between 100 and 400. This time I have:
    "EXPORTING
        LOGICAL_PORT_NAME  = 'ZCO_GATE_SERVICE_LPORT_TYPE'
    enabled
    How can I test if RFC connection or logical port under LPCONFIG are defined correctly?

  • Oracle Database Web Service Client using UTL_DBWS :: ORA-29532 Error

    Hi,
    I have the Oracle Database 10.2.0.1.0 :-
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - ProductionI have written a simple Web Services Client using the classes gfrom the UTL_DBWS package. I loaded the JAR file dbwsclient.jar in the SYS Schema and I am trying to use it in the USF Schema.
    However, I have hit this error & I ma unable to proceed :-
    SQL>  select get_stock_price from dual;
    select get_stock_price from dual
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: javax.xml.rpc.ServiceException:
    java.security.AccessControlException: the Permission
    (java.lang.RuntimePermission getClassLoader) has not been granted to USF. The
    PL/SQL to grant this is dbms_java.grant_permission( 'USF',
    'SYS:java.lang.RuntimePermission', 'getClassLoader', '' )
    ORA-06512: at "USF.UTL_DBWS", line 193
    ORA-06512: at "USF.UTL_DBWS", line 190
    ORA-06512: at "USF.GET_STOCK_PRICE", line 17Can you please help me with this ?
    Regards,
    Sandeep

    Hi,
    The error message said
    the Permission(java.lang.RuntimePermission getClassLoader) has not been granted to USF.
    I'd follow the suggestion
    The PL/SQL to grant this is dbms_java.grant_permission( 'USF','SYS:java.lang.RuntimePermission', 'getClassLoader', '' )
    In case you have not done so, consult the Callout Users Guide @
    http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    Kuassi http://db360.blogspot.com

  • Deploying Web Service clients to earlier versions of AS

    Hello,
    I'm using JDeveloper to create web service proxy for existing service to use in my Web Service client. For development, I'm using JDeveloper 10.1.3.3, for deployment of client application I'm using Application Server 10.1.3.0.
    The problem is that AS 10.1.3.0 contains other versions of the libraries, for example, wsclient.jar, so, there's an error using Web Service Proxy (stub) as method setSOAPVersion() doesn't exist.
    The question is how can I use generated stub with earlier versions of Application Server.
    I've tried some things, but they didn't work. Maybe I did something wrong and step-by-step guidelines to deploy application are needed - I hope, it could be useful not only for me.
    So, I found JDev 10.1.3 Release Notes (http://www.oracle.com/technology/products/jdev/htdocs/10.1.3.0.3/readme.html) and the following abstract:
    Workaround for URL / WS Data Control Apps When Deploying to Third Party Application Servers or Oracle Application Server 10.1.2 (4931009)
    1. Copy the following JAR files to your target application server along with the rest of the ADF installed JAR files. The following JAR files are available under your JDeveloper's home directory.
    bc4j/jlib/dc-adapters.jar
    bc4j/jlib/adf-connections.jar
    j2ee/home/lib/http_client.jar
    webservices/lib/wsdl.jar
    webservices/lib/orajaxr.jar
    webservices/lib/orawsrm.jar
    webservices/lib/wsclient.jar
    webservices/lib/orasaaj.jar
    webservices/lib/xsdlib.jar
    webservices/lib/mdds.jar
    jlib/osdt_core.jar
    jlib/osdt_cert.jar
    jlib/osdt_xmlsec.jar
    jlib/osdt_wss.jar
    jlib/osdt_saml.jar
    jlib/ojpse.jar
    jlib/oraclepki.jar
    webservices/lib/wssecurity.jar
    webservices/lib/orawsdl.jar
    j2ee/home/jazncore.jar
    2. Shutdown the application server and modify the application server's class path to include all of the JAR files that were extracted from the archive. Please refer to the application server documentation for details on how to modify the class path.
    3. Restart the application server. You are now ready to deploy / run the application successfully.
    So, I've created a new Shared Library with Enterprise Manager, uploaded all this files and, deploying application, checked this library too. This didn't help.
    Thanks in advance, Valeriy

    Hi Valeriy,
    I have exactly the same problem. Have you been able to resolve this yet?
    Thanks
    Stu

  • How to know the class method behind an enterprise service

    Hi,
    SAP has provided enterprise services for Room booking in Real Estate module. They are even shipping the complete application for a nominal price. But the standard version is not suitable for our client requirement so they want to develop this application inhouse.
    Now my question is:  I know the enterprise services used in this application. How to know the implementing methods behind these enterprise services ?
    If possible suggest which approach will be a better option for the inhouse development.
    1. Webdynpro ABAP and use directly methods behind the enterprise services.
    2. Webdynpro ABAP and create client proxy class for the enterprise services.
    3. Webdynpro JAVA and use the enterprise services.
    4. Using visual composer modelling the application.
    Please suggest the best alternative.
    Best Regards,
    Aleem Mohiuddin.

    Hi
    They are even shipping the complete application for a nominal price. But the standard version is not suitable for our client requirement so they want to develop this application inhouse.
    I assume you are talking about xApps.
    How to know the implementing methods behind these enterprise services ?
    In sproxy transaction you can search service and then you can see class and method implemented behind that particular service.
    1. Webdynpro ABAP and use directly methods behind the enterprise services.
    In my opinion not recommended to bypass ES and use method behind it.
    2. Webdynpro ABAP and create client proxy class for the enterprise services.
    Not sure why you want to create proxy of ES.
    3. Webdynpro JAVA and use the enterprise services.
    4. Using visual composer modelling the application.
    You can use either Webdynpro (ABAP or Java) or VC to model your application which consume ES in backend. Both options are good, you can chose Java or ABAP flavor of dynpro based on skill available in team. VC is very effective in rapid modelling and can be used in protyping or in development of complete application.
    Regards,
    Gourav

  • How to consume an ABAP Enterprise Service in JAVA

    Dear colleagues:
    I'm kind of confused and need your help.
    I have already created a Enterpricse Service (for test) in SE80 and configured it through SOAMANAGER.
    Question1:
    Here is the WSDL URL I got from SOAMANAGER:
    http://ldcihri.wdf.sap.corp:50000/sap/bc/srt/wsdl/flv_10002A111AD1/srvc_url/sap/bc/srt/rfc/sap/z_ws2/000/z_ws2/z_binding?sap-client=000
    And here is the WSDL URL I got from SE80:
    http://ldcihri.wdf.sap.corp:50000/sap/bc/srt/wsdl/flv_10002P111AD1/sdef_url/Z_WS2?sap-client=000:
    The XML file I got from the two URL are different, the former is bigger.
    Which URL should I use? thanks.
    Question2:
    I have tested the 2 WSDL URL through Online SOAP Client - WSDLBrowser.com
    But both URL failed the test.
    I test the same URL in SOAMANAGER-TOOLS-WSDL Analyzer.
    Both URL were OK.
    Any idea? Is it because the authorization? I need to input user name and password for WSDL Analyzer.
    Question3:
    I'd like to consume the web service in JAVA.
    Is it possible to consume the service in Eclipse IDE?
    (I have tried several times by creating Web Service Client using the WSDL but it always say that the WSDL is invalid.
    Or I have to consume the Enterprise Service in NetWeaver Develop Studio?

    In addition.
    I have already activate the web service.

  • Consume Enterprise Services in Java Application

    Hey guys,
    I'm very new in this field, maybe you can help me how to start....
    I want to call Enterprise Services (asynchronous, provided by SAP) from an external java application. Therefore I want to configure a integration scenario between two business systems: java application (consumer) and sap application system (service provider). Maybe you can help me to answer the following questions.
    1) What kind of adapter I have to use in communication channels?
    2) Have I to define outbound/inbound interfaces for Communication Component "sender" (business system: java application)?
    2) How does the communication between the java application and IS work? What kind of API I have to use - some kind of advanced adapter engine ... JCO, JCA ???
    Is there any demo scenario from sap? Please help me to start
    Kind regards,
    Christian

    Hello,
    problem is you are using wsimport on web-service which uses RPC/encoding. Wsimport use JAX-WS so it is not able read it.
    You should wscompile.bat instead it.
    Here is example :
    wscompile.bat -gen:client -d build/classes -s src -keep config.xml
    (-gen:client -says to generate classes for client
    -d - directory where to store classes
    -s - directory where to store sources
    -keep - to keep source file
    xml file
    Where config.xml looks like
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration
    xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <wsdl location=
    "http://something/yourws?wsdl"
    packageName="org.your.package.client"/>
    </configuration>
    I hope it will help.
    best regards

  • Application Server 8.2 + Axis Web Service Client +Win Server 2003 Issue

    Hi everyone,
    I'm facing a weird problem the last couples of days and I'm getting bored of banging my head against the logs/screen, so please if you could help I'd really appreciate it.
    I'm working on a Sun Application Server 8.2 project that includes an axis web service client. I am using Netbeans 5 to do the writing plus I am on a Win XP platform.
    The developers of the web service I intend to absorb were kind enough to package the client into a jar so all I have to do is to import the client and the axis related jar files (axis, axis-ant etc.) in my project and my classpath.
    Everything is working perfect on my pc but when I deploy the project on my actual server the web service client is running forever, leaving my end users with a blank browser window that is also loading forever.
    The server OS is Win Server 2003 and is directly connected to a gateway - no proxies. Also my development pc and my server are running the same jre and have the exact server police settings; but Sun's Application Server is running on port 8080 on my pc whereas on my server it's running on port 80.
    Here's my server's log:
    [#|2008-04-14T21:50:01.795+0300|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=14;|StandardWrapperValve[obos]: Servlet.service() for servlet obos threw exception
    AxisFault
    faultCode: {http://xml.apache.org/axis/}HTTP
    faultSubcode:
    faultString: (0)null
    faultActor:
    faultNode:
    faultDetail:
         {}:return code: 0
         {http://xml.apache.org/axis/}HttpErrorCode:0
    (0)null
         at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at uk.ac.ebi.ook.web.services.OntologyQuerySoapBindingStub.getOntologyNames(OntologyQuerySoapBindingStub.java:509)
         at org.dude.ols.client.obos.processRequest(obos.java:30)
         at org.dude.ols.client.obos.doGet(obos.java:64)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.GeneratedMethodAccessor99.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
    |#]
    Any ideas?

    Hi Paz,
    Thanks for taking the time :)
    To answer your questions:
    1. Has this WebServices ever worked or is this the first time?
    The web service is working perfectly fine on my working station, the problem appears only when I deploy it on my actual server, which means that the web service is working.
    2. What Apache Axis Version are you using?
    1.4
    3. What JRE version are you using?
    Both my development pc and my server run jre 1.5.0_14
    4. In the actual server environment, can you confirm all information are exactly same as DEV environment...
    Oh yes! Absolutely.
    My recent assumption is that some windows service might be needed to run the web service client and obviously I have no clue which one it might be.
    Just to make sure; is the security policy of my Application Server set correctly?
         permission java.lang.RuntimePermission     "getClassLoader";
         permission java.lang.RuntimePermission "createClassLoader";
         permission java.lang.RuntimePermission "loadLibrary.*";
         permission java.lang.RuntimePermission "queuePrintJob";
         permission java.net.SocketPermission "*", "connect,accept,resolve";
         permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
    // work-around for pointbase bug 4864405
    permission java.io.FilePermission "${com.sun.aas.instanceRoot}${/}lib${/}databases${/}-", "delete";
    permission java.io.FilePermission "${java.io.tmpdir}${/}-", "delete";
         permission java.util.PropertyPermission "*", "read,write";
         permission java.lang.RuntimePermission     "modifyThreadGroup";
    Again thanks for taking the time :)

  • Mapping ALE functionality to Enterprise Services

    Hi SAP Gurus,
    I am in an assignment to leverage Enterprise Services in the project and as part of it i need to understand how we can use Enterprise Services for the following requirements which are well supported by ALE/Idoc functionality.
    1) Master Data Distribution - We have ALE Change Pointers mechanism to track the changes done to the master data (Customer/Material/Vendor) and we can process the changes and create the idocs for the same by EOD. Changes are tracked based on the field level and interface level(Message Type). How can we leverage this change pointer mechanism in Enterprise Services.
    2) Best practice to trigger the Outbound enterprise services from ECC system.
    3) There are various tools to monitor IDOCs in ECC, what all are the tolls/transactions for monitoring the Enterprise Service.
    4) What is your view on IDOC V/s Enterprise Service
    Regards,
    Pras

    Hi Prasanna,
    These are two quite different technologies and framework here that your questions are about. One is SMD (Shared Master Data) tool which involves change pointers & IDocs and the other is an Enterprise Service for example an ABAP Proxy or a Web Service.
    1. Why would a customer want to do that especially for standard master data applications like Customer Master, Vendor Master, Material Master etc? I mean I don't understand the benefit of it when all these standard applications already support SMD. If a customer really wants these same functionalities via an Enterprise Service then they basically have to develop more custom applications to support this - for e.g. a Z program which will essentially replace BD21 to process the change pointers (CP) per application i.e. call the associated ABAP Proxy which will then create/do not create IDocs, process the CP by applying business logic, generate XML for PI to distribute further, email/do not email business owner, change the status of the CP depending on the outcome of the processing, exception handling etc. etc. But this whole thing, in my view, is cumbersome and sort of unnecessary as most of these things could be achieved via the SMD tool (except creating the IDoc itself of course!)
    The other way, to totally get rid of the CPs and process every change via ES - one would have to enhance all applications in question to call the ES (ABAP Proxy) at the time of master data change! There is no equivalent of BD64 in ES so I don't understand the purpose to be honest.
    2. In my view, to trigger it as an Outbound Proxy or Client Proxy via Method call.
    3. SXMB_MONI
    4. Like I said in the beginning, its like comparing two different technologies - I guess in the end it comes down to the business requirement at hand. Both can be very efficient (or very inefficient if deployed incorrectly).
    Cheers,
    Sougata.

  • Unable to run Enterprise Service BUilder

    Hi all, i have a problem similar to what i have found here:
    Re: Unable to run Enterprise Services Builder
    Unable to load resource: http://PI-CIPRGIA1:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    as explained in the link above, i find the com.sap.xpi.ibrep.client.jar but i don't understand where i have to put it!!!
    besides, they speak about looking for SAP_XIPCK in the deployment perspective, but i didn't have anything called SAP_XIPCK
    can anyone help me???
    this is my complete log:
    <?xml version="1.0" encoding="UTF-8"?><jnlp spec="1.0+" codebase="http://PI-CIPRGIA1:50000/rep/">
        <information>
            <title>Enterprise Services Repository</title>
            <vendor>SAP AG</vendor>
            <homepage href="http://www.sap.com"/>
            <description type="one-line">Enterprise Services Repository</description>
            <description type="short">Enterprise Services Repository</description>
            <description type="tooltip">Enterprise Services Repository</description>
            <icon height="64" width="64" href="start/graphics/sap6464.gif" type="splash"/>
            <icon height="32" width="32" href="start/graphics/SAP3232.gif"/>
        </information>
        <security>
            <all-permissions/>
        </security>
        <resources>
            <j2se version="1.5+" initial-heap-size="32m" max-heap-size="512m"/><!-- ==================================================================
            ATTENTION: When modifying references in this file, remember to update
                       the corresponding files from the test-apps too!
                      (see repository_test.jnlp in &quot;_ibrep_test/webapp/start&quot; )
            =================================================================== ><!Do not define parts or packages! This will be done automatically ><! XI jars -->
            <jar href="repository/com.sap.xpi.ibrep.client.jar" download="lazy" part="part-69"/>
            <jar href="repository/com.sap.xpi.ibrep.core.jar" download="lazy" part="part-69"/>
            <jar href="repository/com.sap.xpi.ibrep.rb.jar" download="lazy" part="part-69"/>
            <jar href="repository/com.sap.xpi.ib.client.jar" download="lazy" part="part-60"/>
            <jar href="repository/com.sap.xpi.ib.core.jar" download="lazy" part="part-60"/>
            <jar href="repository/com.sap.xpi.ib.rb.jar" download="lazy" part="part-60"/>
            <jar href="repository/com.sap.xpi.ib.mt.gui.lib.jar" download="lazy" part="part-81"/>
            <jar href="repository/com.sap.xpi.ib.mt.rb.jar" download="lazy" part="part-81"/>
            <jar href="repository/com.sap.xpi.ib.mt.util.lib.jar" download="lazy" part="part-81"/>
            <jar href="repository/com.sap.xpi.ib.mapping.lib.jar" download="lazy" part="part-77"/>
            <jar href="repository/com.sap.xpi.ib.upload.core.jar" download="lazy" part="part-83"/>
            <jar href="repository/com.sap.xpi.ib.upload.sap.jar" download="lazy" part="part-85"/>
            <jar href="repository/com.sap.xi.mapping.tool.lib_api.jar" download="lazy" part="part-81"/>
            <jar href="repository/com.sap.xi.flib.lib_api.jar" download="lazy" part="part-60"/>
            <jar href="repository/com.sap.aii.utilxi.core.jar" download="lazy" part="part-88"/>
            <jar href="repository/com.sap.aii.utilxi.gui.jar" download="lazy" part="part-99"/>
            <jar href="repository/com.sap.xpi.util.rb.jar" download="lazy" part="part-88"/>
            <jar href="repository/com.sap.aii.proxy.gen.jar" download="lazy" part="part-82"/>
            <jar href="repository/frog.jar" download="lazy" part="part-192"/><!-- Engine and other components -->
            <jar href="repository/jta.jar" download="lazy" part="part-263"/>
            <jar href="repository/ejb20.jar" download="lazy" part="part-261"/>
            <jar href="repository/sap.comtcsapxmltoolkit~sapxmltoolkit.jar" download="lazy" part="part-146"/>
            <jar href="repository/sap.comtcexception~impl.jar" download="lazy" part="part-186"/>
            <jar href="repository/sap.comtcloggingjavaimpl.jar" download="lazy" part="part-195"/>
            <jar href="repository/sap.comtcblguidgeneratorimpl.jar" download="lazy" part="part-187"/>
            <jar href="repository/jperflib.jar" download="lazy" part="part-119"/>
            <jar href="repository/sap.comtcblniimpl.jar" download="lazy" part="part-191"/><!-- required for CSN-connection -->
            <jar href="repository/sap.comtcjeclientlibimpl.jar" download="lazy" part="part-127"/>
            <jar href="repository/sap.comtcbljarmjarm.jar" download="lazy" part="part-197"/><!-- Tensegrity Libs -->
            <jar href="repository/tenComposite.jar" download="lazy" part="part-229"/>
            <jar href="repository/tenGraph.jar" download="lazy" part="part-238"/>
            <jar href="repository/tenGraphics.jar" download="lazy" part="part-251"/>
            <jar href="repository/tenGenerics.jar" download="lazy" part="part-69"/>
            <jar href="repository/tenGui.jar" download="lazy" part="part-8"/>
            <jar href="repository/tenGuiResource.jar" download="lazy" part="part-253"/><!-- Maestro><!jar href=&quot;repository/maestro_ib.jar&quot; download=&quot;lazy&quot; /-->
            <jar href="repository/com.sap.xpi.ibrep.maestro.core.jar" download="lazy" part="part-69"/>
            <jar href="repository/com.sap.xpi.ibrep.maestro.model.jar" download="lazy" part="part-69"/>
            <jar href="repository/tenSkeleton.jar" download="lazy" part="part-204"/>
            <jar href="repository/tenLookAndFeel.jar" download="lazy" part="part-8"/>
            <jar href="repository/jaxb-api.jar" download="lazy" part="part-264"/>
            <jar href="repository/jaxb-impl.jar" download="lazy" part="part-0"/>
            <jar href="repository/jaxb-xjc.jar" download="lazy" part="part-0"/>
            <jar href="repository/jsr173_1.0_api.jar" download="lazy" part="part-265"/>
            <jar href="repository/activation.jar" download="lazy" part="part-199"/><!-- end Maestro><! Aris Client -->
            <jar href="repository/arismethod.jar" download="lazy" part="part-24"/>
            <jar href="repository/JimiProClasses.jar" download="lazy" part="part-206"/>
            <jar href="repository/jide.jar" download="lazy" part="part-40"/>
            <jar href="repository/client.jar" download="lazy" part="part-14"/><!-- Aris Core -->
            <jar href="repository/jaxb-api.jar" download="lazy" part="part-264"/>
            <jar href="repository/jaxb-impl.jar" download="lazy" part="part-0"/>
            <jar href="repository/jaxb1-impl.jar" download="lazy" part="part-0"/>
            <jar href="repository/jsr173_1.0_api.jar" download="lazy" part="part-265"/>
            <jar href="repository/jh.jar" download="lazy" part="part-204"/>
            <jar href="repository/js.jar" download="lazy" part="part-289"/>
            <jar href="repository/y.jar" download="lazy" part="part-302"/>
            <jar href="repository/cl_locale.jar" download="lazy" part="part-14"/>
            <jar href="repository/cl_locale_de.jar" download="lazy" part="part-14"/>
            <jar href="repository/cl_locale_en.jar" download="lazy" part="part-14"/>
            <jar href="repository/y-utils-2.jar" download="lazy" part="part-39"/>
            <jar href="repository/y-reportexecution-2.jar" download="lazy" part="part-36"/>
            <jar href="repository/y-guiframework.jar" download="lazy" part="part-25"/>
            <jar href="repository/y-graphics-3.jar" download="lazy" part="part-25"/>
            <jar href="repository/y-lipo-1.jar" download="lazy" part="part-34"/>
            <jar href="repository/y-reportdesigner-client-2.jar" download="lazy" part="part-37"/>
            <jar href="repository/y-reportdesigner-common-2.jar" download="lazy" part="part-38"/>
            <jar href="repository/jdom.jar" download="lazy" part="part-10"/>
            <jar href="repository/y-graphlayout-2.jar" download="lazy" part="part-26"/><!-- only for repository, when build is adapted
            &lt;jar href=&quot;repository/sapjco.jar&quot; download=&quot;lazy&quot; component=&quot;aris&quot;/&gt;
            &lt;nativelib href=&quot;repository/sap-rfc-windows.jar&quot; download=&quot;lazy&quot; component=&quot;aris&quot;/&gt;
            ><! end Aris ><! ssl libs -->
            <jar href="repository/iaik_jsse.jar" download="lazy" part="part-13"/>
            <jar href="repository/iaik_smime.jar" download="lazy" part="part-13"/>
            <jar href="repository/iaik_ssl.jar" download="lazy" part="part-13"/>
            <jar href="repository/w3c_http.jar" download="lazy" part="part-13"/>
            <property name="jnlp.log.initialConfiguration" value="FILE, SIMPLE"/>
            <property name="jnlp.com.sap.boot" value="rep,native"/>
        <property name="jnlp.com.sap.aii.ibrep.core.cms.enableTransportWizard" value="false"/><property name="jnlp.com.sap.aii.ibrep.core.transport.doubleFormatExport.showFlag" value="false"/><property name="jnlp.com.sap.aii.docu.url" value="null"/><property name="jnlp.com.sap.aii.connect.landscape.httpport" value="50000"/><property name="jnlp.com.sap.aii.ib.client.content.languages" value="EN,DE"/><property name="jnlp.com.sap.aii.ibdir.core.transport.doubleFormatExport.showFlag" value="false"/><property name="jnlp.com.sap.aii.ibrep.core.aris.AllowBroadReportAccess" value="false"/><property
    [missing part due to post limits......]
        <application-desc main-class="com.sap.aii.ibrep.gui.appl.ApplicationImpl">
            <argument>webstart</argument>
        </application-desc><!--
        &lt;application-desc main-class=&quot;com.sap.aii.ib.gui.applcomp.BootLoader&quot;&gt;
            &lt;argument&gt;webstart&lt;/argument&gt;
        &lt;/application-desc&gt;
        -->
    </jnlp>

    Hi all,
    trying to fix the problems above with Enterprise Sercvice Builder i have made a mistake:
    i have undeployed SAP_XIESR  and now i can't find it anymore!
    the link where i find the ESR and Service Registry is no more accessible!
    is the undeploy reversible?
    these are the details:
    from NWDS , deployment perspective, from tab undeploy view i selected SAP_XIESR added in the list of things to undeploy and run undeploy
    this SAP_XIESR  is now vanished, when i make that action i thought that it was reversible, but now i can't find SAP_XIESR  in no place around!!!
    how can i reverse that action?

  • Unable to run Enterprise Services Builder

    SAP NetWeaver Process Integration  7.1
    When I  try to launch  Process Integration Tools -> Enterprise Services Builder (or Integration Builder Directory), links: http://v2:51400/rep/start/repository.jnlp and http://v2:51400/dir/start/directory.jnlp  respectively, I receive following error:
    An error occurred while launching/running the application.
    Title: Enterprise Services Repository
    Vendor: SAP AG
    Category: Download Error
    Unable to load resource: http://v2:51400/run/repository/com.sap.xpi.ibrep.client.jar
    java.io.IOException: HTTP response 404
         at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.getDownloadSize(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Buy the way, under Java Web Start Configuration i have changed proxy properties to u201CDirect Connectionu201D.
    JNLP file looks as follows:
    <jnlp spec="1.0+" codebase="http://v2:51400/run/">
      <information>
        <title>Enterprise Services Repository</title>
        <vendor>SAP AG</vendor>
        <homepage href="http://www.sap.com"/>
        <description>Enterprise Services Repository</description>
        <icon href="http://v2:51400/run/start/graphics/sap6464.gif" width="64" kind="default"/>
        <icon href="http://v2:51400/run/start/graphics/SAP3232.gif" width="32" kind="default"/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se initial-heap-size="33554432" max-heap-size="536870912" version="1.5+"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ibrep.client.jar" part="part-9" download="eager" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ibrep.core.jar" part="part-9" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ibrep.rb.jar" part="part-9" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.client.jar" part="part-0" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.core.jar" part="part-0" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.rb.jar" part="part-0" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.mt.gui.lib.jar" part="part-21" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.mt.rb.jar" part="part-21" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.mt.util.lib.jar" part="part-21" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.mapping.lib.jar" part="part-17" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.upload.core.jar" part="part-23" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ib.upload.sap.jar" part="part-25" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xi.mapping.tool.lib_api.jar" part="part-21" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xi.flib.lib_api.jar" part="part-0" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.aii.utilxi.core.jar" part="part-28" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.aii.utilxi.gui.jar" part="part-39" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.util.rb.jar" part="part-28" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.aii.proxy.gen.jar" part="part-22" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/frog.jar" part="part-128" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/jta.jar" part="part-168" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/ejb20.jar" part="part-166" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcsapxmltoolkit~sapxmltoolkit.jar" part="part-83" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcexception~impl.jar" part="part-123" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcloggingjavaimpl.jar" part="part-130" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcblguidgeneratorimpl.jar" part="part-124" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/jperflib.jar" part="part-59" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcblniimpl.jar" part="part-127" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcjeclientlibimpl.jar" part="part-63" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/sap.comtcbljarmjarm.jar" part="part-132" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenComposite.jar" part="part-135" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenGraph.jar" part="part-144" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenGraphics.jar" part="part-157" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenGenerics.jar" part="part-136" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenGui.jar" part="part-134" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenGuiResource.jar" part="part-159" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/com.sap.xpi.ibrep.maestro.jar" part="part-9" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/tenSkeleton.jar" part="part-160" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/iaik_jsse.jar" part="part-164" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/iaik_smime.jar" part="part-164" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/iaik_ssl.jar" part="part-164" download="lazy" main="false"/>
        <jar href="http://v2:51400/run/repository/w3c_http.jar" part="part-164" download="lazy" main="false"/>
      </resources>
      <application-desc main-class="com.sap.aii.ibrep.gui.appl.ApplicationImpl">
        <argument>webstart</argument>
      </application-desc>
    </jnlp>
    Itu2019s not a problem with host or port inaccessibility (I already got access to start page, sld, Runtime WorkBench, etc.).
    Letu2019s look closer to, for example, library url : http://v2:51400/run/repository/com.sap.xpi.ibrep.client.jar (taken from jnlp file content). When I paste it to the browser I get error u201CThe requested resource does not exist.u201D (as I expected). So I have changed root in the url from u201Crunu201D to u201Crepu201D (correspondingly to XI 3.0 and PI 7.0) u2013  http://v2:51400/rep/repository/com.sap.xpi.ibrep.client.jar  and I succeed  in downloading single library file!!!!.
    But!!!! I canu2019t change jnlp file content either on client (because itu2019s overwritten every time I launch the application) and server (because  it is generated form template and system properties every time I launch the application) side, so itu2019s not solution but shows that there is something wrong with library resources or/and with jnlp script generation on PI 7.1 platform (why urls in jnlp script points to resources which does not exists in expected location?).
    The question is : How to run properly Enterprise Services Builder and Integration Builder Directory on PI 7.1 platform and what is the reason of errors I have described above.

    Hi Szymon,
    thanks for the suggestion.
    I had a a bit spot of bother, too.
    I found out that my Java didn't inherit browser proxy settings, even if corresponding flag was checked (I don't know why...).
    I manually set proxy properties in Java and now ESB run
    hope this help someone else
    regards
    Cristian

  • Web service client timeout

    Hi,
    I'm trying to set a timeout on my web service client. But its not working. Your tutorials do not seem to address this.
    I am using weblogic 10.3.2, with Java 1.6.
    ============
    Properties propSys = System.getProperties();
    propSys.put( "weblogic.webservice.UseWebLogicURLStreamHandler", "true" );
    Stub stub = (Stub)portObject;
    BindingInfo bindingInfo = (weblogic.webservice.binding.BindingInfo)stub._getProperty("weblogic.webservice.bindinginfo");
    bindingInfo.setTimeout(1);
    Iterator itr = stub._getPropertyNames();
    while (itr.hasNext()){
    Object element = itr.next();
    log("\n properties that can be set: "+element);
    stub._setProperty("weblogic.webservice.rpc.timeoutsecs","1");
    ===========
    I've also tried setting the transaction-timeout and the remove-client-timeout in the weblogic-ear-jar.xml.
    ===========
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>ExternalEntryEJB</ejb-name>
    <transaction-descriptor>
    <trans-timeout-seconds>1</trans-timeout-seconds>
    </transaction-descriptor>
    <enable-call-by-reference>True</enable-call-by-reference>
    <jndi-name>ExternalEntry</jndi-name>
    <remote-client-timeout>1</remote-client-timeout>
    </weblogic-enterprise-bean>
    <weblogic-enterprise-bean>
    <ejb-name>InternalEJB</ejb-name>
    <local-jndi-name>Internal</local-jndi-name>
    <enable-call-by-reference>True</enable-call-by-reference>
    <remote-client-timeout>1</remote-client-timeout>
    <transaction-descriptor>
    <trans-timeout-seconds>1</trans-timeout-seconds>
    </transaction-descriptor>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    ===========
    in case it matters, I am using weblogic.ant.taskdefs.webservices.clientgen.ClientGenTask as the clientgen task in my build.xml
    ============
    <clientgen autotype="False" ear="${dist}/${app.earname}" warName="${servlet.warname}" packageName="MyPackage.webservices.client"
    keepgenerated="False" useServerTypes="True" clientJar="${dist}/MyAppClient.jar">
    <classpath refid="build.classpath.builddir"/>
    </clientgen>
    ============
    I am testing by putting a Thread.sleep(75000) in the method which is called in the internal EJB. But the method runs to completion and returns the reply object after 90 seconds or so (it normally takes about 12 seconds), but does not timeout.
    I've been told that because it is a web services client, the remote-client-timeout will be ineffective. I've also been told that because the EJBs run in the same JVM, the transaction-timeout will be ineffective. Is this so?
    Thanks,
    Walter

    Can you change the clientgen task to weblogic.wsee.tools.anttasks.ClientGenTask this is for jax-rpc 1.1.
    <taskdef name="clientgen"
    classname="weblogic.wsee.tools.anttasks.ClientGenTask" />
    ((Stub)port)._setProperty(weblogic.wsee.transport.connection.timeout,2);
    ((Stub)port)._setProperty(weblogic.wsee.transport.read.timeoutt,2);
    Hope that helps.

  • Enterprise Service Language

    Hello,
    How can I call an enterprise service with an specific language. Where I can put the parameter language (EN, ES, etc) to obtain the results in another language. Is in the Web Dynpro? in the WSDL URL? in the Destination? Creating the endpoint?
    Thanks & Regards
    SU

    Hello,
    In Web Dynpro, if you add language specification at the end of URL, it works well. You may add as shown: http://<host>:8000/sap/bc/webdynpro/sap/y_wd_po_create?sap-client=200&sap-language=DE
    In Web Service also, it should work with addition of language option in generated WSDL URL.
    Thanks,
    Venu

  • Imported Object Enterprise Service Builder

    Hi..
    when Imported Object Enterprise Service Builder
    Connection data for the R/3 import is incomplete
    Open the software component version SAP BASIS 7.10 and
    enter the system and the client
    can not import MATMAS object
    How to resolve that problem
    regards
    chandana

    Double click on teh software component version in ESR for which you want to import idoc. Then select the raido button import of idoc interface from sap systems permitted. Then give the R3 system information like the system name, client and then try once again. It is nothing related with technical and business system.
    step by step:
    double click on SWCV->
    Interface Import ->you have to provide system name , client  then ll try to import
    pls refer : http://forums.sdn.sap.com/thread.jspa?threadID=2143371&tstart=0

Maybe you are looking for