# milo
**Repository Path**: Concis/milo
## Basic Information
- **Project Name**: milo
- **Description**: eclipse milo, OPC UA
- **Primary Language**: Java
- **License**: EPL-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2022-07-08
- **Last Updated**: 2023-03-02
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Eclipse Milo
[](https://ci.eclipse.org/milo/)
[](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.eclipse.milo%22%20AND%20a%3A%22milo%22)
Milo is an open-source implementation of OPC UA (currently targeting 1.03). It includes a high-performance stack (channels, serialization, data structures, security) as well as client and server SDKs built on top of the stack.
Stack Overflow tag: [milo](http://stackoverflow.com/questions/tagged/milo)
Mailing list: https://dev.eclipse.org/mailman/listinfo/milo-dev
## Maven
### Building Milo
**Using JDK 8**, run `mvn clean install` from the project root.
### Releases
Releases are published to Maven Central and snapshots to Sonatype.
#### OPC UA Client SDK
```xml
org.eclipse.milo
sdk-client
0.6.3
```
#### OPC UA Server SDK
```xml
org.eclipse.milo
sdk-server
0.6.3
```
Referencing a `SNAPSHOT` release requires the Sonatype snapshot repository be added to your pom file:
```xml
oss-sonatype
oss-sonatype
https://oss.sonatype.org/content/repositories/snapshots/
```
## Public Demo Server
An internet-facing demo server is accessible at `opc.tcp://milo.digitalpetri.com:62541/milo`.
It accepts both unsecured and secured connections. Before connecting with security you must upload your client's DER-encoded X509 certificate using the form at http://milo.digitalpetri.com.
Authenticate anonymously or with one of the following credential pairs:
- `user1` / `password`
- `user2` / `password`
- `admin` / `password`
The code powering the demo server is available here: https://github.com/digitalpetri/opc-ua-demo-server