<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Creating and Configuring UDP Socket with GeoEvent Processor in ArcGIS GeoEvent Server Questions</title>
    <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182894#M780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can send the UDP messages from another machine.&amp;nbsp; The UDP connector in the GeoEvent Processor will bind to a port an receive any UDP messages sent to the GEP machine at that port.&amp;nbsp; So if you are sending UDP messages from machine A to the GeoEvent Processor on machine B, then the software on machine A must address the message with Machine B's hostname or IP address, plus the port number.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is a code sample of how you might send the UDP packet in Python.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://stackoverflow.com/questions/18743962/python-send-udp-packet"&gt;http://stackoverflow.com/questions/18743962/python-send-udp-packet&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Nov 2013 19:54:29 GMT</pubDate>
    <dc:creator>RyanElliott</dc:creator>
    <dc:date>2013-11-18T19:54:29Z</dc:date>
    <item>
      <title>Creating and Configuring UDP Socket with GeoEvent Processor</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182891#M777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i want ta give real time data through UDP Socket.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;kindly let me know how to create and configure UDP Socket Input Connector With Geoevent Proceesor&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks in advance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;praveen&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 07:36:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182891#M777</guid>
      <dc:creator>praveennarayandas</dc:creator>
      <dc:date>2013-10-18T07:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating and Configuring UDP Socket with GeoEvent Processor</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182892#M778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Praveen,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your GeoEvent Processor's Manager, click "Inputs", "Add Input", and select "Receive Text from a UDP Socket".&amp;nbsp; This connector uses a very simple network transport library that binds to the port you specify and each UDP packet received is parsed by the Text adapter.&amp;nbsp; The text adapter's default settings parse the data as events separated with new-line characters so make sure you send a newline character after each event.&amp;nbsp; The values should be separated by commas.&amp;nbsp; You can change these values if they don't suit your needs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need to parse the data with a different parser (like JSON), you will need to create a different connector in Manager (under "Site" -&amp;gt; "GeoEvent Processor" -&amp;gt; "Connectors")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 18:14:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182892#M778</guid>
      <dc:creator>RyanElliott</dc:creator>
      <dc:date>2013-10-18T18:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating and Configuring UDP Socket with GeoEvent Processor</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182893#M779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does the UDP socket have to be on the same machine as the arcgis server and gep?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is on a different machine on the same network how do you direct gep input connector to that server?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 18:13:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182893#M779</guid>
      <dc:creator>LydiaThacker</dc:creator>
      <dc:date>2013-11-18T18:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating and Configuring UDP Socket with GeoEvent Processor</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182894#M780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can send the UDP messages from another machine.&amp;nbsp; The UDP connector in the GeoEvent Processor will bind to a port an receive any UDP messages sent to the GEP machine at that port.&amp;nbsp; So if you are sending UDP messages from machine A to the GeoEvent Processor on machine B, then the software on machine A must address the message with Machine B's hostname or IP address, plus the port number.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is a code sample of how you might send the UDP packet in Python.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://stackoverflow.com/questions/18743962/python-send-udp-packet"&gt;http://stackoverflow.com/questions/18743962/python-send-udp-packet&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 19:54:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/creating-and-configuring-udp-socket-with-geoevent/m-p/182894#M780</guid>
      <dc:creator>RyanElliott</dc:creator>
      <dc:date>2013-11-18T19:54:29Z</dc:date>
    </item>
  </channel>
</rss>

