user9585476
user9585476

Reputation: 3

Using SilverStripe framework to consuming Soap API

I haven’t found any document of consuming Soap API in SilverStripe. Do I need to include any add-on or module to achieve that. Is there any one who can share an example of that? Cheers

Upvotes: 0

Views: 206

Answers (1)

scrowler
scrowler

Reputation: 24406

In SilverStripe 3 you can use RestfulService, however it has been deprecated and removed in SilverStripe 4.

You'd be best off creating your own implementation using something like Guzzle.

Short answer: you'll need to implement something yourself to retrieve data from a SOAP API.

Upvotes: 1

Related Questions