•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the RSS, Web Services and SOAP section within the Web Development category of DaniWeb, a massive community of 362,346 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,835 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our RSS, Web Services and SOAP advertiser:
Views: 1559 | Replies: 1
![]() |
•
•
Join Date: May 2007
Posts: 1
Reputation:
Rep Power: 0
Solved Threads: 0
Hi!
I would like to use a webservice which offers to layout a graph structure automatically. Regarding the WSDL description it looks pretty simple:
http://cmap.ihmc.us/xml/LayoutWebService.html
You input the graph data, and you recieve back graph data including the optimal x/y coordinates. Please note that this webservice requires the data in a special XML type (called CMAP), you can find an example here:
http://cmap.ihmc.us/xml/PlantsSimple.cxl
Ok, could anyone help me using this webservice? I tried it in PHP, however I get error messages:
PLEASE HELP! THANK YOU!
I would like to use a webservice which offers to layout a graph structure automatically. Regarding the WSDL description it looks pretty simple:
http://cmap.ihmc.us/xml/LayoutWebService.html
You input the graph data, and you recieve back graph data including the optimal x/y coordinates. Please note that this webservice requires the data in a special XML type (called CMAP), you can find an example here:
http://cmap.ihmc.us/xml/PlantsSimple.cxl
Ok, could anyone help me using this webservice? I tried it in PHP, however I get error messages:
<html>
<body>
<?php
//This is the XML data of the sample graph put in one long string
$myCmap = '<?xml version="1.0" encoding="UTF-8"?><cmap xmlns="http://cmap.ihmc.us/xml/cmap/" xmlns:dc="http://purl.org/dc/elements/1.1/"><res-meta><dc:title>Plants</dc:title><dc:description>How do plants grow?</dc:description></res-meta><map><concept-list><concept id="1" label="Plants" /><concept id="2" label="Leaves" /></concept-list><linking-phrase-list><linking-phrase id="3" label="have" /></linking-phrase-list><connection-list><connection from-id="1" to-id="3" /><connection from-id="3" to-id="2" /></connection-list><concept-appearance-list><concept-appearance id="1" x="10" y="10" /><concept-appearance id="2" x="10" y="10" /></concept-appearance-list><linking-phrase-appearance-list><linking-phrase-appearance id="3" x="10" y="10" /></linking-phrase-appearance-list></map></cmap>';
//Here we call the WSDL to use the soap webservice correctly
$client = new SoapClient('http://cmap.ihmc.us/xml/LayoutWebService.wsdl');
//Now we call the function 'layout' of the webservice and hand over the string
$result = $client->layout($myCmap);
//The returned result is displayed
echo $result;
?>
</body>
</html>PLEASE HELP! THANK YOU!
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb RSS, Web Services and SOAP Marketplace
- Creating Webservice (JSP)
- Webservice (VB.NET)
- Webservice (ASP.NET)
- Calling C# webservice from VC++ 6 (C++)
- How to maintain session for Web Services Object? (VB.NET)
Other Threads in the RSS, Web Services and SOAP Forum
- Previous Thread: Info from other page
- Next Thread: Local root folder (original files) missing after imported to XML - Help



Linear Mode