Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How do I input a struct type input parameter to an XMLRPC component?

Hi all,
I've been using tXMLRPCInput recently.
I can communicate successfully with simple server funcions. By simple I mean functions that expect just an integer or string as parameters. However, I have not found any example of anyone calling a function which expects a struct as a parameter.
How do I input a struct parameter to the XMLRPC component?
i.e. {"email": "example@example.com", "first.name": "John"}
I can't give any example code because the service which I am using is private. But any help would be appreciated.
Labels (3)
2 Replies
Anonymous
Not applicable
Author

What is the data type of parameter? It should be a Java data type here, select the corresponding data type in the class column.
Best regards
Shong
Anonymous
Not applicable
Author

The type in the xmlrpc spec is known as a struct ( ), containing strings.


There is no struct type in Talend that I know of, which I why I asked here, otherwise I would have selected it from the class menu, the same way that I select strings etc.


I will try to make my example more clear.


struct: {name: "stwe", 77.email: "email_address"}

Is there anyone familiar with this use-case that can answer what the correct class is that I should be using?