SOAP

  • Talking SOAP with C/C++

    This was a challenge I must admit. There wasn't alot of API's to find that handles SOAP-requests. I ended up with one that I tried and failed and tried again. gSOAP. About gSOAP you can find here: www.genivia.com. I downloaded the source from sourceforge which is an opensource version. (I don't recommend installng from your OS-distributor. I yhink there were some source-files that were missing that you need). See here: https://sourceforge.net/projects/gsoap2/. Depending on your system, there are some options whn configuring, making and installing gSOAP. My system is Linux. I had to make sure I had Automake, Bison, Flex openssl, and zlib(everything). The INSTALL.txt file contains all information about how-to install for your specific system.

  • Talking SOAP with C#

    This article about SOAP(client) is actually platform-specific. But programming in C# is very popular and is a big part of .NET I feel it's important to learn/get a hang of C# and its way of handling the SOAP-service. It's been a long time since the last time I used Visual Studio, but I remember it as being a very nice experience. I used to do some programming in Visual C++ and the DirectX interface. I think it was DirectX 8..or 9..using Direct3D/DirectSound and so on...but this is a digression...The point of this article is to connect to a server using the SOAP-protocol via a WSDL. I think using the WSDL is the more simple way, and it's easy to use. Must admit that this is the first time I appoach C#. I went through a "basics"-tutorial and found out that the syntax and language was quite like C, but also a little bit like Java(even though I do not have a lot of experience programming Java).

  • Talking SOAP with Java

    I never went into the Java-craze back in around the 2000's. I thought it was slow and I liked C/C++. But things have changed. PC's are getting faster and the "slowness" is almost gone. But knowing something about Java is a neccessity. The market for Java is enormous, and it's used almost everywhere. Still not a fan, but feel I have to get through this after I started this series of "Talking about SOAP .."-articles. So here I go again: Objective is to find/and use an API for Java that downloads and creates code in Java for communicating with a SOAP-server.

  • Talking SOAP with PHP and Python

    I don't do much programming anymore but sometimes it's nice to see how things work in the environment I work. So....my worksituation is that we use a remote WMS (warehouse management system). And there are a bunch of clients that need to communicate with that system. Most people/clients (if they are not too cheap) would want to make an integration to that system. The server I believe is a windows-server that uses a SOAP-server that clients can connect to. Old interface.... but it works. The programming language(script-) i wanted to test this on, is PHP. This is the scripting language I remember best. I'm not going to go into the details of this because I do not know the details. I just found something that works.