<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://ilonsmartserver.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'SOAP'</title><link>http://ilonsmartserver.com/search/SearchResults.aspx?o=DateDescending&amp;tag=SOAP&amp;orTags=0</link><description>Search results matching tag 'SOAP'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007.1 (Build: 21119.1142)</generator><item><title>Integrate with SmartServer using REST</title><link>http://ilonsmartserver.com/forums/p/206/542.aspx#542</link><pubDate>Wed, 12 May 2010 20:22:12 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:542</guid><dc:creator>ajcronk</dc:creator><description>We are currently using the SmartServer to WebBind data points through SOAP to a remote web server.
&lt;br /&gt;&lt;br /&gt;

To send multiple data points in one message, we have to create custom UNVTs, which are sent as positional arguments in SOAP.  Example:
&lt;br /&gt;&lt;br /&gt;

&amp;lt;UCPTvalue LonFormat=&amp;quot;#8FFFFF5400040400[5].UNVT_CustomStructure&amp;quot;&amp;gt;23 45.3 17 39&amp;lt;/UCPTvalue&amp;gt;
&lt;br /&gt;&lt;br /&gt;

That is how the SOAP message is structured to send the four values: 23, 45.3, 17, 39.  The receiving web server must then parse the values based on their position.  This is not ideal, and I&amp;#39;d like things to be a bit more flexible.
&lt;br /&gt;&lt;br /&gt;

I&amp;#39;d prefer if I could structure the data in an XML format like:
&lt;br /&gt;&lt;br /&gt;


&amp;lt;message&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    &amp;lt;Pressure1&amp;gt;23&amp;lt;/Pressure1&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    &amp;lt;Pressure2&amp;gt;45.3&amp;lt;/Pressure2&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    &amp;lt;Pressure3&amp;gt;17&amp;lt;/Pressure3&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    &amp;lt;Pressure4&amp;gt;39&amp;lt;/Pressure4&amp;gt;&lt;br /&gt;
&amp;lt;/message&amp;gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;

To me, REST is the ideal way to send this kind data to a remote web server.  Make a POST to the web server endpoint with the XML data as the POST body.
&lt;br /&gt;&lt;br /&gt;

