Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Learning Path - IT Professionals

Target Audience

Overview

FrameworX serves diverse professionals across the industrial automation spectrum. This guide provides tailored learning paths for  IT Professionals, helping you focus on the most relevant features and capabilities for your role. Each path includes specific tutorials, exercises, and real-world scenarios designed to accelerate your proficiency.

Learning Path For IT Professionals

...

IT professionals managing industrial systems integration, cybersecurity, databases, and enterprise connectivity

...

in IT/OT

...

convergence environments.

Learning Objectives

By completing this path, you will:

...

  • Implement secure authentication systems

...

  • Integrate with enterprise databases

...

  • Deploy web-based solutions

...

  • Configure REST APIs and web services

...

  • Establish cybersecurity best practices

Week 1: Foundation

...

Day 1-2: Database Integration

...

Production Database Schema

Code Block
languagesql

...

CREATE TABLE ProductionData (
    ID INT IDENTITY(1,1) PRIMARY KEY,
    Timestamp DATETIME NOT NULL,
    ProductCode VARCHAR(50),
    Quantity INT,
    Quality FLOAT,
    LineID INT,
    OperatorID VARCHAR(50)
);

CREATE TABLE BatchRecords (
    BatchID VARCHAR(50) PRIMARY KEY,
    StartTime DATETIME,
    EndTime DATETIME,
    Recipe VARCHAR(100),
    Status VARCHAR(20)
);

Exercise: Configure Database Connection

  1. Navigate to Datasets → Connections
  2. Add SQL Server connection:
    • Server:

...

    • SQLServer01

...

    • Database:

...

    • Production

...

    • Authentication:

...

    • Windows

...

    • Pool

...

    • Size:

...

    • 10
  1. Create real-time query:

    Code Block
    languagesql
    SELECT TOP 100 *

...

  1. 
    FROM ProductionData

...

  1. 
    WHERE Timestamp > DATEADD(hour, -1, GETDATE())
    ORDER BY Timestamp DESC
    


  2. Test connection and verify data retrieval

Day 3-4: Web Deployment

Setting Up Web Clients

...

Web Server Configuration

...

Component

Configuration

IIS Setup

Install IIS with WebSocket support

Application Pool

Configure .NET CLR version

SSL Certificate

Install and bind certificate

FrameworX Web

Enable web server, set ports

Authentication

Configure Windows/Forms auth

Client URL

https://server/frameworkx

...

Lab: Deploy Secure Web Access

  1. Generate SSL certificate
  2. Configure HTTPS binding on port 443
  3. Enable Windows authentication
  4. Set up application pool:
    • .NET CLR Version: v4.0
    • Identity: ApplicationPoolIdentity
    • Recycling: Daily at 3 AM
  5. Test from remote browser
  6. Monitor performance metrics

Day 5: Security Implementation

Security Architecture

...

Layers

Layer

Components

Implementation

Network Security

Firewall rules, VLAN segmentation

Configure DMZ, isolate OT network

Application Security

Authentication, RBAC, Audit logging

AD integration, role mapping

Data Security

Encryption at rest, TLS in transit

Configure certificates, backup encryption

Security Configuration Checklist

  1. Network segmentation implemented
  2. Firewalls configured
  3. SSL certificates installed
  4. Active Directory integrated
  5. Role-based access configured
  6. Audit logging enabled
  7. Backup strategy implemented
  8. Disaster recovery tested

Week 2: Advanced

...

Security Layers:
???????????????????????????????????
? Network Security                ?
? • Firewall rules               ?
? • VLAN segmentation           ?
???????????????????????????????????
             ?
???????????????????????????????????
? Application Security            ?
? • Authentication (AD/LDAP)     ?
? • Role-based access            ?
? • Audit logging                ?
???????????????????????????????????
             ?
???????????????????????????????????
? Data Security                   ?
? • Encryption at rest           ?
? • TLS in transit              ?
? • Backup encryption           ?
???????????????????????????????????

...

Topics

Day 1-2: Enterprise Integration

REST API

...

Configuration

Code Block
languagejavascript

...

const apiConfig = {
    baseURL: 'https://frameworkx-server/api',
    endpoints: {
        tags: '/tags',
        alarms: '/alarms',
        historical: '/historian'
    },
    authentication: {
        type: 'Bearer',
        token: 'your-api-token'
    }
};

