2

as the topic suggests I can not access the SOAMANAGER transaction, and after days of gooling I am at my wits end.

My environment: - SAP NetWeaver 7.50 SP1 AS ABAP and SAP BW on SAP HANA [Developer Edition], From http://scn.sap.com/docs/DOC-41566 .

My attempts:

  • I have activated: default_host/sap/bc/webdynpro/sap/APPL_SOAP_MANAGEMENT
  • Attempted to access the SOAMANAGER with "developer" and "DDIC"

The link it tries to open: http://vhcala4hci.wdf.sap.corp:50000/sap/public/myssocntl?sap-client=001

Aside the problem that the APPL_SOAP_MANAGEMENT or the port is 0 I could not get any other problems/solutions on google. I hope someone can help.

UPDATE: SE93 -> SOAMANAGER enter image description here

If I go to SICF... Services, find the the APPL_SOAP_MANAGEMENT, do right click, and test service i get the following link:

http://vhcala4hci.wdf.sap.corp:50000/sap/bc/webdynpro/sap/appl_soap_management?sap-client=001

Though it has the same effect "Server not found". I have also attempted replacing the adress with the IP, but cane to the same result.... "Server not found".

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
stackmonkey
  • 115
  • 2
  • 11

1 Answers1

6

You need to adding domain to your host file.

C:\Windows\System32\drivers\etc\hosts

sapserverip vhcala4hci.wdf.sap.corp

mkysoft
  • 5,392
  • 1
  • 21
  • 30
  • I tried substituting the vhcala4hci.wdf.sap.corp with the servers IP (in the link) but it did not change anything, so I guess that adding the link to hosts will not make any difference? – stackmonkey Sep 16 '16 at 06:36
  • 1
    @stackmonkey sap server cannot response incoming requests which are coming from IP. You need to make request with domain name. – mkysoft Sep 16 '16 at 08:20
  • Yea that did it. Thank you. – stackmonkey Sep 16 '16 at 08:47