Has anyone seen anything like this?  Basically I want to send a message with key/value pairs instead of positional arguments.</description></item><item><title>about VB2008 SOAP Read DataLogger</title><link>http://ilonsmartserver.com/forums/p/195/509.aspx#509</link><pubDate>Tue, 13 Apr 2010 09:10:22 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:509</guid><dc:creator>tino</dc:creator><description>&lt;p&gt;Hi everyone&lt;/p&gt;
&lt;p&gt;I have some trouble about read datalogger (using vb2008 and framework3.5)&lt;/p&gt;
&lt;p&gt;my vbcode&lt;/p&gt;
&lt;p&gt;&amp;#39;Create an xSelect object and then specify the filter to be used&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim xSelect As New iLonWebRef.E_xSelect()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xSelect.xSelect = &amp;quot;//Item[UCPTname =&amp;nbsp;&amp;quot;//Item[@xsi:type=&amp;quot;&amp;quot;UFPTdataLogger_Cfg&amp;quot;&amp;quot;]&amp;quot;&lt;br /&gt;&amp;#39;Create an ItemColl that stores objects returned by List()function that takes an xSelect object&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim ItemColl As iLonWebRef.Item_Coll = SmartServer._iLON.List(xSelect)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39;we use an xSelect to read only the last 10 records in the Data Logger for one data point&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemColl.xSelect = &amp;quot;//Item [UCPTlastUpdate&amp;amp;gt;=&amp;quot;&amp;quot;2008-02-28T13:15:00.000+00:00&amp;quot;&amp;quot;][UCPTlastUpdate&amp;amp;lt;=&amp;quot;&amp;quot;2008-02-28T13:20:00.360+00:00&amp;quot;&amp;quot;][position()&amp;amp;gt; =last()-10][@xsi:type=&amp;quot;&amp;quot;UFPTdataLogger_Data&amp;quot;&amp;quot;]&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemColl.Item(0).UCPTname = &amp;quot;Net/LON/iLON App/Data Logger[0]&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39; Read Data Logger&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;u&gt;Dim dataLogger As iLonWebRef.Item_DataColl = SmartServer._iLON.Read(ItemColl)&lt;/u&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;u&gt;&amp;lt;-------error &amp;quot;Response is not a valid XML format&amp;quot;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;when i read itermcoll...debug show &lt;strong&gt;&lt;u&gt;Response is not a valid XML format&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Who can teach me how to revise&lt;/p&gt;
&lt;p&gt;Thank you for any suggestions&lt;/p&gt;
&lt;p&gt;Tino&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>SOAP tester Read DataLogger</title><link>http://ilonsmartserver.com/forums/p/194/506.aspx#506</link><pubDate>Mon, 12 Apr 2010 07:14:39 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:506</guid><dc:creator>tino</dc:creator><description>&lt;p&gt;Hi, i am new to iLON world and SOAP&lt;/p&gt;
&lt;p&gt;I using SOAP Tester to try read DataLogger,i can read all log files.&lt;br /&gt;So i try this sample code(from iLONSmartServer Programmer&amp;#39;s Reference page5-9)&lt;/p&gt;
&lt;p&gt;Request (data point updates recorded during a specific interval) &lt;/p&gt;
&lt;p&gt;my code&lt;/p&gt;
&lt;p&gt;&amp;lt;iLonItem&amp;gt;&lt;br /&gt;&amp;lt;xSelect&amp;gt;//Item [UCPTlastUpdate&amp;amp;gt;=&amp;quot; 2010-04-11T13:15:00.000+08:00&amp;quot;]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; [UCPTlastUpdate&amp;amp;lt;=&amp;quot; 2010-04-11T13:20:00.000+08:00&amp;quot;]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [position() =last()-64][@xsi:type=&amp;quot;UFPTdataLogger_Data&amp;quot;]&lt;br /&gt;&amp;lt;/xSelect&amp;gt;&lt;br /&gt;&amp;lt;Item&amp;gt;&lt;br /&gt;&amp;lt;UCPTname&amp;gt;Net/LON/iLON App/Data Logger[0]&amp;lt;/UCPTname&amp;gt;&lt;br /&gt;&amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;lt;/iLonItem&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;when i read ...Response show&lt;/p&gt;
&lt;p&gt;&amp;lt;SOAP-ENV:Fault&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;SOAP-ENV:faultcode&amp;gt;2&amp;lt;/SOAP-ENV:faultcode&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;SOAP-ENV:faultstring&amp;gt;Wrong format of xSelect&amp;lt;/SOAP-ENV:faultstring&amp;gt;&lt;br /&gt;&amp;lt;/SOAP-ENV:Fault&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;can someone help me...thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>soaptester source code</title><link>http://ilonsmartserver.com/forums/p/136/353.aspx#353</link><pubDate>Fri, 06 Nov 2009 18:39:11 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:353</guid><dc:creator>davidbross</dc:creator><description>&lt;p&gt;Is the source code (Visual Studio Solution/ C# Project) for the soaptester app available? It was just amazing to have the old iLON100 c sharp example to get into the nitty gritty of the wsdl. It would certainly be beneficial to those of us working on leveraging the power of the smartserver.&lt;/p&gt;
&lt;p&gt;&lt;a href="mailto:isys.dross@gmail.com"&gt;isys.dross@gmail.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Phone: 858.382.3088&lt;/p&gt;
&lt;p&gt;Dave&lt;/p&gt;</description></item><item><title>How to read data logs from Java ?</title><link>http://ilonsmartserver.com/forums/p/128/324.aspx#324</link><pubDate>Mon, 20 Jul 2009 06:14:26 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:324</guid><dc:creator>lokendar</dc:creator><description>&lt;p&gt;Hi, i am new to iLON world.. I can access data logs from C#. But unable to do so from Java. Are there any examples which i can refer for reading iLon smart server datapoints from java. &lt;/p&gt;
&lt;p&gt;I have used wsimport with the ilon wsdl file. It generated a bunch of class files. I&amp;#39;m stuck on which class file to start with .... can someone help..&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My code: &lt;/p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;&lt;font color="#7f0055" size="2"&gt;&lt;font color="#7f0055" size="2"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;b&gt;&lt;font color="#7f0055" size="2"&gt;&lt;font color="#7f0055" size="2"&gt;
&lt;p&gt;public&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;b&gt;&lt;font color="#7f0055" size="2"&gt;&lt;font color="#7f0055" size="2"&gt;static&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;b&gt;&lt;font color="#7f0055" size="2"&gt;&lt;font color="#7f0055" size="2"&gt;void&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; main(String[ args) &lt;/font&gt;&lt;b&gt;&lt;font color="#7f0055" size="2"&gt;&lt;font color="#7f0055" size="2"&gt;throws&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; MalformedURLException {&lt;/p&gt;
&lt;p&gt;&lt;/font&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; URL wsdlLocation = new URL(&amp;quot;&lt;a href="http://1.2.2.2/iLON100.WSDL"&gt;http://1.2.2.2/iLON100.WSDL&lt;/a&gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QName serviceName = new QName(&amp;quot;&lt;a href="http://wsdl.echelon.com/web_services_ns/ilon100/v4.0/wsdl/%22,%22iLON100"&gt;http://wsdl.echelon.com/web_services_ns/ilon100/v4.0/wsdl/&amp;quot;,&amp;quot;iLON100&lt;/a&gt;&amp;quot;);&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ILON100 services = new ILON100();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ILON100.create(wsdlLocation, serviceName);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ILON100PortType ports = services.getILON100HttpPort();&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemColl icoll = new ItemColl();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; icoll.getItem().add(0,new Item());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; icoll.getItem().get(0).setUCPTname(&amp;quot;XXX/YYYY/Node/datapoint&amp;quot;);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemDataColl idc = ports.read(icoll);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String s = idc.getItem().get(0).getUCPTdescription();&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;On executing, i am getting this error :&lt;/p&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;Exception in thread &amp;quot;main&amp;quot; &lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;com.sun.xml.ws.client.ClientTransportException&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;: The server sent HTTP status code 404: Not Found&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at com.sun.xml.ws.transport.http.client.HttpTransportPipe.checkStatusCode(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;HttpTransportPipe.java:203&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;HttpTransportPipe.java:179&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;HttpTransportPipe.java:94&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;DeferredTransportPipe.java:116&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at com.sun.xml.ws.api.pipe.Fiber.__doRun(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;Fiber.java:598&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;at com.sun.xml.ws.api.pipe.Fiber._doRun(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;Fiber.java:557&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at com.sun.xml.ws.api.pipe.Fiber.doRun(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;Fiber.java:542&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;at com.sun.xml.ws.api.pipe.Fiber.runSync(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;Fiber.java:439&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at com.sun.xml.ws.client.Stub.process(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;Stub.java:222&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;at com.sun.xml.ws.client.sei.SEIStub.doProcess(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;SEIStub.java:135&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;SyncMethodHandler.java:109&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;SyncMethodHandler.java:89&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;at com.sun.xml.ws.client.sei.SEIStub.invoke(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;SEIStub.java:118&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt; 
&lt;p align="left"&gt;at $Proxy36.read(Unknown Source)&lt;/p&gt;
&lt;p&gt;at com.ilonservice.main(&lt;/font&gt;&lt;/font&gt;&lt;u&gt;&lt;font color="#000080" size="2"&gt;&lt;font color="#000080" size="2"&gt;ilonservice.java:50&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;&lt;font color="#ff0000" size="2"&gt;)&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&amp;nbsp;thanks...&lt;/p&gt;
&lt;p&gt;loki&lt;/p&gt;</description></item><item><title>Event Timeout on DataServer_Read() method</title><link>http://ilonsmartserver.com/forums/p/108/269.aspx#269</link><pubDate>Fri, 01 May 2009 16:31:08 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:269</guid><dc:creator>lbrindise1</dc:creator><description>&lt;p&gt;Is there a way to avoid event timeouts on DataServer_Read() method?&amp;nbsp; Datapoints to be polled are loaded into the DS_Read().DPType[ array.&amp;nbsp; I have reduced the number of polled datapoints down to 10, and these still occasionally happen.&lt;/p&gt;
&lt;p&gt;This is a C# app using the ilon100WS Web References interface.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Any enlightenment will be greatly appreciated!&lt;/p&gt;
&lt;p&gt;Larry&lt;/p&gt;</description></item><item><title>Re: Read values from iLON for web page (linux/apache/php server)</title><link>http://ilonsmartserver.com/forums/p/78/185.aspx#185</link><pubDate>Fri, 17 Oct 2008 21:32:53 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:185</guid><dc:creator>Jam-Rolf</dc:creator><description>&lt;p&gt;Hi Richard,&lt;/p&gt;&lt;p&gt;Thank you for your quick answer. Tonight I checked my MAMP installation on my Mac/OS X system. It had PHP-SOAP installed by default. We already decided to go with PHP-SOAP for first testing, as there are some others (NuSOAP, PEAR:SOAP), but PHP-SOAP is the fastest.&lt;/p&gt;&lt;p&gt;I can connect to other SOAP web services with the methods available, so that&amp;#39;s step 1.&lt;/p&gt;&lt;p&gt;Now I wonder if there&amp;#39;s some sort of &amp;quot;open&amp;quot; SmartServer somewhere for testing purposes. We do not have a test SmartServer at the company up &amp;amp; running, and I wondered if there&amp;#39;s maybe some public available test-iLON (perhaps run by Echelon) on the web.. basically I&amp;#39;m looking for an url wih WSDL which I can use this weekend ;)&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Rolf&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Read values from iLON for web page (linux/apache/php server)</title><link>http://ilonsmartserver.com/forums/p/78/183.aspx#183</link><pubDate>Thu, 16 Oct 2008 12:17:11 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:183</guid><dc:creator>Jam-Rolf</dc:creator><description>&lt;p&gt;Hello group,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m very new to the world of building automation, open control products, iLON, SmartServer, etc.&lt;br /&gt;Currently we are looking into the possibility to read data from a SmartServer to display on a webpage running on some other server.&lt;br /&gt;What I understand so far is that it should be able to connect to the SmartServer and read &amp;quot;data&amp;quot; with the help of SOAP. Probably the data is returned in XML. Is this true? I saw some C# links.&lt;/p&gt;
&lt;p&gt;Normally we develop websites and applications based on PHP/MySQL/JavaScript/XHTML/Flash... &lt;br /&gt;I do&amp;nbsp;not see any info with keywords like &amp;quot;ilon smartserver php&amp;quot;.&lt;/p&gt;
&lt;p&gt;Any idea that what we are trying to code is not unusual? Maybe someone has any pointers where we can look (which pdf on de Echelon manual pdf for example).&lt;br /&gt;I dont think we&amp;#39;ll use Contribute for this, because it&amp;#39;s not a web page ON the iLON server..&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks for any pointes/advice where we should start looking etc.&lt;/p&gt;
&lt;p&gt;Rolf&lt;br /&gt;NL&lt;/p&gt;</description></item><item><title>Flex and the iLon</title><link>http://ilonsmartserver.com/forums/p/57/128.aspx#128</link><pubDate>Wed, 02 Jul 2008 14:15:55 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:128</guid><dc:creator>zbessler</dc:creator><description>&lt;p&gt;Has anyone tried to put flex on the iLon?&amp;nbsp;&amp;nbsp; Those graphs&amp;nbsp;are not&amp;nbsp;very good and&amp;nbsp;I have some charts already made up that&amp;nbsp;I could easily port over to use iLon data.&amp;nbsp; Flex even has a SOAP interface.&amp;nbsp; The problem is when&amp;nbsp;I try and make the same call&amp;nbsp;I get invoke failed message.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: JavaScript call SOAP XML/Webservice</title><link>http://ilonsmartserver.com/forums/p/26/123.aspx#123</link><pubDate>Wed, 25 Jun 2008 18:03:14 GMT</pubDate><guid isPermaLink="false">191c7298-8ad3-470c-9bd1-455f544871e0:123</guid><dc:creator>zbessler</dc:creator><description>&lt;p&gt;&amp;nbsp;Your message frightes me a little Tom.&amp;nbsp;&lt;/p&gt;&lt;p&gt; Here is what I am trying to do and I wonder if anyone out there can help.&amp;nbsp; I am putting together a page using Adobe Contribute, iLON vision, and some javascript.&amp;nbsp; I am trying to get points like the mac address, subnet and gateway.&amp;nbsp; None of those are points naturally on the iLON, accessible through iLON vision, but it seems there is one SOAP request that has it all sited from the programmers reference. &amp;quot;SI_NETWORK&amp;quot; However, I know a little javascript (I&amp;#39;ve been learning as I make the page) and I know nothing at all about SOAP.&amp;nbsp; I have been trying all day following different guides on the internet with no result.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So does anyone out there have a working example, or can point me to one, that were complete a SOAP request via javascript &lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>