// GET current tag values
async function getTagValues(tagNames) {
    const response = await fetch(

...

`${apiConfig.baseURL}/

...

tags`, {
        method: 'POST',
        headers: {
            'Authorization': 

...

`Bearer ${apiConfig.authentication.token}`,
            'Content-Type': 'application/json'
        },
        body: JSON.stringify({ tags: tagNames })
    });
    return response.json();
}

Exercise: Create ERP Integration

  1. Design data exchange schema
  2. Configure REST endpoints:
    • GET /api/production/current
    • POST /api/production/batch
    • GET /api/quality/metrics
  3. Implement OAuth 2.0 authentication
  4. Schedule data

...

  1. synchronization (every 15 minutes)
  2. Add error handling and retry logic

Day 3-4: Cloud Deployment

...

Docker Deployment Configuration

Code Block
languageyaml

...

version: '3.8'
services:
  frameworkx:
    image: frameworkx:10.1
    ports:
      - "9000:9000"
      - "443:443"
    environment:
      - DB_CONNECTION=Server=azure-sql.database.windows.net
      - STORAGE_ACCOUNT=https://storage.blob.core.windows.net
      - IOT_HUB=frameworkx-hub.azure-devices.net
    volumes:
      - ./config:/app/config
      - ./data:/app/data

Day 5: Performance

...

Monitoring

System Monitoring

...

Script

Code Block
languagepowershell

...

$server = "FrameworX-Server"
$metrics = @{
    CPU = (Get-Counter "\Processor(_Total)\% Processor Time").CounterSamples.CookedValue
    Memory = (Get-Counter "\Memory\Available MBytes").CounterSamples.CookedValue
    Disk = (Get-Counter "\PhysicalDisk(_Total)\% Disk Time").CounterSamples.CookedValue
    Network = (Get-Counter "\Network Interface(*)\Bytes Total/sec").CounterSamples.CookedValue
}

# Send to monitoring system
Send-MetricsToSplunk -Server $server -Metrics $metrics

...


IT Professional Toolkit

Security Checklist

  • Network segmentation implemented
  • Firewalls configured
  • SSL certificates installed
  • Active Directory integrated
  • Role-based access configured
  • Audit logging enabled
  • Backup strategy implemented
  • Disaster recovery tested
  • Penetration testing completed
  • Security policies documented

Database Optimization Guide

Task

Query

Command

Purpose

Index Analysis

sp_helpindex 'TableName'

Identify missing indexes

Query Performance

SET STATISTICS TIME ON

Measure execution time

Maintenance

Database Integrity

DBCC CHECKDB

Database integrity

Check database health

Backup

BACKUP DATABASE TO DISK

Regular backups

Integration Patterns

Pattern

...

1:

...

ERP

...

Integration

...

Code Block
ERP 

...

? REST API 

...

? FrameworX 

...

? Production

...

Pattern

...

2:

...

Cloud

...

Analytics

...

Code Block
FrameworX 

...

? MQTT 

...

? IoT Hub 

...

? Analytics

...

Pattern

...

3:

...

Reporting

...

Code Block
FrameworX 

...

? SQL 

...

? Power BI 

...

? Dashboards

...


Network Ports Reference

Service

Port

Protocol

Direction

FrameworX Runtime

9000

TCP

Inbound

Web Client

443

HTTPS

Inbound

SQL Server

1433

TCP

Outbound

OPC UA

4840

TCP

Both

MQTT

8883

TCP/TLS

Outbound

REST API

443

HTTPS

Inbound

Troubleshooting Guide

Issue

Diagnosis

Solution

Web client connection failed

Check IIS logs

Verify SSL certificate binding

Database timeout

SQL Profiler trace

Optimize queries, add indexes

API authentication failure

Check token expiry

Refresh OAuth token

High memory usage

Performance Monitor

Adjust application pool settings

Slow page load

Network trace

Enable compression, CDN

Certification Path

FrameworX IT Specialist

  • Prerequisites: FrameworX Certified Developer + IT background
  • Focus Areas: Security implementation, database optimization, web deployment
  • Format: Online exam + security audit project
  • Duration: 4 hours

Additional Resources

Certification Paths

Available Certifications

CertificationTarget AudiencePrerequisitesExam Topics
FrameworX Certified DeveloperAll pathsBasic trainingConfiguration, displays, basic scripting
FrameworX IT SpecialistIT ProfessionalsFCD + IT backgroundSecurity, databases, web deployment

Next Steps

Continue Learning

  1. Hands-On Practice - Build sample projects
  2. Community Forum - Join discussions
  3. Advanced Training - Specialized courses
  4. Certification - Validate your skills
  5. Real Projects - Apply knowledge

Resources

...