| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="utf-8"?>
- <ApplicationConfiguration
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ua="http://opcfoundation.org/UA/2008/02/Types.xsd"
- xmlns="http://opcfoundation.org/UA/SDK/Configuration.xsd"
- >
- <ApplicationName>Opc.Ua.Client</ApplicationName>
- <ApplicationUri>urn:localhost:UA:Opc.Ua.Client</ApplicationUri>
- <ProductUri>uri:opcfoundation.org:Opc.Ua.Client</ProductUri>
- <ApplicationType>Client_1</ApplicationType>
- <SecurityConfiguration>
- <!-- Where the application instance certificate is stored (MachineDefault) -->
- <ApplicationCertificate>
- <StoreType>Directory</StoreType>
- <StorePath>%LocalApplicationData%/OPC Foundation/pki/own</StorePath>
- <SubjectName>CN=Console Reference Client, C=US, S=Arizona, O=OPC Foundation, DC=localhost</SubjectName>
- </ApplicationCertificate>
- <!-- Where the issuer certificate are stored (certificate authorities) -->
- <TrustedIssuerCertificates>
- <StoreType>Directory</StoreType>
- <StorePath>%LocalApplicationData%/OPC Foundation/pki/issuer</StorePath>
- </TrustedIssuerCertificates>
- <!-- Where the trust list is stored -->
- <TrustedPeerCertificates>
- <StoreType>Directory</StoreType>
- <StorePath>%LocalApplicationData%/OPC Foundation/pki/trusted</StorePath>
- </TrustedPeerCertificates>
- <!-- The directory used to store invalid certficates for later review by the administrator. -->
- <RejectedCertificateStore>
- <StoreType>Directory</StoreType>
- <StorePath>%LocalApplicationData%/OPC Foundation/pki/rejected</StorePath>
- </RejectedCertificateStore>
- <!-- WARNING: The following setting (to automatically accept untrusted certificates) should be used
- for easy debugging purposes ONLY and turned off for production deployments! -->
- <AutoAcceptUntrustedCertificates>true</AutoAcceptUntrustedCertificates>
- <RejectSHA1SignedCertificates>false</RejectSHA1SignedCertificates>
- <MinimumCertificateKeySize>1024</MinimumCertificateKeySize>
-
- </SecurityConfiguration>
-
- <TransportConfigurations></TransportConfigurations>
-
- <TransportQuotas>
- <OperationTimeout>6000000</OperationTimeout>
- <MaxStringLength>1048576</MaxStringLength>
- <MaxByteStringLength>1048576</MaxByteStringLength>
- <MaxArrayLength>65535</MaxArrayLength>
- <MaxMessageSize>419430400</MaxMessageSize>
- <MaxBufferSize>65535</MaxBufferSize>
- <ChannelLifetime>-1</ChannelLifetime>
- <SecurityTokenLifetime>-1</SecurityTokenLifetime>
- </TransportQuotas>
- <ClientConfiguration>
- <DefaultSessionTimeout>-1</DefaultSessionTimeout>
- <MinSubscriptionLifetime>-1</MinSubscriptionLifetime>
- </ClientConfiguration>
- <DisableHiResClock>true</DisableHiResClock>
- <Extensions>
- </Extensions>
- <TraceConfiguration>
- <OutputFilePath>%LocalApplicationData%/log/Opc.Ua.Client.log.txt</OutputFilePath>
- <DeleteOnLoad>true</DeleteOnLoad>
- <!-- Show Only Errors -->
- <!-- <TraceMasks>1</TraceMasks> -->
- <!-- Show Only Security and Errors -->
- <!-- <TraceMasks>513</TraceMasks> -->
- <!-- Show Only Security, Errors and Trace -->
- <!-- <TraceMasks>515</TraceMasks> -->
- <!-- Show Only Security, COM Calls, Errors and Trace -->
- <!-- <TraceMasks>771</TraceMasks> -->
- <!-- Show Only Security, Service Calls, Errors and Trace -->
- <!-- <TraceMasks>523</TraceMasks> -->
- <!-- Show Only Security, ServiceResultExceptions, Errors and Trace -->
- <!-- <TraceMasks>519</TraceMasks> -->
- </TraceConfiguration>
-
- </ApplicationConfiguration>
|