digitalmars.D.learn - Newbie Question: SOAP Module
- Rick Catano (5/5) Nov 18 2013 Hello all,
- Rick Catano (2/2) Nov 19 2013 Anyone? I know it's a very basic question, but an honest and
- Adam D. Ruppe (4/6) Nov 19 2013 I don't know, but I don't think so. Maybe it wouldn't be too hard
- Rick Catano (4/10) Nov 19 2013 That's what I was thinking. Just wasn't sure if there was a
- Jacek Furmankiewicz (7/7) Nov 19 2013 is there any particular reason you are forced to use SOAP?
- Rick Catano (5/12) Nov 22 2013 The software I plan to interact with only has a SOAP interface.
Hello all, I'm new here ( first post ), and looking to get into D Development. I currently use Python as my language of choice, but am looking to transition. My first question of the D language is, is there a SOAP module that I can consume web services with?
Nov 18 2013
Anyone? I know it's a very basic question, but an honest and friendly answer will suffice.
Nov 19 2013
On Monday, 18 November 2013 at 23:49:56 UTC, Rick Catano wrote:My first question of the D language is, is there a SOAP module that I can consume web services with?I don't know, but I don't think so. Maybe it wouldn't be too hard to make out by combining http get (with curl or whatever) with an xml parser to rig something up yourself though.
Nov 19 2013
On Tuesday, 19 November 2013 at 20:38:00 UTC, Adam D. Ruppe wrote:On Monday, 18 November 2013 at 23:49:56 UTC, Rick Catano wrote:That's what I was thinking. Just wasn't sure if there was a module ready to do this. I don't mind though. I could definitely use the practice :PMy first question of the D language is, is there a SOAP module that I can consume web services with?I don't know, but I don't think so. Maybe it wouldn't be too hard to make out by combining http get (with curl or whatever) with an xml parser to rig something up yourself though.
Nov 19 2013
is there any particular reason you are forced to use SOAP? It is more or less an obsolete and generally frowned upon approach. if you were willing to adopt REST, vibe.d seems to have some nice functionality for creating REST APIs. Look at the 'Routing' section here: http://vibed.org/docs#http-server-config
Nov 19 2013
On Tuesday, 19 November 2013 at 22:05:36 UTC, Jacek Furmankiewicz wrote:is there any particular reason you are forced to use SOAP? It is more or less an obsolete and generally frowned upon approach. if you were willing to adopt REST, vibe.d seems to have some nice functionality for creating REST APIs. Look at the 'Routing' section here: http://vibed.org/docs#http-server-configThe software I plan to interact with only has a SOAP interface. But for learning sake, I'll more than likely utilize curl and handle the responses manually. Thanks guys.
Nov 22 2013