Quantcast
Channel: SCN : Popular Discussions - SAP Process Orchestration
Viewing all 1306 articles
Browse latest View live

Obligatory transport target for business system

$
0
0

Dear All,

 

Installed Development and Quality server which on Nw 7.3 Ehp1.

Development Server is central SLD of Quality Server.While transporting Objects from Dev to Qua (Error Occurs ) Obligatory transport target for business system SID_BS not found in System Landscape Directory.

 

Regards

Adil


Calling to BPM via PI

$
0
0

Basically I have already found a solution by trial and error, but I still don't understand what's going on, maybe someone can help me understand.

 

I am trying to make a web service call

  1. from a CRM system (CRM 7.0 EhP3 SP 3), outbound interface {http://sap.com/xi/CRM/FS/Global2}NewLoanBoardingFSCreateRequest_Out
  2. via PI (double-stack, PI 7.31 SP 3)
  3. to a NW Java BPM system (NW 7.40 SP 4, inbound interface {http://sap.com/xi/FS-AO/Global}NewLoanBoardingProcessingNewLBrdngIn. The host name of the system is ilbnknw1 and the port is 50300.

 

I created an EJB for the implementation of the service provider NewLoanBoardingProcessingNewLBrdngIn and a BPM process according to note 1891861 in NW Developer Studio and deployed all of it to the NW Java BPM server.

 

There is a web service end point for NewLoanBoardingProcessingNewLBrdngIn on the NW Java BPM server the URL looks like this: http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy (visible in WS Administrator > Configuration > Connectivity > Single Service Administration > (stay on tab Service Definitions) > search for WSDL Port Type Name: NewLoanBoardingProcessingNewLBrdngIn ... I don't remember if it was created automatically during the deployment or I created it manually.)

The security settings for the end point are set like this:

Transport protocol: HTTP (not HTTPs)

HTTP Authentication: Checkmarks for Login with User ID/Password and for Logon ticket are set. (X.509 is not set and also grayed out.)

Message Authentication: No checkmarks are set.

 

I can test the above WSDL URL (http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy) from WS Navigator and it works - I don't get an error message, and in WS Administrator I see that the process is started (at Operations > Processes and Tasks > Manage Processes).

 

Now I wanted to test it from CRM. One possibility would be to go into SOAMANAGER and create a port that connects to the end point. But we prefer to go via PI. So I set up a receiver determination, interface determination and receiver agreement. The first two have no problems, the correct receiver (a business system referring to the NW Java BPM system) and the correct receiver interface are found. With the receiver agreement I was not so sure what to do and I tried different things.

 

First I thought: It's a call to a web service, let me use a web service receiver channel, i.e. Adapter Type = WS of version SAP BASIS 7.31 (I tried 7.40 because the NW Java BPM server is 7.40, but the PI doesn't like that because it's only 7.31).

I entered:

WSDL Access URL: I used the complete URL (http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy).

Authentication Method for WSDL Access: Basic Authentication using HTTP. (The other option No authentication and SSO using SAP Assertion ticket don't seem to fit.)

User name for WSDL access: A user in the NW Java BPM system.

Password for WSDL access: Password of the user

Security

Communication Security: None

Authentication Method: User ID/Password (Transport Channel Authentication)

Technical Transport Settings

Target Host: ilbnknw1

Service Name/Port: 50300

URL Access Path: /bpm/testsapcom/polnlbv0/start (this can be selected with the value help button and that was the only choice int he value help)

Then in the receiver agreement I chose this channel and entered the user and password on the NW Java system that should be used for the actual WS call (while the other one in the channel is only for accessing the WSDL) ... actually I used the same user and password for both, it has enough authorizations.

 

Result: Didn't work at all, PI showed a red flag for the message with the error WS_ADAPTER_SYS_ERROR and text System error while calling Web service adapter: Error when initializing SOAP client application: 'Error when initializing SOAP client application: "SRT: Unexpected failure in SOAP processing occurre"'

 

Question: Is this totally the wrong adapter to call to a NW Java system, or were my parameters wrong?

 

Then I found some things in the forum that said: Just use SOAP adapter, not WS adapter! And for communication between (newer releases of) PI and (new releases of) NW Java BPM it's best to use the SOAP adapter with the XI 3.0 protocol.

 

So I tried a SOAP receiver channel with XI 3.0 protocol, i.e. Adapter type SOAP with version SAP BASIS 7.31,

Transport Protocol: HTTP,

Message Protocol: change from SOAP 1.1 to XI 3.0,

Adressing Type: URL address (HTTP destination was the alternative),

Target URL: I used the whole URL (http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy),

Authentication Mode: Use Logon Data for Non-SAP system (because Logon Data for SAP system wanted a client and language, so I think it refers to ABAP systems only),

User Name: A user in the NW Java BPM system,

User Password: the matching password

(No settings in receiver agreement, just chose the channel.)

 

Result: The PI didn't show any error anymore, the flag was black-white. But on NW Administrator (Operations > Processes and Tasks > Manage Processes) I could not see the process starting!

 

Question: How is this possible? Where else could the error be seen? Are my parameters wrong? Probably not, otherwise PI should already show the error.

 

Next try: SOAP receiver channel with SOAP 1.1 protocol, i.e. Adapter type SOAP with version SAP BASIS 7.31,

Transport Protocol: HTTP,

Message Protocol: SOAP 1.1 (the default, instead of XI 3.0 in the previous attempt)

Adressing Type: URL address (HTTP destination was the alternative),

Target URL: I used the URL just up to the ? for the parameters, i.e. only http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start,

Checkmark for Configure User Authentication,

User Name: A user in the NW Java BPM system,

User Password: the matching password

At the bottom:

Checkmark for Use Query String,

SOAP Action: wsdl&mode=ws_policy

(No settings in receiver agreement, just chose the channel.)

 

Result: Success in PI (black-white flag) - and now two processes were started shortly after each other (within 15 seconds)!

 

I tested again to see if it would always trigger two process starts, but now it only started one as expected.

 

So it looks like the other process start "pushed out" a hanging previous process start? Is such a thing possible? Where could I monitor this? (Apparently not in NW Administrator > Operations > Processes and Tasks > Manage Processes).

 

So now I have a solution, I use a SOAP receiver channel with SOAP 1.1 protocol, not with XI 3.0 protocol, and certainly not thw WS adapter. But I still wonder why it's not working with the XI 3.0 protocol, even though this seems to be the most recommended way for PI and BPM to communicate in recent releases that support this, and what exactly happened there, where the first process start was "hiding" in the meantime.

Deploy HANA JDBC driver for PI 7.31

$
0
0

Hi,

 

I try to deploy the HANA JDBC driver that can be used for PI channel (JDBC).

 

I tried to install the ngdbc.jar file as a JDBC-Resource (just named it 'HANA') within the NetWeaver administrator, but the driver does not appear at the position /usr/sap/POI/J00/j2ee/cluster/server0/./temp/dbpool/_HANA/ngdbc.jar (where it is pointed by NetWeaver).

 

When monitoring the flow I get a "SAPClassNotFoundException: com.sap.db.jdbc.Driver".

 

I stumbled over some documents describing the JAR-deployment for previous versions but it seems to be different in version NW 7.31.

 

Any ideas on this topic? Thanks, Martin

Send IDoc through adapter IDoc_AAE

$
0
0

Hi, guys!


We have SAP PO version 7.4

We need to setup the unloading of the IDoc from BI in PO

I used the following sources:

http://scn.sap.com/docs/DOC-31398 

http://help.sap.com/saphelp_nw74/helpdata/en/34/66c81241874285851e2497aa6f0573/content.htm?frameset=/en/c2/91865252c84716b3b8be394851c9c0/frameset.htm

http://scn.sap.com/docs/DOC-34155  

http://scn.sap.com/people/william.li/blog/2011/05/04/configuring-pi-730-java-idoc-adapter

http://scn.sap.com/community/pi-and-soa-middleware/blog/2013/08/05/connect-multiple-sap-ecc-clients-from-java-idoc-sender-adapter-by-resource-adapter-cloning

http://scn.sap.com/community/pi-and-soa-middleware/blog/2010/10/21/pixi-pi-73-new-java-based-idoc-adapters-configuration-sender-receiver--teaser

but it doesn’t work.

I created Jco provider xi_idoc_default_pid (where PID  replaced the SID BI system)

I created the RFC in PO for BI  xi_idoc_default_ destination _pid (ping successful)

in inboundRA have in ProgrammID:  xi_idoc_default_pid

in destination - xi_idoc_default_ destination _pid

I created Sender channel (manual and default)

I created in BI in sm59 RFC T

I input   the program xi_idoc_default_pid , which was created in the first step, in field, and input

gateway and host - my PO

but the test does not pass the RFC.

Could you please tell me,  what the problem is?

I configured IDoc_AAE receiver. data arrives in BI, help me to setup up  send IDoc  from BI in PO


Thanks.

Routing JMS message from same queue to different channels.

$
0
0

From a given adapter module, is there a way of calling different communication channels?

 

The scenario: The sender of the data is JMS. One single queue contains desperate text format. Based on the content of the first 4 characters , PI has to parse it differently in its own corresponding MT. The target IDoc structure remains the same. I have multiple messageTransformBeans set up, one for each MT assuming that the data would arrive in different JMS queues. However since the data is now all heaped on to a single queue, the challenge of routing the data now lies in SAP PI.

 

HowTo - Send Test Messages to the Adapter Engine (to an Integrated Configuration) - This solution does send message directly to the IE (using 7,1), but not to the adapter engine where the messageTransformBeans exist.

 

Any solid pointers in the direction will be really helpful.

 

Regards,

Keerti

Call from BPM to PI, configuring Service Group: Following services not available in Services Registry; make sure they are published correctly and with endpoints

$
0
0

I want to make two mediated web service calls

  1. from a BPM application on a SAP NetWeaver Java with SID NW2 (it's on NW Java 7.40)
  2. via a PI system with SID PI1 (it's on on NW double-stack 7.31)
  3. to a third system (it's an ABAP system, but it doesn't really matter).


The calls are going from

NewLoanBoardingProcessingManageNewLBrdngOut and NewLoanBoardingProcessingNewLBrdngActionOut to NewLoanBoardingProcessingManageNewLBrdngIn and NewLoanBoardingProcessingNewLBrdngActionIn.

(I'm leaving the namespaces out here for brevity/readability, but if you're interested, they are all in the namespace http://sap.com/xi/FS-AO/Global and the BPM is defined in note 1891861, which sadly doesn't explain the web service configuration part.)

There is a service group (called POL_BACKEND) defined on the Java system, as part of the software component test.sap.com/polnlbv0 (the BPM process). It contains NewLoanBoardingProcessingManageNewLBrdngIn and NewLoanBoardingProcessingNewLBrdngActionIn (the two interfaces on the PI it needs to call). I can't manage to configure it (I haven't configured service groups before). Also I'm not sure if my other steps are right.


I rely on the Services Registry on the Java system NW2. Both systems, also the PI1, are configured to refer to that Services Registry.

 

In PI in the integration builder I did the following:

  1. Defined a SOAP Sender Channel with XI 3.0 as the message protocol for the Business System that represents the Java system NW2, as I read that this is optimal for the communication between SAP NW Java BPM and SAP PI. I'm using version SAP BASIS 7.31 of the SOAP sender adapter. (It didn't like 7.40, as the PI itself is only on 7.31.)
  2. Defined two SOAP Sender Agreements, for NewLoanBoardingProcessingManageNewLBrdngOut and NewLoanBoardingProcessingNewLBrdngActionOut.
  3. From the "Sender Agreement" menu on each of them I chose "Publish in SR". => I can see them show up in the Services Registry on NW2 as expected on the tab "Service Definitions" (as NewLoanBoardingProcessingManageNewLBrdngOut and NewLoanBoardingProcessingNewLBrdngActionOut). Their system is listed as PI1_XPI on ILBNKPI1 (this is the PI1 host name). I'm not sure why it generated the name as PI1_XPI, this is not the business system name. Other services show up as "PI1 on ilbnkpi1", they seem to be BASIS or PI-monitoring related (provided by SAP). Then there are services that show up as "PI1 (001) on ilbnkpi1", which we have created ourselves. (And then there are other systems, like NW2.)
  4. Then I defined a receiver determination, interface determination and receiver agreement for both services. I'm fairly certain this part is okay.

 

Now I log onto the Java system NW2 on NetWeaver Administrator and go to SOA > Application and Scenario Communication > Application Communication. I search for the software component test.sap.com/polnlbv0. It is found and shows the consumed service group POL_BACKEND, which shows the interfaces NewLoanBoardingProcessingManageNewLBrdngIn and NewLoanBoardingProcessingNewLBrdngActionIn (the ones that need to be called).

 

Originally the provider system PI1_XPI was not available in the list (next to the consumed service group name), only PI1 (001) and NW2, but after clicking Edit one can choose "Create" in the dropdown list of provider systems, and in the following dialog one can use the value help button to select provider systems that are known to the Services Registry. So now PI1_XPI is selected. (I have also tried others, including NW2, just to be sure.)

 

After clicking on Configure and going through the process, I get the error "Following services not available in Services Registry; make sure they are published correctly and with endpoints" and it lists NewLoanBoardingProcessingManageNewLBrdngIn and NewLoanBoardingProcessingNewLBrdngActionIn.

 

I don't understand how this is possible, as I can see them right there in the Services Registry, with their end points.

 

On the configuration screens the SLD System ID is prefilled as PI1.SystemHome.ilbnkpi1, this seems to be okay, as in the Services Registry on the Systems tab, when I click on PI1_XPI this is the SLD System ID that is shown. (Also I get (with a green mark) "WS connection to system "PI1_XPI on ilbnkpi1" established using user "NW2_TO_PI1"".) In the simple layout only the SLD System ID and the user and password fields are available, in advanced mode many more, but not sure if it makes sense to change anything there.

 

After returning to the start screen the processing status is "To be processed" at first and soon changes to "Failed". When I click on Show Log I see this error:

Configuration for service group [POL_BACKEND] failed. Error details:

[No endpoints found. Check if the service is configured and if its endpoints are available in the SR. Service: [{http://sap.com/xi/FS-AO/Global}NewLoanBoardingProcessingManageNewLBrdngIn]  Assigned Provider: [PI1_XPI on ilbnkpi1]

  Service Group: [POL_BACKEND]

  Service Group application: [test.sap.com/polnlbv0]

  Service Reference application: [test.sap.com/polnlbv0]

 

No endpoints found. Check if the service is configured and if its endpoints are available in the SR. Service: [{http://sap.com/xi/FS-AO/Global}NewLoanBoardingProcessingNewLBrdngActionIn]  Assigned Provider: [PI1_XPI on ilbnkpi1]

  Service Group: [POL_BACKEND]

  Service Group application: [test.sap.com/polnlbv0]

  Service Reference application: [test.sap.com/polnlbv0]

]

For more information refer to the trace with ID [C0000A1A5653000900000029000010E4]. Details: [PI1.SystemHome.ilbnkpi1.IS] provider system, [test.sap.com/polnlbv0] service group application

 

I'm not sure where exactly to check this trace ID.

 

Are my steps sensible in principle or am I going about this completely wrong?

 

I tested the end point WSDL URL that I see in the Services Registry in the WS Navigator. It doesn't work there, either, I get this error: Invalid transport binding settingsHTTP Client, does not have endpoint url specified. I.e. the first part, where it loads the list of operations, works, but the actual call fails.

How to configure CTS in Process Orchestration

SAP Process Orchestration 7.4 Installation Document

$
0
0

Hi

 

We need to Install SAP PO 7.4 on Windows 2008 r2 64bit with Oracle 11 g  .

 

1. What are the list media  Software we need to download ?

2. Can we install on MS Sql Database is that available ? install on Oracle , HANA.  ?

3. if we want to Install on HANA What is the Basic Hardware Requirement for SAP PO 7.4 ?

4. If any one share Step by Step Documents its very Helpful ?

 

 

Thanks and Regards

G.Praveen Kumar


Performance monitor not able to access in Process and Orchestration

$
0
0

Hi,

 

After doing fresh installation not able to access Proformance monitor.Message

Property profile.performance.runtime of the service com.sap.aii.af.svc is not active; activate it in ConfigTool nw

But in 7.1 java stack there is no config tool.

How to enable this.I check this link but its not working.Selection button are disable.

Monitoring Performance - Advanced Adapter Engine - SAP Library

 

Regards

Adil

Unable to launch NWDS

$
0
0

Hi,

 

I am unable to launch NWDS, Getting below error.

 

nwdserror.JPG

How to resolve this??

 

Br, Avinash M

Netweaver BPM in SAP PO

$
0
0

HI Expert,

 

Currently am working in SAP PO 7.31, i like to do scenario with Netweaver BPM. Please share me some url and documents about basics of netweaver bpm and how to integrate wit PI Scenario.

 

Regards,

Manigandan

PO Installation and NWDS

$
0
0

Dear Experts,

 

We have a brand new PO Installation. After the installation according to the guide was done we wanted to connect to the CE system from NWDS using "SAP as Java" setting. We installed the latest NWDS from https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/

https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/

Under "SAP as JAva" Settings in NWDS after entrying  the "Instance Host name" and "Instance Number" and clicking ok the popup goes away and there is no entry in the list. Also no error message whatsoever. After i had a look in "Error log" I saw this:

 

com.sap.managementconsole.datamodel.exceptions.UnauthorizedException: Invalid Response code (401). Server [http://qpmr-nw01.sap:50113/SAPControl] returned message [Unauthorized]. Http proxy info:  none

          at com.sap.managementconsole.wsclient.jaxws.JaxWsDataConverter.checkAuthorization(JaxWsDataConverter.java:1013)

          at com.sap.managementconsole.wsclient.jaxws.JaxWsDataConverter.convertException(JaxWsDataConverter.java:987)

          at com.sap.managementconsole.wsclient.jaxws.JaxWsDataLoader.getLogFiles(JaxWsDataLoader.java:1357)

          at com.sap.enginemanagement.impl.SAPInstanceImpl.isAppropriateJavaInstance(SAPInstanceImpl.java:161)

          at com.sap.enginemanagement.impl.SAPInstanceImpl.retrieveInstancePropertiesFromServer(SAPInstanceImpl.java:146)

          at com.sap.enginemanagement.impl.SAPInstanceImpl.initInstance(SAPInstanceImpl.java:104)

          at com.sap.enginemanagement.impl.SAPInstanceImpl.<init>(SAPInstanceImpl.java:58)

          at com.sap.enginemanagement.SAPInstanceFactory.getInstance(SAPInstanceFactory.java:33)

          at com.sap.enginemanagement.impl.SAPSystemManagerImpl.getSAPInstance(SAPSystemManagerImpl.java:106)

          at com.sap.enginemanagement.impl.GenericSystemListenerImpl.systemChanged(GenericSystemListenerImpl.java:35)

          at com.sap.sapmc.control.notification.SAPSystemsController$EventThread.run(SAPSystemsController.java:201)

 

What are we missing here?

 

Thanks for the helps.

 

Regards,

Koray

B2B Integration- EDISeparator receiver channel error

$
0
0


Dear Experts,

 

I'm trying to do a POC using B2B addon in SAP Process Orchestration. I've developed the flow similar to the blog http://scn.sap.com/community/b2b-integration/blog/2012/09/27/b2b-edi-inbound-step-by-step-configuration .

1.jpg

I'm stuck with the error in EDI Separator Receiver channel . I'm using only one transaction of 820 message and the EDI file is properly formed. I've tried using multiple EDI files which have one transaction and multiple transactions also.

 

Please advice.

 

Regards,

Neha

SFDC Integration with SAP PI

$
0
0

Hi Experts,

 

I am working on SFDC integration with SAP PO AEX.

I have gone through various posts/discussion on salesforce integration but I have still one open query and so writing this.

1. Is it always mandatory to get session ID from salesforce to proceed ahead with various calls?

2. Do we need to specify any user and password to get the session ID or we can send any constant?

3. I have seen guys using a JAVA mapping for getting the session ID in the SOAP Header. Is there any alternative as I am poor in java.

4. In SHort if anyone can provide me step by step procedure for an interface I will be really obliged as I have less time.

 

Thanks a ton

Anand.

Obligatory transport target for business system

$
0
0

Dear All,

 

Installed Development and Quality server which on Nw 7.3 Ehp1.

Development Server is central SLD of Quality Server.While transporting Objects from Dev to Qua (Error Occurs ) Obligatory transport target for business system SID_BS not found in System Landscape Directory.

 

Regards

Adil


Interface not getting passed to NW BPM.

$
0
0

Dear All,

 

Greetings of the day.

 

We have an SAP to Webservice async scenario, through the NW BPM.

We are facing an issue in sending the trigger message (interface to BPM is XI 3.0 compatible) from SAP to the NW BPM. We are getting the following error.


Message could not be processed.Reason: com.sap.aii.proxy.xiruntime.core.ESPXISystemFaultException: Error encountered during processing of XI request message in inbound ESP; Hint: com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException: Technical difficulties were experienced during process execution.



 

We are getting this the error when I am testing the functionality through WSNavigator or SOAP UI. (In actual scenario ABAP proxy will send the message to NW BPM).

 

I have tried testing the BPM from the Netweaver Admin and process is going into BPM. I can see the Interface which will be triggered first in the BPM, in the message monitoring.

 

Request your expertise in overcoming the error for triggering the BPM.

 

Thank you,

Best Regards,

Ajay

Steps on configuring both sender and receiver scenario for IDOC_AAE

$
0
0

Hi, all

 

I am doing a proof of concept interface on PO 7.3.1 using the new IDOC_AAE adapter. I am setting up a receiver scenario now and running into the error:

<?xml version='1.0'?>

<!-- see the documentation -->

<SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>

  <SOAP:Body>

    <SOAP:Fault>

      <faultcode>SOAP:Server</faultcode>

      <faultstring>Server Error</faultstring>

      <detail>

        <s:SystemError xmlns:s='http://sap.com/xi/WebService/xi2.0'>

          <context>XIAdapter</context>

          <code>ADAPTER.JAVA_EXCEPTION</code>

          <text><![CDATA[

com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.lang.Exception: IDoc: Connection factory name for channel IDOC_POC_Recv_IDOC is null

at com.sap.aii.adapter.soap.web.SOAPHandler.processSOAPtoXMB(SOAPHandler.java:743)

at com.sap.aii.adapter.soap.web.MessageServlet.doPost(MessageServlet.java:470)

 

I have gone through the 3 blogs:

http://wiki.sdn.sap.com/wiki/display/XI/Configuration+of+inboundRA+in+the+Java+IDoc_AAE+Adapter

http://scn.sap.com/community/pi-and-soa-middleware/blog/2010/10/21/pixi-pi-73-new-java-based-idoc-adapters-configuration-sender-receiver--teaser

http://scn.sap.com/docs/DOC-31398

 

Unfortunately, they are really for PI 7.3.1 which is dual stack, meaning there is a gateway. However, PO 731 is pure java and there is no gateway. So steps like "local = true" and creating a JCO pointing to local PI will NOT work. I have already installed a standa alone gateway server and still could not get it to work. The help.sap.com doc is also tailored for PI 7.3.1 which assumes there is a local PI gateway service. Not sure if SAP is serious about PO yet as the PO doc on help.sap.com is almost non-existent.

 

Has anyone been able to get these 2 scenarios working? I would really appreciate if you can share your knowledge.

Thanks,

Jonathan.

upgrade PI 7.1 to sap po (process orchestration) steps

$
0
0

Please provide the options and steps involved in SAP PI 7.1(PI 7.x)  to SAP PO upgrade.

MappingDocumentBuilderFactory not found

$
0
0

Hi,

 

We recently upgraded our PO to 7.31 SP 8.

 

We have a number of scenarios where we use a SOAP Lookup function where the XML response is parsed into an XML format using DocumentBuilderFactory class.

Before the upgrade this worked fine. After the upgrade, it still works fine when testing the mapping in the ESR. However at runtime I get a mapping exception :

 

Exception:[javax.xml.parsers.FactoryConfigurationError: Provider com.sap.aii.ib.server.mapping.execution.jaxpfactories.MappingDocumentBuilderFactory not found]

 

Does anyone have a clue what the reason could be ?

 

Thanks,

 

Jan

WSDL from NWDS

$
0
0

Hello consultants,

 

I`m learning SAP PO using NWDS. But I`m struggling - how can I get WSDL URL for SOAP service interface?

 

It is possible to get it from old java app for Integration Directory - but I cant believe, that its not possible to get WSDL from NWDS or web interface - SOA probably?

Viewing all 1306 articles
Browse latest View live




Latest Images