diff --git a/bsmd.dbh/Properties/Settings.Designer.cs b/bsmd.dbh/Properties/Settings.Designer.cs
index d5640b4e..b3e3c500 100644
--- a/bsmd.dbh/Properties/Settings.Designer.cs
+++ b/bsmd.dbh/Properties/Settings.Designer.cs
@@ -80,7 +80,7 @@ namespace bsmd.dbh.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
+ [global::System.Configuration.DefaultSettingValueAttribute("test/bsmd_2_dbh")]
public string RemoteIncomingFolder {
get {
return ((string)(this["RemoteIncomingFolder"]));
@@ -89,7 +89,7 @@ namespace bsmd.dbh.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("")]
+ [global::System.Configuration.DefaultSettingValueAttribute("test/dbh_2_bsmd")]
public string RemoteOutgoingFolder {
get {
return ((string)(this["RemoteOutgoingFolder"]));
diff --git a/bsmd.dbh/Properties/Settings.settings b/bsmd.dbh/Properties/Settings.settings
index 11b06348..f078fddb 100644
--- a/bsmd.dbh/Properties/Settings.settings
+++ b/bsmd.dbh/Properties/Settings.settings
@@ -21,10 +21,10 @@
-
+ test/bsmd_2_dbh
-
+ test/dbh_2_bsmd
diff --git a/bsmd.dbh/RequestUtil.cs b/bsmd.dbh/RequestUtil.cs
index 68b41126..b481c892 100644
--- a/bsmd.dbh/RequestUtil.cs
+++ b/bsmd.dbh/RequestUtil.cs
@@ -219,6 +219,164 @@ namespace bsmd.dbh
break;
#endregion
+ #region ATA
+ case Message.NotificationClass.ATA:
+ if (message.Elements[0] is ATA ata)
+ {
+ RootATA rootATA = new RootATA();
+ if (ata.ATAPortOfCall.HasValue)
+ rootATA.ATAPortOfCall = ata.ATAPortOfCall.Value;
+ root.Items = new object[1];
+ root.Items[0] = rootATA;
+ }
+ break;
+ #endregion
+
+ #region ATD
+ case Message.NotificationClass.ATD:
+ {
+ if (message.Elements[0] is ATD atd)
+ {
+ RootATD rootATD = new RootATD();
+ if(atd.ATDPortOfCall.HasValue)
+ rootATD.ATDPortOfCall = atd.ATDPortOfCall.Value;
+ root.Items = new object[1];
+ root.Items[0] = rootATD;
+ }
+ break;
+ }
+ #endregion
+
+ #region SEC
+ case Message.NotificationClass.SEC:
+ {
+ RootSEC rootSEC = new RootSEC();
+ SEC sec = message.Elements[0] as SEC;
+
+ List
-
+ test/bsmd_2_dbh
-
+ test/dbh_2_bsmd