cancel
Showing results for 
Search instead for 
Did you mean: 

How to call remote SOAP service from My Dashlets?

star099
Champ in-the-making
Champ in-the-making
How to call remote SOAP service from My Dashlets?

test.get.js

function main() {
var url = "http://172.28.1.76:4466/Service.asmx?wsdl";
var connector = remote.connect("http");
var result1 = connector.call(url);
model.result2 = result1
}
main();

model.result2- is null

P.S. alfresco community 4.2 172.28.1.120:8080
service iptables stop
4 REPLIES 4

abarisone
Star Contributor
Star Contributor
Hi,
you can take a look here for some advice https://forums.alfresco.com/comment/83400#comment-83400

Regards,
Andrea

star099
Champ in-the-making
Champ in-the-making
I have Apache Tomcat/7.0.30 not Apache CXF.
SOAP Client it is simple task in PHP or ASP

But as it is correct to do it in Alfresco share (surf)?

Hi,
Apache Tomcat is a web container whereas Apache CXF is an open source services framework based on Spring framework.
Take a look here for info http://cxf.apache.org/

Regards,
Andrea

star099
Champ in-the-making
Champ in-the-making
Please write on steps what to do
in an ideal working example
https://forums.alfresco.com/comment/83400#comment-83400
on this link it is unclear to what files to make changes

it is my first experience with JAVA, JSP, Alfresco