Quantcast
Channel: SCN : Unanswered Discussions - Service-Oriented Architecture (SOA) and SAP
Viewing all 360 articles
Browse latest View live

The startup screen does not load properly

$
0
0

Dears Masters,

 

We have a problem with Soamanager: The initial screen not load propertly and not allowed to enter. Please check the image attachment.

 

We have tried reboot and review some configurations basic in soamanager whitout results

 

Thank you in advance for your comments.

 

Marcelo

Chile


ABAP Structure - Table (name for line type)

$
0
0

Hi Abaper,

 

I created a simple web service with function module (remote enabled).

The WS works great but ...

 

I would like to adapt my XML structure (request).

Actually :

<REQ>

     <USERS>

          <item>

               <USERID>?</USERID>

          </item>

     </USERS>

</REQ>

 

What I would like :

<REQ>

     <USERS>

          <USER>

               <USERID>

          </USER>

     </USER>

</REQ>

 

In SE11 i have :

- ZWS_USERS (Structure)

-- USERS (Table type - ZTT_USERS)

--- ??? (Line type - ZLT_USER)

 

How to name the line ?

I want to replace <item> by <USER>

 

I can't find how to do that ... This is probably simple but ...

 

Thanks,

Youri

disp+work.EXE dispatcher running but message server unreachable

$
0
0

i m using IDES for learning SAP MM. i m getting the above error message in process list. initially when i run sapmmc and start ECC. all the lists in "process list" will be green in colour. but dispatcher turns yellow showing the following error "running but message server unreachable". meanwhile i checked ABAP WP table in which it reads "ended" under status tab and "no" under start tab. err reads 1.

later on disp+work turns grey and no list will be there in ABAP WP table.

the guy who installed the software says "file corrupted, need to install again and demanding money again which i cant afford. please help.

SRT: Unsupported xstream found: ("HTTP Code 405 : Method Not Allowed")

$
0
0

Hi..ALL

 

I have consumed webservice in SAP succesfully.

 

1.I have created logical port using SOAMANAGER (Faced error as below).

SOAP:1,008 SRT: Couldn't create Object: ("ICF Error when creating HTTP
client object.)


2.Again i have created logical port with the help of LPCONFIG Tcode


I am trying to test the proxy class - method.

  The above error is clear and am getting below error.


SOAP 1007

SRT: Unsupported xstream found: ("HTTP Code 405  : Method Not Allowed")


Kindly suggest me ...


SOAP 1007.PNG



Regards,

Mahesh


Missing soapAction Header for method in wsdl

$
0
0

Hi guys,

 

i'm new to sap webservices and i have the following problem. I added a new method to an existing webservice (SE80->Enterprise Services->Service Provider). After adding the include i added a new operation at the "Internal View". Next step was downloading the wsdl via soamanager. After analyzing the wsdl (got an error on soapUI) i recognized that the new method has no soapAction defined. An existing method looks like:

<wsoap12:operationsoapAction="urn:sap-com:document:sap:soap:functions:mc-style:Webservice:Method" style="document" />.

The new method which i added just looks like:

<wsoap12:operationstyle="document" />.


But how can I define the soapAction. I did not find any available settings on soamanager or se80.


Thanks for helping me!

ECC webservice and consuming in .NET

$
0
0

Hi

 

We are planning to built ECC web service (HTTPS) based and consume it in .NET application.

 

I have followed few threads for creating ECC web service based on FM and it was working as expected using HTTP.

 

Below is the URL used in .NET proxy : /sap/bc/srt/rfc/sap/zws_test/110/zservice/zbinding

 

But, I do get different URLs from the webservice form ECC and SOAMANAGER

 

ECC : /sap/bc/srt/wsdl/sdef_ZWS_TEST/wsdl11/ws_policy/document?sap-client=110

 

SOAMANAGER : /sap/bc/srt/wsdl/srvc_AA6D485527B6ED1DE100000095BF14B2/wsdl11/allinone/ws_policy/document?sap-client=110

 

and .NET tam using : /sap/bc/srt/rfc/sap/zws_test/315/zservice/zbinding

 

May i know which URL to consume in .NET and how to make SSL (HTPS, Transport Channel Security) enabled, enabling this option throws an error :

[WebException: The remote server returned an error: (502) Bad Gateway.]

 

How do I make the web service as HTTPS enabled and which URL need to be used in .NET proxy ???

 

Thanks

cx_bgrfc_invalid_destination exception when calling Inbound Service

$
0
0

Hi all,

 

I'm invoking locally several enterprise (at least 5) inbound web services of a SAP ERP box, and when I invoke each of them, I get the cx_bgrfc_invalid_destination exception.

 

I'm doing this invocation using SOAPUI as a testing purpose.

 

And some of the enterprise services that I'm calling are:

 

  • EmployeeMasterDataReplicationRequest_In
  • EmployeeOrganisationalAssignmentReplicationRequest_In

 

What could I be doing wrong or missing?

 

Thanks,

 

Felipe

SAP calling thrid party WebService issue

$
0
0

Hi All,

 

