Recently I was working on web services proxy. I got 2 web services proxy. UI will call Proxy A to let say create a record. then what Proxy A will do is to call Proxy B to do the actual task which create the record (For some reason must go through Proxy A) now the problem is When UI call Proxy A, Proxy A will pass the objectA to Proxy B createRecord method which take in another different object type. Anyone came across this problem before can give me some suggestion. Instead of convert object A to object B.
XML-RPC object mapping
368 Views Asked by user236501 At
1
There are 1 best solutions below
Related Questions in PROXY
- Bulletproof HTTP Monitor for iOS
- HTTP to HTTPS mapping using proxy servers
- Serving external webpages through a single website
- I dont know how to add Proxy to my Phantomjs script
- How to configure standalone Jetty 9 as a reverse proxy to a node app?
- How to wait inside a method, till other method is completed
- Working on two different Git Organization repos using two different credentials in proxy mode
- How to publish wsdl when using different endpoints in proxy with WSO2?
- npm doesn't download packages (connect ETIMEDOUT)
- Browsersync LiveReload on Proxy Server
- Can the HTTP method "PATCH" be safely used across proxies etc.?
- redirect https to http for content filtering
- Uncaught SoapFault exception: [HTTP] Proxy Authentication Required
- Using phantomjs print proxy it used to access website
- How to set up a reverse proxy in nodejs for multiple targets?
Related Questions in SERVICE
- Debugging Windows Services while starting
- Error in Calling some service in WCF Client
- i want to create a service that does the login functionality?
- I run an EXE program from a Windows Service but I can't see form C#?
- Android check WIFI status (disconnected or user changed WIFI)
- Having two sequential steps running within a windows service
- Approach for performing long running tasks in .NET
- android - How to get a iBecon detection state when I kill app from Background?
- Symfony2 global function in entity
- Return more that one entity in RESTful response?
- angular unit testing $scope.$on in a service not working
- Are there drawbacks to leaving a SqlConnection open long-term?
- Android control music with headset buttons in a service
- Socket in service on Android writing to server but not reading
- What does the dot mean in Symfony service names?
Related Questions in XML-RPC
- Azure Wordpress deny xmlrpc
- Register new user as authenitcated user in drupal using xml-rpc
- xmlrpc help in java to implement for reverse proxy server
- Ripcord is not working in live server
- xmlrpclib error 'module not found' when trying to access gandi api
- Perl XML-RPC output format/schema
- Python 3 iterate json return object
- Python: use xmlrpc module with a server requiring authentication
- PHP XML-RPC server return code/error do not show in Perl XML-RPC client
- Java XML RPC Client and server
- Android Studio 2.2 Duplicate files exception
- php xmlrpc search error odoo 10
- Laravel scheduler throwing error on executing xml_decode()
- Wordpress xml-rpc client using idhttp fail with EIdConnClosedGracefully on android
- Passing parameters using XML-RPC client in Python
Related Questions in DATA-MAPPING
- Orika Mapping to JAXBElement<>
- Symfony assert type vs One-to-One mapping
- Linq data mapping with Ms Access database: "Missing semicolon (;) at end of SQL statement."
- Ruby DataMapper: is there an equivalent to Java Hibernate' component mapping?
- Scala Database Mapping Library Similar to iBATIS
- R Copy one dataframe to another using data dictionary
- data mapping and lazy propagation in segment tree
- SSIS Datatype issue with different options
- XML-RPC object mapping
- Single Value Expression in When Then Aggregate Function TSQL
- How to stop rendering react component every data file while mapping
- How to Import xPath fields of XML to Pimcore DataDirector dataport raw data fields?
- Data cannot be displayed on UI kbar with useQuery
- Doing data mapping for each value in a df
- Data Mapping between two different Database Schemas
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Did you thought to use xsl in order to transform you ProxyA request into ProxyB request? http://www.w3.org/Style/XSL/