I'm trying to create a server that takes JSON-RPC requests from a client, transforms those into non-trivial SOAP requests to a SOAP server, then takes the SOAP response and sends the client a transformed JSON response. The responses that come back from the SOAP server are potentially very complicated and nested, and I'm trying to map the XML fields to flatter JSON. The mappings wont be 1:1. As an example, we may get back a sequence of codes in the SOAP response that we want to return in the JSON response as their values from a database.I'm trying to create a server that takes JSON-R