I am seeing the below issue when I am trying to consume third party web service in sap. Tried different options and gone through lot of threads but I am still not able to get solution. I really need some input and help here to move little further.

1. I have created consumer proxy

 

 

2. Create logical port 'ABC' - the authentication method is http, userid/password, as part of the logical port creation I have proved the user/password details. Since I already provided in SOAMANAGER as part logical port configurations, I am not explicitly passing those credentials in my ABAP code as WS_HEADER protocol.

3. Program to execute the web service and provide input and expected to see success.

 

The below is the error I am facing.

 

Class Name: CL_SOAP_RUNTIME_CLIENT

SOAP Fault Exception caught: : Server was unable to
process request. ---> The type PageUp.WebService.PageUpPeople could not be
initialized. Unable to determine the correct instance ID for this service call!
---> Unable to determine the correct instance ID for this service
call!

 

The below is the code i am using:

 

DATA: client_proxy TYPE REF TO ZTEST_SOAP,
input TYPE ZGET_REVIEW_SOAP,
output TYPE ZGET_REVIEW_SOAP1,
oref TYPE REF TO cx_root,
text TYPE string.

DATA: ixml TYPE REF TO if_ixml,
xml_document TYPE REF TO if_ixml_document,
xml_root TYPE REF TO if_ixml_element,
xml_element TYPE REF TO if_ixml_element,
xml_node TYPE REF TO if_ixml_node.


DATA l_xstring TYPE xstring.
DATA l_string TYPE string.
DATA: lr_header_protocol TYPE REF TO if_wsprotocol_ws_header.
DATA: interface TYPE REF TO ZTEST_SOAP.
DATA: name TYPE string,
namespace TYPE string.

TRY.
    CREATE OBJECT client_proxy
      EXPORTING
        logical_port_name = 'ABC'.
  CATCH cx_ai_system_fault INTO oref.
    text = oref->get_text( ).
ENDTRY.
IF NOT text IS INITIAL.
  WRITE / text.
ENDIF.


*convert to xstring
l_xstring = cl_proxy_service=>cstring2xstring( l_string ).
IF l_string IS NOT INITIAL.
*create ixml dom document from xml xstring
CALL FUNCTION 'SDIXML_XML_TO_DOM'
EXPORTING
   xml = l_xstring
   IMPORTING
   document = xml_document
   EXCEPTIONS
   invalid_input = 1
   OTHERS = 2.
IF sy-subrc = 0 AND xml_document IS NOT INITIAL.
    xml_root = xml_document->get_root_element( ).
    xml_element ?= xml_root->get_first_child( ).
*add header element by element to soap header
     WHILE xml_element IS NOT INITIAL.
    name = xml_element->get_name( ).
    namespace = xml_element->get_namespace_uri( ).
    lr_header_protocol->set_request_header( name = name namespace = namespace dom = xml_element ).
    xml_element ?= xml_element->get_next( ).
  ENDWHILE.
ENDIF.
ENDIF.

*Fill request with to be retrieved
input-OFFER_STATUS = 'Made'.
input-filter-USER_EMAIL = 'test.ws@xxxxxxx.org'.
TRY.
CALL METHOD client_proxy->GET_REVIEW
    EXPORTING
      input  = input
    IMPORTING
      output = output.
   CATCH cx_ai_system_fault INTO oref.
    text = oref->get_text( ).
  CATCH cx_ai_application_fault INTO oref.
    text = oref->get_text( ).
  ENDTRY.

IF NOT text IS INITIAL.
  WRITE / text.
ELSE.
  WRITE 'Success'.
ENDIF.

 

 

Attached are the my logical port settings:

 

I just slightly modified the host names due to security reasons.

 

I highly appreciate your time in reviewing my question and helping me out here.

 

Thanks

Krish


SXMB_MONI (Release for processing ws) - EmployeeMasterData Replication

$
0
0

Hi all,

 

After invoking the local SAP ERP inbound Web Service that receives the Employee Master Data replication from EC (employee Central) through Boomi.

 

I can see that the message in the SXMB_MONI with status Released for Processing WS as you can see the screenshot.

 

Captura de pantalla 2015-07-06 a las 11.53.42 AM.png

 

I Have checked the SMQ2 and there is nothing in the Queues, and also I have make sure that the Queues are Registered and Activated.

 

In the SRTUTIL-> Look for Async Messages, I can see that the message is waiting. But I don't what is waiting for:

 

Captura de pantalla 2015-07-06 a las 11.58.14 AM.png

 

And in the SRT_TOOLS->bgRFC Monitor, am able to see also that the message is in 'green' status and its queued.

 

Captura de pantalla 2015-07-06 a las 12.00.30 PM.png

 

Any ideas of what I'm missing for this message to be totally executed?

 

Thanks for your inputs!

 

Felipe A. Contreras

Error while trying to connect SAP with Salesforce system

$
0
0

Hi Experts,

 

I have created proxy and logical port but when i am trying to test by executing method, I am getting below errors.

 

1.Error when calling SOAP Runtime functions: SRT: Processing error in Internet Communication Framework: (ICF Error)

2.Error when processing Web service call

