- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
In SAP Business One, making HTTP request with SOAP body
You can use web services wrapper provided by SAP which allow programmer to use the services provided by DIS. To perform an easy integration, it is possible to use SoapUI in open source version. The connection is performed using login service and with reference of its wsdl, login request can be created and XML definition of message san be seen.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:log="LoginService"> <soapenv:Header/> <soapenv:Body> <log:Login> <log:DatabaseServer>192.168.90.118</log:DatabaseServer> <log:DatabaseName>DB_TestConnection</log:DatabaseName> <log:DatabaseType>dst_MSSQL2008</log:DatabaseType> <log:CompanyUsername>manager</log:CompanyUsername> <log:CompanyPassword>Kuldip</log:CompanyPassword> <log:Language>ln_English</log:Language> <log:LicenseServer>192.168.90.118:30000</log:LicenseServer> </log:Login> </soapenv:Body> </soapenv:Envelope>
To connect SAP Business One to a program, there are various options that you can try. For more details you can refer this link −
https://blogs.sap.com/2014/07/28/connecting-an-add-on-to-sap-business-one/
- Related Articles
- Making http request in React.js
- How to get the contents of the HTTP Request body in Laravel?
- Use workbench along with SAP Business One
- Explain HTTP Request in Backbone.js
- How do we connect SAP Business One with Ubercart?
- Invalid Connection String in SAP Business One
- Checking SAP Business One installation programmatically
- Recovery database SBO-COMMON in SAP Business One
- Connecting PHP directly to SAP Business One
- Connecting SAP SOAP WebService with Android application
- Explain the HTTP request-response lifecycle in ASP.NET Core.
- Parsing request Body in Node
- What is the difference between SOAP and HTTP?
- Controlling close events in SAP Business One Screen Painter
- Getting an error invalid Object Name in SAP Business One

Advertisements