Can Delphi create a Soap server application on Linux?

I work on creating soap servers in Delphi, and then run and interact with them, hosted on my local machine through IIS.

I have a godaddy account, which is linux hosting, and I'm curious if I can use the created Delphi Soap Servers on this hosting?

+3
source share
5 answers

I think you have 3 options:

  • Run it through Wine, which is currently very capable.
  • Build it with Kylix if you can get a copy.
  • Create it using FreePascal.
+7
source

. () , wst Free Pascal , , linux. , , .

+5

, . Delphi Windows, -, Linux.

, Free Pascal, Delphi - , .

+4

Delphi Win32. Linux. , Wine.

+2

Wine will not be a viable IMO. Typically, your SOAP service will be executed on the command line in the cgi-bin directory. Usually they have a very short lifetime (less than a second), so intensive work here is a big help.
If the system is not smart enough to know that your Win-32 application should run under Wine, and there is no need to impose an overhead on the deployment of the Wine session, this will not work.

+1
source

All Articles