Hi. Is there a way to do soap client in Ktor ? Or ...
# ktor
h
Hi. Is there a way to do soap client in Ktor ? Or ktor is for rest only ?
s
HttpClient
is perfectly capable of sending and receiving XML, Jackson provides an
XmlMapper
for serialization and deserialization, and
jackson-module-kotlin
can handle automatic marshalling between XML and Kotlin classes
Past that, everything wrt SOAP-compliancy is up to you to implement, but ktor can handle the messaging layer just fine