1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 <2011> 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 <2011> 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: SOAP device communication. |
From: | Dirk Zimoch <[email protected]> |
To: | Scott Baily <[email protected]> |
Cc: | EPICS Tech-Talk <[email protected]> |
Date: | Mon, 20 Jun 2011 10:58:34 +0200 |
Scott Baily wrote:
I would like to have an IOC talk to hardware that communicates using SOAP. In theory, I could setup an appropriate protocol file for Streamdevice and use a raw TCP connection to port 80. Has anyone done this? Is there a better method?
Hi Scott,I would try to do this with StreamDevice. However, StreamDevice requires that the general form of the message is always the same. In particular if you have multiple values in one message, the values should always come in the same order. In SOAP, you could in principle have arbitrary order, and arbitrary numbers of values, too. But normally a device would not change the format randomly.
On the other hand, an XML parser for EPICS may be an interesting exercise. Dirk