Soap Articles

Found 6 articles

Error in XML document while processing SOAP response

Johar Ali
Johar Ali
Updated on 13-Mar-2026 351 Views

When working with SOAP web services, you may encounter XML document errors while processing SOAP responses. To debug and trace these issues effectively, you should use a SOAP extension in your client application. SOAP extensions allow you to intercept and examine SOAP messages at different stages of processing, making it easier to identify where XML parsing errors occur. Configuration To implement SOAP tracing, you need to configure the SOAP extension in your application's web.config file. Add the following configuration within the section − ...

Read More

Difference Between RPC and SOAP

Md. Sajid
Md. Sajid
Updated on 10-Aug-2023 3K+ Views

RPC and SOAP are two methods for implementing remote procedure calls between distributed systems. SOAP is a protocol that encodes messages in XML and transports them through HTTP or HTTPS. Remote Procedure Call (RPC) is a protocol that allows a client application to call a remote server's method or function as if it were a local function call. Read this article to find out more about RPC and SOAP and how they are different from each other. What is RPC? Remote Procedure Call (RPC) is a protocol that allows a client application to call a remote server's method or function ...

Read More

Difference between REST API and SOAP API

Mahesh Parahar
Mahesh Parahar
Updated on 24-Feb-2020 13K+ Views

As we know that each machine understand and deals in its different language or input so web-services are something which are required for inter communication between machines and to exchange data between them. In order to implement some set of restrictions over their communication some set of rules and regulations are defined which are known as web-services which basically defines the format and type of data that need to be exchanged and specifically a contract which both machines should be aware of before taking part in communication.This communication system can be categorized into two types, namely Simple Object Access Protocol ...

Read More

Interacting SAP and Navision using 3rd party applications

Abhinanda Shri
Abhinanda Shri
Updated on 16-Dec-2019 258 Views

There are many middleware tools that work as middleware for integrating different applications. There exists a vast variety of them but choosing a correct one is based on the applications being integrated.For integrating the third-party application with either SAP or Navision, you can use Apache Camel. Also, SAP provides a framework - SAP PI - SAP NetWeaver Process Integration.Lately, SAP Business One has emerged as the preferred choice for integration of third-party applications with SAP. It is highly preferred by developers as it provides vast options for handling various use cases. Its working is based on either of the two ...

Read More

Not able to access SOAP Manager in SAP server

Abhinaya
Abhinaya
Updated on 30-Jul-2019 171 Views

SAP server will not respond to request having IP but not the domain name. So you need to just add the domain to your host file. You can find the host files in host folder within drivers/etc folder. That should resolve your issue.

Read More

Connecting SAP SOAP WebService with Android application

SAP Expert
SAP Expert
Updated on 30-Jul-2019 383 Views

You are passing parameter in URL like this: http://XXX.com/xyz/api/sap-client=100&sap-user=username&sap-password=xxxxx"Instead of this, you should pass parameter like this: request.addProperty("sap-client", "100"); request.addProperty("sap-user", "*"); request.addProperty("sap-password", "*");

Read More
Showing 1–6 of 6 articles
« Prev 1 Next »
Advertisements