3.SOAP:1.023 SRT: Processing error in Internet Communication Framework: (ICF Error when receiving the response: ICM_HTTP_SSL_ERROR)

 

Thanks in advance

 

Regards,

Sid

Consuming a BAPI as web service from PHP

$
0
0

Hi,

 

I have exposed a BAPI function Module as a web service. From the SOAMANAGER I am able to access the WSDL URL.

 

BUT when I try to consume the same web service from PHP Iam receiving below error.

 

SoapFault Object ( [message:protected] => SRT: Unexpected failure in SOAP processing occurred: ("No configuration for this HTTP server instance") [string:Exception:private] => [code:protected]



Below is the PHP code used. Currently URL is accessible only in our Internal network.



<?php

 

 

$url = "http://......_:8000/sap/bc/srt/wsdl/bndg_4E65A455F64F5D21E1000000C0A800E9/wsdl11/allinone/standard/document?sap-client=950";

$client = new SoapClient($url,

                array('login'      => "**",

                      'password'   => "**",

                      'trace'        => false,

                      'exceptions' => false));

$fcs = $client->__getFunctions();

$fcs1 = $client->__getTypes();

var_dump($fcs);

//var_dump($fcs1);

$test = $client->PoGetdetail(array("Purchaseorder"=>5500000086));

print_r($test);

?>

SAP EAF vs Togaf

$
0
0

Hello,

 

Few queries on SAP EAF space: Please help to understand..

 

1. What is the SAP road map / future prospect for SAP EAF?

2. How much different it is from TOGAF 9.1 ? (never the less TOGAF was derived from EAF, I'm aware)

3. Is EAF only for SOA or generic like TOGAF?

4. Any documentation on details of EAF ?

 

Thanks.

SOAP:1023 SRT: Processing error in Internet Communication Framework: ("Connect to www.webservicex.net:80 failed: NIECONN_REFUSED

$
0
0

Dear all,

 

i tried to implement test webservice from the following blog Consuming WebServices directly from ABAP

But when I test it I got the following error: "SOAP:1023 SRT: Processing error in Internet Communication Framework: ("Connect to www.webservicex.net:80 failed: NIECONN_REFUSED"

Error when calling SOAP Runtime functions: SRT: Processing error in Internet Communication Framework: ("Connect to www.webservicex.net:80 failed: NIECONN_REFUSED(-10)")

Exception of class CX_SOAP_CORE

 

My second problem creating the service was using the url instead of local file, I got the message:

Exception occurred in communication framework:Error in HTTP Framework:404Connection Refusedhttp://www.webservicex.net/length.asmx?WSDL

Exception of class CX_PROXY_GEN_ERROR

 

I guess that both problems has the same issue.

How can I solve the problems.

 

Best regards

Marcus

Unable to Open SOAMANAGER

$
0
0

Hi Experts,

 

 

I facing below mentioned issue while accessing tcode SOAMANAGER.

 

soa.JPG

 

 

 

Regards,

Vishnu

Virtual Interface Not Found Error...

$
0
0

I created Web Service definition ...activated it...In SOA Manager, created a binding for it...Generated WSDL link. When I check the connection in SOAP UI, it is generating "Virtual Interface Not Found" error. I am attaching the screenshot.


ES Workplace

$
0
0

Hi,

 

What happened to ES Workplace? It seems offline?

 

Tim

Integrating Magento and SAP...

$
0
0

My latest work is in intergrating Magento with SAP. Their frontend is in Magento. Suppose, for creating a customer, we need customer name and other details. These details will be coming from magento. I have created a webservice definition from bapi bapi_customer_createfromdata1.

 

What are the steps I needed to configure in SOA Manager? If you have any notes and ideas, please share.

PLEASE BRING BACK ES-WORKPLACE

$
0
0

Hi,

 

Can someone please influence someone to bring ES-Workplace back online? All the links to enterprise service documentation in help.sap.com links to es-workplace, and without es-workplace we can not discover SAP enterprise services in dialog with our customers.  

Regards

/Stig

Consuming webservice in SAP ECC

$
0
0

Hi Experts,

 

We have a requirement in which we query data from an oracle based system directly from ECC (Without using XI/PI). Oracle guys have developed an API and have shared the WSDL with us. I am trying to create a proxy using the WSDL URL in SE80, but the system is not allowing me to create the proxy using the URL. It is giving the following error message when I am trying that - 'Proxy generation terminated: Message must have exactly one part'.

 

When I reached ORACLE folks with the above message, they said that its the standard that standard they are following and splitting it into single parting is not possible. I read in one of the SCN thread that SAP NetWeaver 7, Service Pack 14 onwards should support multiparting. We are on SAP NetWeaver 7, Service Pack 21, but still getting this message. Please guide.

 

Warm Regards,

Manjunatha

how I can upgrade tc~uddi component in NW 7.1

$
0
0

hi

I have 2 SAP servers

NW 7.1 & 7.4.

On 7.4 have component sap.com\tc~uddi. Please help, how I can import or upgrade sap.com\tc~uddi on NW 7.1 for extend functionality. Where I can download tc~uddi new component for NW 7.1

Viewing all 360 articles
Browse latest View live


Latest Images