I'm writing opc client, using .NET API from opc foundation.

In samples I only see, where item's names are hardcoded like:

items[0] = new Opc.Da.Item();
items[0].ItemName = "blahblahblah";

What I want, is not to write names of all items by my hands. I want to load all items from server, into tree for example. How can I do it?

link|improve this question

74% accept rate
1  
Looks to me like you are looking at the wrong samples. That would be server code, far more common in OPC. – Hans Passant Sep 16 '10 at 15:24
feedback

3 Answers

up vote 1 down vote accepted

You can browse the server with the following construct:

using Opc.Da;
using Server=Opc.Da.Server;
using Factory=OpcCom.Factory;

string urlstring = string.Format("opcda://{0}/{1}/{{{2}}}", _hostName, _serverName, serverid);
Server s = new Server(new Factory(), new URL(urlstring));
ItemIdentifier itemId = null;
BrowsePosition position;
BrowseFilters filters = new BrowseFilters() {BrowseFilter = browseFilter.item};
BrowseElement[] elements = s.Browse(itemId, filters, out position);

The tags are in elements[i].Name.

link|improve this answer
yes. i used same code. but. i have folders on server... and your code doesnt show them – eba Sep 16 '10 at 14:28
feedback

You load the items from XML file. You create XML file once with as many items as you want, then you only edit it when needed. To parse it, you can use MSXML DOM, for example. There is a parser in VB.NET Parsing XML file in VB.NET using DOM. But you can can search for implementation in C#.

link|improve this answer
feedback

Well, I'm not familiar with your opc client library, but you should be able to browse the servers items. This is a common feature used by many standalone OPC-Clients.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.