Esempio n. 1
0
        /// <summary>
        /// Returns the target nodes found by following a browse path from a starting node.
        /// </summary>
        public TranslateBrowsePathsToNodeIdsResponseMessage TranslateBrowsePathsToNodeIds(TranslateBrowsePathsToNodeIdsMessage request)
        {
            try
            {
                lock (m_lock)
                {
                    // verify that the session is still valid.
                    VerifySession(request.RequestHeader, false);

                    // process each path being followed.
                    ListOfBrowsePathResult results         = new ListOfBrowsePathResult();
                    ListOfDiagnosticInfo   diagnosticInfos = new ListOfDiagnosticInfo();

                    for (int ii = 0; ii < request.BrowsePaths.Count; ii++)
                    {
                        BrowsePathResult result         = new BrowsePathResult();
                        DiagnosticInfo   diagnosticInfo = new DiagnosticInfo();

                        m_nodeManager.TranslateBrowsePath(
                            request.BrowsePaths[ii],
                            result,
                            diagnosticInfo);

                        results.Add(result);
                        diagnosticInfos.Add(diagnosticInfo);
                    }

                    // return the response.
                    TranslateBrowsePathsToNodeIdsResponseMessage response = new TranslateBrowsePathsToNodeIdsResponseMessage();

                    response.ResponseHeader  = CreateResponseHeader(request.RequestHeader);
                    response.Results         = results;
                    response.DiagnosticInfos = diagnosticInfos;

                    return(response);
                }
            }
            catch (Exception e)
            {
                throw CreateSoapFault(request.RequestHeader, e);
            }
        }
Esempio n. 2
0
        /// <summary>
        /// Returns the target nodes found by following a browse path from a starting node.
        /// </summary>
        public TranslateBrowsePathsToNodeIdsResponseMessage TranslateBrowsePathsToNodeIds(TranslateBrowsePathsToNodeIdsMessage request)
        {
            try
            {
                lock (m_lock)
                {
                    // verify that the session is still valid. 
                    VerifySession(request.RequestHeader, false);

                    // process each path being followed.
                    ListOfBrowsePathResult results = new ListOfBrowsePathResult();
                    ListOfDiagnosticInfo diagnosticInfos = new ListOfDiagnosticInfo();

                    for (int ii = 0; ii < request.BrowsePaths.Count; ii++)
                    {
                        BrowsePathResult result = new BrowsePathResult();
                        DiagnosticInfo diagnosticInfo = new DiagnosticInfo();

                        m_nodeManager.TranslateBrowsePath(
                            request.BrowsePaths[ii],
                            result,
                            diagnosticInfo);

                        results.Add(result);
                        diagnosticInfos.Add(diagnosticInfo);
                    }

                    // return the response.
                    TranslateBrowsePathsToNodeIdsResponseMessage response = new TranslateBrowsePathsToNodeIdsResponseMessage();

                    response.ResponseHeader = CreateResponseHeader(request.RequestHeader);
                    response.Results = results;
                    response.DiagnosticInfos = diagnosticInfos;

                    return response;
                }
            }
            catch (Exception e)
            {
                throw CreateSoapFault(request.RequestHeader, e);
            }
        }