Author Topic: How to pass port number on EthernetIPforCLXComm  (Read 1791 times)

Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
How to pass port number on EthernetIPforCLXComm
« on: August 15, 2016, 10:34:53 AM »
Hello,

We're trying to connect to remote allen bradley logix PLC device.
But how we can give the the port parameter for the EthernetIPforCLXComm?

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5283
    • View Profile
    • AdvancedHMI
Re: How to pass port number on EthernetIPforCLXComm
« Reply #1 on: August 15, 2016, 10:38:54 AM »
After you add the driver to the form, in the Properties Window you can change the Port property. The default is 44818 which is the standard Ethernet/IP port.

Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #2 on: August 15, 2016, 10:41:32 AM »

We do not use the form, we are developing a web application.

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5283
    • View Profile
    • AdvancedHMI
Re: How to pass port number on EthernetIPforCLXComm
« Reply #3 on: August 15, 2016, 10:45:01 AM »
You would then use the Port property

Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #4 on: August 15, 2016, 11:04:34 AM »
Cant see port property here;

-----------------------------------------------------------------------------------
#region Assembly AdvancedHMIDrivers.dll, v1.0.0.0
// C:\Users\Volkan\Documents\Visual Studio 2013\Projects\PLC_TEST\PLC_TEST\lib\AdvancedHMIDrivers.dll
#endregion

using MfgControl.AdvancedHMI.Drivers;
using System;
using System.ComponentModel;
using System.Diagnostics;

namespace AdvancedHMIDrivers
{
    public class EthernetIPforCLXComm : Component, IComComponent
    {
        public EthernetIPforCLXComm();
        [DebuggerNonUserCode]
        public EthernetIPforCLXComm(IContainer container);

        public bool AsyncMode { get; set; }
        public bool DisableSubscriptions { get; set; }
        public string IPAddress { get; set; }
        [Category("Communication Settings")]
        public int PollRateOverride { get; set; }
        public int ProcessorSlot { get; set; }
        public object SynchronizingObject { get; set; }

        public event EthernetIPforCLXComm.PLCCommEventHandler DataReceived;
        public event EventHandler UnsolictedMessageRcvd;

        public static string DecodeMessage(int msgNumber);
        protected override void Dispose(bool disposing);
        public CLXTag[] GetTagList();
        //
        // Summary:
        //     Synchronous read of any data type this function returns results as a string
        //
        // Parameters:
        //   startAddress:
        public string ReadAny(string startAddress);
        public string[] ReadAny(string startAddress, int numberOfElements);
        //
        // Summary:
        //     Convert a string to an array of words Can be used when writing a string into
        //     an integer data table
        //
        // Parameters:
        //   source:
        public static int[] StringToWords(string source);
        public int Subscribe(string PLCAddress, short numberOfElements, int PollRate, IComComponent.ReturnValues CallBack);
        public int UnSubscribe(int ID);
        //
        // Summary:
        //     Convert an array of integers to a string This is used when storing strings
        //     in an integer data table
        //
        // Parameters:
        //   words:
        public static string WordsToString(int[] words);
        //
        // Summary:
        //     Convert an array of integers to a string This is used when storing strings
        //     in an integer data table
        //
        // Parameters:
        //   words:
        //
        //   index:
        public static string WordsToString(int[] words, int index);
        //
        // Summary:
        //     Convert an array of integers to a string This is used when storing strings
        //     in an integer data table
        //
        // Parameters:
        //   words:
        //
        //   index:
        //
        //   wordCount:
        public static string WordsToString(int[] words, int index, int wordCount);
        //
        // Summary:
        //     Write a single floating point value to a data table The startAddress is in
        //     the common form of AB addressing (e.g. F8:0)
        //
        // Parameters:
        //   startAddress:
        //
        //   dataToWrite:
        public int WriteData(string startAddress, float dataToWrite);
        //
        // Summary:
        //     Write a single integer value to a PLC data table The startAddress is in the
        //     common form of AB addressing (e.g. N7:0)
        //
        // Parameters:
        //   startAddress:
        //
        //   dataToWrite:
        public int WriteData(string startAddress, int dataToWrite);
        //
        // Summary:
        //     Write a string value to a string data table The startAddress is in the common
        //     form of AB addressing (e.g. ST9:0)
        //
        // Parameters:
        //   startAddress:
        //
        //   dataToWrite:
        public string WriteData(string startAddress, string dataToWrite);
        //
        // Summary:
        //     Write multiple consectutive floating point values to a PLC data table The
        //     startAddress is in the common form of AB addressing (e.g. F8:0)
        //
        // Parameters:
        //   startAddress:
        //
        //   numberOfElements:
        //
        //   dataToWrite:
        public int WriteData(string startAddress, int numberOfElements, float[] dataToWrite);
        //
        // Summary:
        //     Write multiple consectutive integer values to a PLC data table The startAddress
        //     is in the common form of AB addressing (e.g. N7:0)
        //
        // Parameters:
        //   startAddress:
        //
        //   numberOfElements:
        //
        //   dataToWrite:
        public int WriteData(string startAddress, int numberOfElements, int[] dataToWrite);

        public delegate void PLCCommErrorEventHandler(object sender, PLCCommErrorEventArgs e);

        public delegate void PLCCommEventHandler(object sender, PLCCommEventArgs e);

        public delegate void ReturnValues(string Values);
    }
}

-----------------------------------------------------------------------------------

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5283
    • View Profile
    • AdvancedHMI
Re: How to pass port number on EthernetIPforCLXComm
« Reply #5 on: August 15, 2016, 12:17:22 PM »
What version of AdvancedHMI are you using?

Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #6 on: August 15, 2016, 12:29:26 PM »
v 1.0

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5283
    • View Profile
    • AdvancedHMI
Re: How to pass port number on EthernetIPforCLXComm
« Reply #7 on: August 15, 2016, 12:35:31 PM »
There is no V1.0, it has to be 3.xx

If you right click any of the projects in Solution Explorer and select properties, then select the Application tab, then Assembly Information, it will show you the version.


Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #8 on: August 15, 2016, 12:38:27 PM »

Assembly AdvancedHMIDrivers.dll, v1.0.0.0

Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #9 on: August 15, 2016, 12:40:44 PM »
I'm not sure, I downloaded a few months ago from SourceForge.net

Volkan

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #10 on: August 15, 2016, 12:51:10 PM »
Ok,
I downloaded the v399n , but unfortunately there is no property port in EthernetIPforCLXCom.vb file

bachphi

  • Hero Member
  • *****
  • Posts: 644
    • View Profile
Re: How to pass port number on EthernetIPforCLXComm
« Reply #11 on: August 15, 2016, 01:17:49 PM »
lol, version a does have it.
===================================================
This is NOT alt.read.my.mind.
No such thing is sh^t-for-brains unless you are posting to alt.read.my.mind.
===================================================