Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tSOAP component error

0683p000009MDj1.jpg 
Hi all,
Im trying to run the attached job for simple SOAP message to send with a variable but im getting error eveytime i try to run. Can someone help resolve the issue?

the error;
Error in the component's properties 0683p000009M9p6.pngyntax error, insert ")" to complete MethodInvocation
Syntax error, insert ";" to complete Statement
Thanks,
Melih
Labels (3)
3 Replies
Anonymous
Not applicable
Author

You need to escape the double quotes in you message.
i.e. \"
Otherwise the act as String terminators.
Anonymous
Not applicable
Author

thanks.
As i remove the double quotes inside the message, i got the following error this time;
Exception in component tSOAP_2
com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: java.security.PrivilegedActionException: com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Bad response: (400Bad Request
at com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection.call(Unknown Source)
at org.talend.soap.SOAPUtil.invokeSOAP(SOAPUtil.java:109)
at demo_project_melih.asdasd_0_1.asdasd.tSOAP_2Process(asdasd.java:515)
can you also help with this error?
Anonymous
Not applicable
Author

tal Told you to escape the double quotes in your message not to remove them.
You should have something like :
"<soapenv:Envelope xmlns:soapenv=\"\" xmlns:tem=\"\"> etc...
To escape double quotes, caracter '\' is used.