user2425490
user2425490

Reputation: 11

ServiceStack: implement existing SOAP API

Say I have an existing SOAP service which I a would like to re-implement using e.g. ServiceStack.

Is that possible - or more specifically: can I e.g. take an existing SOAP specification and implement that using ServiceStack? I haven't been able to figure this out.

Thanks, Martin

Upvotes: 1

Views: 75

Answers (1)

mythz
mythz

Reputation: 143389

You can see more information about ServiceStack's SOAP Support on the wiki.

In short, the SOAP Support works like the rest of ServiceStack where your models are the master authority and projects-out, so SOAP support is added to your existing models and not the other way round of projecting-in and imposing the SOAP spec onto your models.

Upvotes: 1

Related Questions