<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Problem Developing Abap program to use  Enterprise Service Client Proxy in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-developing-abap-program-to-use-enterprise-service-client-proxy/m-p/5487413#M1255985</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The method call does not require any data in the input structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is as follows :&lt;/P&gt;&lt;P&gt;REPORT  zweb_test_wsclient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: object_ref TYPE REF TO zwebco_bcepsoap,&lt;/P&gt;&lt;P&gt;      input TYPE   zwebget_bceplist_soap_in,&lt;/P&gt;&lt;P&gt;      output TYPE   zwebget_bceplist_soap_out,&lt;/P&gt;&lt;P&gt;      exception TYPE REF TO cx_ai_system_fault.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  TRY.&lt;/P&gt;&lt;P&gt;      CREATE OBJECT object_ref.&lt;/P&gt;&lt;P&gt;          EXPORTING LOGICAL_PORT_NAME = 'LP1'.&lt;/P&gt;&lt;P&gt;    CATCH cx_ai_system_fault INTO exception.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRY.&lt;/P&gt;&lt;P&gt;      CALL METHOD object_ref-&amp;gt;get_bceplist&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          input  = input&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          output = output.&lt;/P&gt;&lt;P&gt;    CATCH cx_ai_system_fault INTO exception.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;Can tell me what I am missing or what steps I can take to identify the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Apr 2009 23:02:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-29T23:02:49Z</dc:date>
    <item>
      <title>Problem Developing Abap program to use  Enterprise Service Client Proxy</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-developing-abap-program-to-use-enterprise-service-client-proxy/m-p/5487413#M1255985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The method call does not require any data in the input structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is as follows :&lt;/P&gt;&lt;P&gt;REPORT  zweb_test_wsclient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: object_ref TYPE REF TO zwebco_bcepsoap,&lt;/P&gt;&lt;P&gt;      input TYPE   zwebget_bceplist_soap_in,&lt;/P&gt;&lt;P&gt;      output TYPE   zwebget_bceplist_soap_out,&lt;/P&gt;&lt;P&gt;      exception TYPE REF TO cx_ai_system_fault.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  TRY.&lt;/P&gt;&lt;P&gt;      CREATE OBJECT object_ref.&lt;/P&gt;&lt;P&gt;          EXPORTING LOGICAL_PORT_NAME = 'LP1'.&lt;/P&gt;&lt;P&gt;    CATCH cx_ai_system_fault INTO exception.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRY.&lt;/P&gt;&lt;P&gt;      CALL METHOD object_ref-&amp;gt;get_bceplist&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          input  = input&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          output = output.&lt;/P&gt;&lt;P&gt;    CATCH cx_ai_system_fault INTO exception.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;Can tell me what I am missing or what steps I can take to identify the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 23:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-developing-abap-program-to-use-enterprise-service-client-proxy/m-p/5487413#M1255985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T23:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Developing Abap program to use  Enterprise Service Client Proxy</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-developing-abap-program-to-use-enterprise-service-client-proxy/m-p/5487414#M1255986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem as You. Do you remember the solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A lot of thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jordi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 16:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-developing-abap-program-to-use-enterprise-service-client-proxy/m-p/5487414#M1255986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-05T16:46:39Z</dc:date>
    </item>
  </channel>
</rss>

