940 changed files with 228182 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
# Windows image file caches |
|||
Thumbs.db |
|||
ehthumbs.db |
|||
|
|||
# Folder config file |
|||
Desktop.ini |
|||
!*.exe |
|||
!*.dll |
|||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@ |
|||
<?xml version="1.0" encoding="utf-8"?><Client><Server AlarmLimit="1000" Cycle="60000" /><RecipeDisplay Row="5" RowByCount="15" RowHeight="40" ColWidth="150" /><DataDisplay HdaLargeTick="60" HdaSmallTick="10" RtWaitTick="5000" RtCap="200" /><WindowSet Background="#FF2F4F4F"><Window Name="Trend" Left="248" Top="171" Width="1440" Height="760" /><Window Name="RuntimeChart" Left="150" Top="150" Width="600" Height="800" /><Window Name="TagMonitor" Left="282" Top="255" Width="906" Height="700" /></WindowSet></Client> |
|||
@ -0,0 +1,4 @@ |
|||
lochost |
|||
Data Source=.\SQLEXPRESS;Initial Catalog=SCADA;Integrated Security=True |
|||
D:\HDA |
|||
|
|||
@ -0,0 +1,6 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Server MaxLogSize="1024"> |
|||
<Data TestCycle="60000" SendTimeout="60000"/> |
|||
<Hda MaxHdaCap="10000" HdaLen="1048576" WriteCycle="600000" Delay="3600000" Interval="200"/> |
|||
<Alarm AlarmLimit="1000" Delay="3600000"/> |
|||
</Server> |
|||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,557 @@ |
|||
<?xml version="1.0"?> |
|||
<doc> |
|||
<assembly> |
|||
<name>Microsoft.Expression.Controls</name> |
|||
</assembly> |
|||
<members> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.Initialize"> |
|||
<summary> |
|||
Called before the polylines are looped over. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.ComputeAutoCapacity"> |
|||
<summary> |
|||
Computes the value used when LayoutPath.Capacity is set to Auto. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.ShouldBreak(System.Int32)"> |
|||
<summary> |
|||
Checks whether or not the polylines should continue being looped over. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.OnPolylineBegin(Microsoft.Expression.Drawing.Core.PolylineData)"> |
|||
<summary> |
|||
Called before a new polyline is marched. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.OnPolylineCompleted(System.Double)"> |
|||
<summary> |
|||
Called when a polyline is completed. |
|||
</summary> |
|||
<param name="remaingLength">The remaining arclength in the polyline.</param> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.OnStepCompleted(System.Double)"> |
|||
<summary> |
|||
Called when a step is successfully completed. |
|||
</summary> |
|||
<param name="actualStepDistance">The actual step distance. |
|||
This may be different than Step if another polyline has been wrapped to.</param> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.DistributionStrategy.Distribute(Microsoft.Expression.Controls.PathPanel,System.Int32,System.Int32)"> |
|||
<summary> |
|||
Distributes the children of a path panel along a given layout path. |
|||
</summary> |
|||
<param name="pathPanel">The path panel.</param> |
|||
<param name="pathIndex">The index of the path in pathPanel.LayoutPaths.</param> |
|||
<param name="childIndex">The index of the first child to be laid out on this path.</param> |
|||
<returns>The index of the next child to be distributed. If childIndex is returned, this function has done nothing.</returns> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.DistributionStrategy.ChildIndex"> |
|||
<summary> |
|||
The index of the next child to be arranged. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.DistributionStrategy.Span"> |
|||
<summary> |
|||
The distance in arc length that will be used for layout. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.DistributionStrategy.Step"> |
|||
<summary> |
|||
The distance in arc length to walk along the current polyline. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.DistributionStrategy.Capacity"> |
|||
<summary> |
|||
The total number of elements to be arranged on the LayoutPath. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.EvenDistributionStrategy"> |
|||
<summary> |
|||
Distributes the children of a path panel along a layout path. |
|||
Even distribution means that there is equal arclength between the centers of all |
|||
the elements on the path. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.ChangedPathLayoutProperties"> |
|||
<summary> |
|||
Specifies which path layout properties have changed. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.PathLayoutUpdatedEventArgs"> |
|||
<summary> |
|||
Provides data for the <see cref="E:Microsoft.Expression.Controls.IPathLayoutItem.PathLayoutUpdated"/> event. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathLayoutUpdatedEventArgs.#ctor(Microsoft.Expression.Controls.ChangedPathLayoutProperties)"> |
|||
<summary> |
|||
Initializes a new instance of the <see cref="T:Microsoft.Expression.Controls.PathLayoutUpdatedEventArgs"/> class. |
|||
</summary> |
|||
<param name="changedProperties">The data for the event.</param> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutUpdatedEventArgs.ChangedProperties"> |
|||
<summary> |
|||
Gets the properties changed in a <see cref="E:Microsoft.Expression.Controls.IPathLayoutItem.PathLayoutUpdated"/> event. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.PathLayoutData"> |
|||
<summary> |
|||
Encapsulates the data needed to update a <see cref="T:Microsoft.Expression.Controls.IPathLayoutItem"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.LayoutPathIndex"> |
|||
<summary> |
|||
Gets or sets the index of the path on which an element is arranged. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.GlobalIndex"> |
|||
<summary> |
|||
Gets or sets the index of an element in a collection of elements. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.LocalIndex"> |
|||
<summary> |
|||
Gets or sets the index of an element on a path. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.GlobalOffset"> |
|||
<summary> |
|||
Gets or sets the offset of an element proportional to the total length of a collection of paths. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.LocalOffset"> |
|||
<summary> |
|||
Gets or sets the offset of an element proportional to the length of a path. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.NormalAngle"> |
|||
<summary> |
|||
Gets or sets the angle perpendicular to the path at an element's location. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.OrientationAngle"> |
|||
<summary> |
|||
Gets or sets the angle perpendicular to the path at an element's location if the element is oriented to the path. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathLayoutData.IsArranged"> |
|||
<summary> |
|||
Gets or sets whether or not an element is arranged on a path. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.IPathLayoutItem"> |
|||
<summary> |
|||
Represents an element that is arranged by a <see cref="T:Microsoft.Expression.Controls.PathPanel"/>. |
|||
</summary> |
|||
<remarks> |
|||
Implementing this interface enables <see cref="T:Microsoft.Expression.Controls.PathPanel"/> to set these properties when the element is arranged. |
|||
This interface is not intended for general implementation. |
|||
</remarks> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.IPathLayoutItem.Update(Microsoft.Expression.Controls.PathLayoutData)"> |
|||
<summary> |
|||
Updates the <see cref="T:Microsoft.Expression.Controls.IPathLayoutItem"/> properties based on the given <see cref="T:Microsoft.Expression.Controls.PathLayoutData"/> and raises the <see cref="E:Microsoft.Expression.Controls.IPathLayoutItem.PathLayoutUpdated"/> event. |
|||
</summary> |
|||
<param name="data">The data needed to update the <see cref="T:Microsoft.Expression.Controls.IPathLayoutItem"/>.</param> |
|||
</member> |
|||
<member name="E:Microsoft.Expression.Controls.IPathLayoutItem.PathLayoutUpdated"> |
|||
<summary> |
|||
Occurs when one or more of the <see cref="T:Microsoft.Expression.Controls.IPathLayoutItem"/> properties change. |
|||
</summary> |
|||
<remarks> |
|||
This event is raised whenever the item’s position along the path is updated. This can occur due to changes in the properties on the <see cref="T:Microsoft.Expression.Controls.LayoutPath"/> or changes to <see cref="P:Microsoft.Expression.Controls.LayoutPath.SourceElement"/>. |
|||
</remarks> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.LayoutPathIndex"> |
|||
<summary> |
|||
Gets the index of the path on which the item is arranged. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.GlobalIndex"> |
|||
<summary> |
|||
Gets the index of the item in a collection of items. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.LocalIndex"> |
|||
<summary> |
|||
Gets the index of the item on the path on which it is arranged. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.GlobalOffset"> |
|||
<summary> |
|||
Gets the offset of the item proportional to the total length of a collection of paths. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.LocalOffset"> |
|||
<summary> |
|||
Gets the offset of the item proportional to the length of the path on which it is arranged. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.NormalAngle"> |
|||
<summary> |
|||
Gets the angle perpendicular to the path at the item's location. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.OrientationAngle"> |
|||
<summary> |
|||
Gets the angle perpendicular to the path at the items's location if the item is oriented to the path. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.IPathLayoutItem.IsArranged"> |
|||
<summary> |
|||
Gets or sets whether or not the item is arranged on the path. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.IsArrangedToScaleConverter"> |
|||
<summary> |
|||
Converts a <see cref="T:System.Boolean"/> representing whether or not an element is arranged to a <see cref="T:System.Double"/> value used to scale the element. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.IsArrangedToScaleConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)"> |
|||
<summary> |
|||
Throws a <see cref="T:System.NotImplementedException" /> exception in all cases. |
|||
</summary> |
|||
<param name="value">The target data being passed to the source.</param> |
|||
<param name="targetType">The <see cref="T:System.Type" /> of data expected by the source object.</param> |
|||
<param name="parameter">An optional parameter to be used in the converter logic.</param> |
|||
<param name="culture">The culture of the conversion.</param> |
|||
<returns>The value to be passed to the source object.</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.IsArrangedToScaleConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)"> |
|||
<summary> |
|||
Converts the specified <see cref="T:System.Boolean"/> to a <see cref="T:System.Double"/>. |
|||
</summary> |
|||
<param name="value">The source data being passed to the target.</param> |
|||
<param name="targetType">The <see cref="T:System.Type"/> of data expected by the target dependency property.</param> |
|||
<param name="parameter">An optional parameter to be used in the converter logic.</param> |
|||
<param name="culture">The culture of the conversion.</param> |
|||
<returns>If the <see cref="T:System.Boolean"/> is true, 1 is returned. Else, 0 is returned.</returns> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.Distribution"> |
|||
<summary> |
|||
Specifies the distribution of a <see cref="T:Microsoft.Expression.Controls.LayoutPath"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.Orientation"> |
|||
<summary> |
|||
Specifies the orientation of elements on a <see cref="T:Microsoft.Expression.Controls.LayoutPath"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.FillBehavior"> |
|||
<summary> |
|||
Specifies the method for altering the <see cref="P:Microsoft.Expression.Controls.LayoutPath.Span"/> on an open path. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.LayoutPath"> |
|||
<summary> |
|||
Describes a path along which elements are arranged. |
|||
</summary> |
|||
</member> |
|||
<member name="F:Microsoft.Expression.Controls.LayoutPath.transformedPolylines"> |
|||
<summary> |
|||
Ideally, we want to cache the Bezier curves before flattening, because transform will affect flattening. |
|||
That requires us to cache curves that we don't support very well yet. Instead, we cache the flatten points |
|||
in distribution strategy and transform them on demand. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.SourceElement"> |
|||
<summary> |
|||
Gets or sets the element that defines the path. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.Distribution"> |
|||
<summary> |
|||
Gets or sets whether items are laid out evenly or with a fixed padding. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.Capacity"> |
|||
<summary> |
|||
Gets or sets the maximum number of items displayed on the <see cref="T:Microsoft.Expression.Controls.LayoutPath"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.Padding"> |
|||
<summary> |
|||
Gets or sets the distance in pixels along the arc length of the <see cref="T:Microsoft.Expression.Controls.LayoutPath"/> between two items. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.Orientation"> |
|||
<summary> |
|||
Gets or sets the orientation of the items. |
|||
</summary> |
|||
<remarks> |
|||
This property is supported on <see cref="T:Microsoft.Expression.Controls.PathListBox"/>, but not <see cref="T:Microsoft.Expression.Controls.PathPanel"/>. |
|||
</remarks> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.Start"> |
|||
<summary> |
|||
Gets or sets the distance from the start of the <see cref="T:Microsoft.Expression.Controls.LayoutPath"/> to place the first item. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.Span"> |
|||
<summary> |
|||
Gets or sets the percentage of the <see cref="T:Microsoft.Expression.Controls.LayoutPath"/> that participates in layout. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.FillBehavior"> |
|||
<summary> |
|||
Gets or set the method to alter <see cref="P:Microsoft.Expression.Controls.LayoutPath.Span"/> on an open path. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.ActualCapacity"> |
|||
<summary> |
|||
Gets the computed Capacity. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.LayoutPath.IsValid"> |
|||
<summary> |
|||
Gets whether or not the <see cref="P:Microsoft.Expression.Controls.LayoutPath.SourceElement"/> is valid in the context. |
|||
A <see cref="P:Microsoft.Expression.Controls.LayoutPath.SourceElement"/> is not valid if it is a descendant of the <see cref="T:Microsoft.Expression.Controls.PathPanel"/> in which it is used. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.PaddedDistributionStrategy"> |
|||
<summary> |
|||
Distributes the children of a layout path based on the size of the children and a given padding between the children. |
|||
The distance in arclength between children is determined by the padding plus the sum of the radii of the children's bounding boxes. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.PathListBox"> |
|||
<summary> |
|||
Contains a list of items that are laid out along one or more paths. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathListBox.#ctor"> |
|||
<summary> |
|||
Initializes a new instance of the <see cref="T:Microsoft.Expression.Controls.PathListBox"/> class. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathListBox.GetContainerForItemOverride"> |
|||
<summary> |
|||
Creates the element used to display a specified item. |
|||
</summary> |
|||
<returns>A <see cref="T:Microsoft.Expression.Controls.PathListBoxItem"/> corresponding to a specified item.</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathListBox.IsItemItsOwnContainerOverride(System.Object)"> |
|||
<summary> |
|||
Determines if the specified item is (or is eligible to be) its own item container. |
|||
</summary> |
|||
<returns>true if the item is its own item container; otherwise, false.</returns> |
|||
<param name="item">The specified item.</param> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathListBox.ArrangeOverride(System.Windows.Size)"> |
|||
<summary> |
|||
Positions child elements. |
|||
</summary> |
|||
<param name="finalSize">The size that this object should use to arrange its child elements.</param> |
|||
<returns>The actual size used.</returns> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBox.LayoutPaths"> |
|||
<summary> |
|||
Gets or sets a collection of objects that define the path(s) used for layout. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBox.StartItemIndex"> |
|||
<summary> |
|||
Gets or sets the index to use within the list of items. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBox.WrapItems"> |
|||
<summary> |
|||
Gets or sets whether the item index wraps to the beginning of the collection when StartItemIndex is greater than 0. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.PathListBoxItem"> |
|||
<summary> |
|||
Represents an item in a <see cref="T:Microsoft.Expression.Controls.PathListBox"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathListBoxItem.#ctor"> |
|||
<summary> |
|||
Initializes a new instance of the <see cref="T:Microsoft.Expression.Controls.PathListBoxItem"/> class. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathListBoxItem.Update(Microsoft.Expression.Controls.PathLayoutData)"> |
|||
<summary> |
|||
For a description of this member, see <see cref="M:Microsoft.Expression.Controls.IPathLayoutItem.Update(Microsoft.Expression.Controls.PathLayoutData)"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="E:Microsoft.Expression.Controls.PathListBoxItem.PathLayoutUpdated"> |
|||
<summary> |
|||
For a description of this member, see <see cref="E:Microsoft.Expression.Controls.IPathLayoutItem.PathLayoutUpdated"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.LayoutPathIndex"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.LayoutPathIndex"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.GlobalIndex"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.GlobalIndex"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.LocalIndex"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.LocalIndex"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.GlobalOffset"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.GlobalOffset"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.LocalOffset"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.LocalOffset"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.NormalAngle"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.NormalAngle"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.OrientationAngle"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.OrientationAngle"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathListBoxItem.IsArranged"> |
|||
<summary> |
|||
For a description of this member, see <see cref="P:Microsoft.Expression.Controls.IPathLayoutItem.IsArranged"/>. |
|||
</summary> |
|||
</member> |
|||
<member name="T:Microsoft.Expression.Controls.PathPanel"> |
|||
<summary> |
|||
Arranges child elements along one or more path. |
|||
</summary> |
|||
<remarks> |
|||
<see cref="T:Microsoft.Expression.Controls.PathPanel"/> can be used as an alternative to <see cref="T:Microsoft.Expression.Controls.PathListBox"/> when selection is not necessary. |
|||
The <see cref="P:Microsoft.Expression.Controls.LayoutPath.Orientation"/> property is not supported on <see cref="T:Microsoft.Expression.Controls.PathPanel"/>. |
|||
</remarks> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathPanel.#ctor"> |
|||
<summary> |
|||
Initializes a new instance of the <see cref="T:Microsoft.Expression.Controls.PathPanel"/> class. |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathPanel.MeasureOverride(System.Windows.Size)"> |
|||
<summary> |
|||
Measures the size required for child elements. |
|||
</summary> |
|||
<param name="availableSize">The available size that this element can give to child elements. </param> |
|||
<returns>The size that this element determines it needs during layout, based on its calculations of child element sizes.</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathPanel.ArrangeOverride(System.Windows.Size)"> |
|||
<summary> |
|||
Positions child elements. |
|||
</summary> |
|||
<param name="finalSize">The size that this object should use to arrange its child elements.</param> |
|||
<returns>The actual size used.</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathPanel.ArrangeChild(System.Int32,System.Int32,Microsoft.Expression.Drawing.Core.PolylineData,Microsoft.Expression.Drawing.Core.MarchLocation,System.Int32)"> |
|||
<summary> |
|||
Arranges the child at the given index at a particular location on a LayoutPath. |
|||
</summary> |
|||
<param name="indirectIndex">An index from the range 0 to PathPanel.Count.</param> |
|||
<param name="pathIndex">The index of the layout path on which to arrange the child.</param> |
|||
<param name="polyline">The polyline in the layout path.</param> |
|||
<param name="location">The location on the polyline.</param> |
|||
<param name="localIndex">The index of the child on the LayoutPath.</param> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.PathPanel.GetChildRadius(System.Int32)"> |
|||
<summary> |
|||
Calculates the radius of the bounding circle for the child at the given index. |
|||
</summary> |
|||
<param name="indirectIndex">An index from the range 0 to PathPanel.Count.</param> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathPanel.LayoutPaths"> |
|||
<summary> |
|||
Gets or sets a collection of objects that define the path(s) used for layout. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathPanel.StartItemIndex"> |
|||
<summary> |
|||
Gets or sets the index to use within the list of items. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathPanel.WrapItems"> |
|||
<summary> |
|||
Gets or sets whether the item index wraps to the beginning of the collection when <see cref="P:Microsoft.Expression.Controls.PathPanel.StartItemIndex"/> is greater than 0. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathPanel.ValidPaths"> |
|||
<summary> |
|||
The subset of LayoutPaths that are attached and not collapsed. |
|||
</summary> |
|||
</member> |
|||
<member name="P:Microsoft.Expression.Controls.PathPanel.Count"> |
|||
<summary> |
|||
Count is the number of Children that the PathPanel will lay out. |
|||
If StartItemIndex > 0 and WrapItems is false, then this can be less than PathPanel.Children.Count |
|||
</summary> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.Utilities.GetItemsHost(System.Windows.Controls.ItemsControl)"> |
|||
<summary> |
|||
Gets the panel that contains the containers of an ItemsControl. |
|||
</summary> |
|||
<param name="control">The ItemsControl.</param> |
|||
<returns> |
|||
The panel that contains the containers of an ItemsControl, or null |
|||
if the panel could not be found. |
|||
</returns> |
|||
<exception cref="T:System.ArgumentNullException"> |
|||
<paramref name="control" /> is null. |
|||
</exception> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.Utilities.TraverseBreadthFirst``1(``0,System.Func{``0,System.Collections.Generic.IEnumerable{``0}},System.Func{``0,System.Boolean})"> |
|||
<summary> |
|||
Traverses a tree by accepting an initial value and a function that |
|||
retrieves the child nodes of a node. |
|||
</summary> |
|||
<typeparam name="T">The type of the stream.</typeparam> |
|||
<param name="initialNode">The initial node.</param> |
|||
<param name="getChildNodes">A function that retrieves the child |
|||
nodes of a node.</param> |
|||
<param name="traversePredicate">A predicate that evaluates a node |
|||
and returns a value indicating whether that node and it's children |
|||
should be traversed.</param> |
|||
<returns>A stream of nodes.</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.Utilities.GetVisualChildren(System.Windows.DependencyObject)"> |
|||
<summary> |
|||
Get the visual tree children of an element. |
|||
</summary> |
|||
<param name="element">The element.</param> |
|||
<returns>The visual tree children of an element.</returns> |
|||
<exception cref="T:System.ArgumentNullException"> |
|||
<paramref name="element"/> is null. |
|||
</exception> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.Utilities.GetVisualChildrenAndSelfIterator(System.Windows.DependencyObject)"> |
|||
<summary> |
|||
Get the visual tree children of an element and the element itself. |
|||
</summary> |
|||
<param name="element">The element.</param> |
|||
<returns> |
|||
The visual tree children of an element and the element itself. |
|||
</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.Utilities.GetLogicalChildren(System.Windows.FrameworkElement)"> |
|||
<summary> |
|||
Retrieves all the logical children of a framework element using a |
|||
breadth-first search. For performance reasons this method manually |
|||
manages the stack instead of using recursion. |
|||
</summary> |
|||
<param name="parent">The parent framework element.</param> |
|||
<returns>The logical children of the framework element.</returns> |
|||
</member> |
|||
<member name="M:Microsoft.Expression.Controls.Utilities.GetLogicalDescendents(System.Windows.FrameworkElement)"> |
|||
<summary> |
|||
Retrieves all the logical descendents of a framework element using a |
|||
breadth-first search. For performance reasons this method manually |
|||
manages the stack instead of using recursion. |
|||
</summary> |
|||
<param name="parent">The parent framework element.</param> |
|||
<returns>The logical children of the framework element.</returns> |
|||
</member> |
|||
</members> |
|||
</doc> |
|||
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
@ -0,0 +1,40 @@ |
|||
namespace BatchCoreService |
|||
{ |
|||
partial class BatchCoreService |
|||
{ |
|||
/// <summary>
|
|||
/// Required designer variable.
|
|||
/// </summary>
|
|||
private System.ComponentModel.IContainer components = null; |
|||
|
|||
/// <summary>
|
|||
/// Clean up any resources being used.
|
|||
/// </summary>
|
|||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
protected override void Dispose(bool disposing) |
|||
{ |
|||
if (disposing && (components != null)) |
|||
{ |
|||
components.Dispose(); |
|||
} |
|||
base.Dispose(disposing); |
|||
} |
|||
|
|||
#region Component Designer generated code
|
|||
|
|||
/// <summary>
|
|||
/// Required method for Designer support - do not modify
|
|||
/// the contents of this method with the code editor.
|
|||
/// </summary>
|
|||
private void InitializeComponent() |
|||
{ |
|||
//
|
|||
// BatchCoreService
|
|||
//
|
|||
this.ServiceName = "BatchCoreService"; |
|||
|
|||
} |
|||
|
|||
#endregion
|
|||
} |
|||
} |
|||
@ -0,0 +1,39 @@ |
|||
using System.ServiceModel; |
|||
using System.ServiceProcess; |
|||
|
|||
namespace BatchCoreService |
|||
{ |
|||
public partial class BatchCoreService : ServiceBase |
|||
{ |
|||
public ServiceHost serviceHost = null; |
|||
public BatchCoreService() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
|
|||
protected override void OnStart(string[] args) |
|||
{ |
|||
if (serviceHost != null) |
|||
{ |
|||
serviceHost.Close(); |
|||
} |
|||
|
|||
// Create a ServiceHost for the CalculatorService type and
|
|||
// provide the base address.
|
|||
serviceHost = new ServiceHost(typeof(DAService)); |
|||
|
|||
// Open the ServiceHostBase to create listeners and start
|
|||
// listening for messages.
|
|||
serviceHost.Open(); |
|||
} |
|||
|
|||
protected override void OnStop() |
|||
{ |
|||
if (serviceHost != null) |
|||
{ |
|||
serviceHost.Close(); |
|||
serviceHost = null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,103 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<PropertyGroup> |
|||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> |
|||
<ProductVersion>8.0.30703</ProductVersion> |
|||
<SchemaVersion>2.0</SchemaVersion> |
|||
<ProjectGuid>{0AF1DB09-5771-4F3B-8F48-DAAA09290C0F}</ProjectGuid> |
|||
<OutputType>WinExe</OutputType> |
|||
<AppDesignerFolder>Properties</AppDesignerFolder> |
|||
<RootNamespace>BatchCoreService</RootNamespace> |
|||
<AssemblyName>BatchCoreService</AssemblyName> |
|||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
|||
<TargetFrameworkProfile> |
|||
</TargetFrameworkProfile> |
|||
<FileAlignment>512</FileAlignment> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
|||
<PlatformTarget>x86</PlatformTarget> |
|||
<DebugSymbols>true</DebugSymbols> |
|||
<DebugType>full</DebugType> |
|||
<Optimize>false</Optimize> |
|||
<OutputPath>bin\Debug\</OutputPath> |
|||
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|||
<ErrorReport>prompt</ErrorReport> |
|||
<WarningLevel>4</WarningLevel> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
|||
<PlatformTarget>x86</PlatformTarget> |
|||
<DebugType>pdbonly</DebugType> |
|||
<Optimize>true</Optimize> |
|||
<OutputPath>bin\Release\</OutputPath> |
|||
<DefineConstants>TRACE</DefineConstants> |
|||
<ErrorReport>prompt</ErrorReport> |
|||
<WarningLevel>4</WarningLevel> |
|||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|||
</PropertyGroup> |
|||
<ItemGroup> |
|||
<Reference Include="System" /> |
|||
<Reference Include="System.Configuration.Install" /> |
|||
<Reference Include="System.Data" /> |
|||
<Reference Include="System.Management" /> |
|||
<Reference Include="System.ServiceModel" /> |
|||
<Reference Include="System.ServiceModel.Web" /> |
|||
<Reference Include="System.ServiceProcess" /> |
|||
<Reference Include="System.Windows.Forms" /> |
|||
<Reference Include="System.Xml" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Compile Include="BatchCoreService.cs"> |
|||
<SubType>Component</SubType> |
|||
</Compile> |
|||
<Compile Include="BatchCoreService.Designer.cs"> |
|||
<DependentUpon>BatchCoreService.cs</DependentUpon> |
|||
</Compile> |
|||
<Compile Include="DAService.cs" /> |
|||
<Compile Include="Program.cs" /> |
|||
<Compile Include="ProjectInstaller.cs"> |
|||
<SubType>Component</SubType> |
|||
</Compile> |
|||
<Compile Include="ProjectInstaller.Designer.cs"> |
|||
<DependentUpon>ProjectInstaller.cs</DependentUpon> |
|||
</Compile> |
|||
<Compile Include="Properties\AssemblyInfo.cs" /> |
|||
<Compile Include="SqlMapping.cs" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ProjectReference Include="..\ClientDriver\ClientDriver.csproj"> |
|||
<Project>{6DF53968-152D-4CA9-B62F-FF1C27069C4D}</Project> |
|||
<Name>ClientDriver</Name> |
|||
</ProjectReference> |
|||
<ProjectReference Include="..\DataHelper\DataHelper.csproj"> |
|||
<Project>{755c5459-bca4-4729-a93c-0c73a41bdf3c}</Project> |
|||
<Name>DataHelper</Name> |
|||
</ProjectReference> |
|||
<ProjectReference Include="..\DataService\DataService.csproj"> |
|||
<Project>{8965e389-6466-4b30-bd43-83c909044637}</Project> |
|||
<Name>DataService</Name> |
|||
</ProjectReference> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<None Include="App.config"> |
|||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|||
<SubType>Designer</SubType> |
|||
</None> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<EmbeddedResource Include="BatchCoreService.resx"> |
|||
<DependentUpon>BatchCoreService.cs</DependentUpon> |
|||
</EmbeddedResource> |
|||
<EmbeddedResource Include="ProjectInstaller.resx"> |
|||
<DependentUpon>ProjectInstaller.cs</DependentUpon> |
|||
</EmbeddedResource> |
|||
</ItemGroup> |
|||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
|||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
|||
Other similar extension points exist, see Microsoft.Common.targets. |
|||
<Target Name="BeforeBuild"> |
|||
</Target> |
|||
<Target Name="AfterBuild"> |
|||
</Target> |
|||
--> |
|||
</Project> |
|||
@ -0,0 +1,123 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<root> |
|||
<!-- |
|||
Microsoft ResX Schema |
|||
|
|||
Version 2.0 |
|||
|
|||
The primary goals of this format is to allow a simple XML format |
|||
that is mostly human readable. The generation and parsing of the |
|||
various data types are done through the TypeConverter classes |
|||
associated with the data types. |
|||
|
|||
Example: |
|||
|
|||
... ado.net/XML headers & schema ... |
|||
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|||
<resheader name="version">2.0</resheader> |
|||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|||
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|||
</data> |
|||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|||
<comment>This is a comment</comment> |
|||
</data> |
|||
|
|||
There are any number of "resheader" rows that contain simple |
|||
name/value pairs. |
|||
|
|||
Each data row contains a name, and value. The row also contains a |
|||
type or mimetype. Type corresponds to a .NET class that support |
|||
text/value conversion through the TypeConverter architecture. |
|||
Classes that don't support this are serialized and stored with the |
|||
mimetype set. |
|||
|
|||
The mimetype is used for serialized objects, and tells the |
|||
ResXResourceReader how to depersist the object. This is currently not |
|||
extensible. For a given mimetype the value must be set accordingly: |
|||
|
|||
Note - application/x-microsoft.net.object.binary.base64 is the format |
|||
that the ResXResourceWriter will generate, however the reader can |
|||
read any of the formats listed below. |
|||
|
|||
mimetype: application/x-microsoft.net.object.binary.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.soap.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|||
value : The object must be serialized into a byte array |
|||
: using a System.ComponentModel.TypeConverter |
|||
: and then encoded with base64 encoding. |
|||
--> |
|||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|||
<xsd:element name="root" msdata:IsDataSet="true"> |
|||
<xsd:complexType> |
|||
<xsd:choice maxOccurs="unbounded"> |
|||
<xsd:element name="metadata"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|||
<xsd:attribute name="type" type="xsd:string" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" /> |
|||
<xsd:attribute ref="xml:space" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="assembly"> |
|||
<xsd:complexType> |
|||
<xsd:attribute name="alias" type="xsd:string" /> |
|||
<xsd:attribute name="name" type="xsd:string" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="data"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|||
<xsd:attribute ref="xml:space" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="resheader"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:choice> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:schema> |
|||
<resheader name="resmimetype"> |
|||
<value>text/microsoft-resx</value> |
|||
</resheader> |
|||
<resheader name="version"> |
|||
<value>2.0</value> |
|||
</resheader> |
|||
<resheader name="reader"> |
|||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
<resheader name="writer"> |
|||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
|||
<value>False</value> |
|||
</metadata> |
|||
</root> |
|||
File diff suppressed because it is too large
@ -0,0 +1,20 @@ |
|||
using System.ServiceProcess; |
|||
|
|||
namespace BatchCoreService |
|||
{ |
|||
static class Program |
|||
{ |
|||
/// <summary>
|
|||
/// The main entry point for the application.
|
|||
/// </summary>
|
|||
static void Main() |
|||
{ |
|||
ServiceBase[] ServicesToRun; |
|||
ServicesToRun = new ServiceBase[] |
|||
{ |
|||
new BatchCoreService() |
|||
}; |
|||
ServiceBase.Run(ServicesToRun); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,61 @@ |
|||
namespace BatchCoreService |
|||
{ |
|||
partial class ProjectInstaller |
|||
{ |
|||
/// <summary>
|
|||
/// Required designer variable.
|
|||
/// </summary>
|
|||
private System.ComponentModel.IContainer components = null; |
|||
|
|||
/// <summary>
|
|||
/// Clean up any resources being used.
|
|||
/// </summary>
|
|||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
protected override void Dispose(bool disposing) |
|||
{ |
|||
if (disposing && (components != null)) |
|||
{ |
|||
components.Dispose(); |
|||
} |
|||
base.Dispose(disposing); |
|||
} |
|||
|
|||
#region Component Designer generated code
|
|||
|
|||
/// <summary>
|
|||
/// Required method for Designer support - do not modify
|
|||
/// the contents of this method with the code editor.
|
|||
/// </summary>
|
|||
private void InitializeComponent() |
|||
{ |
|||
this.serviceProcessInstaller1 = new System.ServiceProcess.ServiceProcessInstaller(); |
|||
this.serviceInstaller1 = new System.ServiceProcess.ServiceInstaller(); |
|||
//
|
|||
// serviceProcessInstaller1
|
|||
//
|
|||
this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem; |
|||
this.serviceProcessInstaller1.Password = null; |
|||
this.serviceProcessInstaller1.Username = null; |
|||
//
|
|||
// serviceInstaller1
|
|||
//
|
|||
this.serviceInstaller1.Description = "数据服务"; |
|||
this.serviceInstaller1.ServiceName = "BatchCoreService"; |
|||
this.serviceInstaller1.ServicesDependedOn = new string[] { |
|||
"MSSQL$SQLEXPRESS"}; |
|||
this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic; |
|||
//
|
|||
// ProjectInstaller
|
|||
//
|
|||
this.Installers.AddRange(new System.Configuration.Install.Installer[] { |
|||
this.serviceProcessInstaller1, |
|||
this.serviceInstaller1}); |
|||
|
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller1; |
|||
private System.ServiceProcess.ServiceInstaller serviceInstaller1; |
|||
} |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
using System; |
|||
using System.Collections; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel; |
|||
using System.Configuration.Install; |
|||
using System.Linq; |
|||
|
|||
|
|||
namespace BatchCoreService |
|||
{ |
|||
[RunInstaller(true)] |
|||
public partial class ProjectInstaller : System.Configuration.Install.Installer |
|||
{ |
|||
public ProjectInstaller() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,129 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<root> |
|||
<!-- |
|||
Microsoft ResX Schema |
|||
|
|||
Version 2.0 |
|||
|
|||
The primary goals of this format is to allow a simple XML format |
|||
that is mostly human readable. The generation and parsing of the |
|||
various data types are done through the TypeConverter classes |
|||
associated with the data types. |
|||
|
|||
Example: |
|||
|
|||
... ado.net/XML headers & schema ... |
|||
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|||
<resheader name="version">2.0</resheader> |
|||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|||
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|||
</data> |
|||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|||
<comment>This is a comment</comment> |
|||
</data> |
|||
|
|||
There are any number of "resheader" rows that contain simple |
|||
name/value pairs. |
|||
|
|||
Each data row contains a name, and value. The row also contains a |
|||
type or mimetype. Type corresponds to a .NET class that support |
|||
text/value conversion through the TypeConverter architecture. |
|||
Classes that don't support this are serialized and stored with the |
|||
mimetype set. |
|||
|
|||
The mimetype is used for serialized objects, and tells the |
|||
ResXResourceReader how to depersist the object. This is currently not |
|||
extensible. For a given mimetype the value must be set accordingly: |
|||
|
|||
Note - application/x-microsoft.net.object.binary.base64 is the format |
|||
that the ResXResourceWriter will generate, however the reader can |
|||
read any of the formats listed below. |
|||
|
|||
mimetype: application/x-microsoft.net.object.binary.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.soap.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|||
value : The object must be serialized into a byte array |
|||
: using a System.ComponentModel.TypeConverter |
|||
: and then encoded with base64 encoding. |
|||
--> |
|||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|||
<xsd:element name="root" msdata:IsDataSet="true"> |
|||
<xsd:complexType> |
|||
<xsd:choice maxOccurs="unbounded"> |
|||
<xsd:element name="metadata"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|||
<xsd:attribute name="type" type="xsd:string" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" /> |
|||
<xsd:attribute ref="xml:space" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="assembly"> |
|||
<xsd:complexType> |
|||
<xsd:attribute name="alias" type="xsd:string" /> |
|||
<xsd:attribute name="name" type="xsd:string" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="data"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|||
<xsd:attribute ref="xml:space" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="resheader"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:choice> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:schema> |
|||
<resheader name="resmimetype"> |
|||
<value>text/microsoft-resx</value> |
|||
</resheader> |
|||
<resheader name="version"> |
|||
<value>2.0</value> |
|||
</resheader> |
|||
<resheader name="reader"> |
|||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
<resheader name="writer"> |
|||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
<metadata name="serviceProcessInstaller1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> |
|||
<value>17, 56</value> |
|||
</metadata> |
|||
<metadata name="serviceInstaller1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> |
|||
<value>196, 17</value> |
|||
</metadata> |
|||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
|||
<value>False</value> |
|||
</metadata> |
|||
</root> |
|||
@ -0,0 +1,36 @@ |
|||
using System.Reflection; |
|||
using System.Runtime.CompilerServices; |
|||
using System.Runtime.InteropServices; |
|||
|
|||
// General Information about an assembly is controlled through the following
|
|||
// set of attributes. Change these attribute values to modify the information
|
|||
// associated with an assembly.
|
|||
[assembly: AssemblyTitle("BatchCoreService")] |
|||
[assembly: AssemblyDescription("")] |
|||
[assembly: AssemblyConfiguration("")] |
|||
[assembly: AssemblyCompany("")] |
|||
[assembly: AssemblyProduct("BatchCoreService")] |
|||
[assembly: AssemblyCopyright("Copyright © 2014")] |
|||
[assembly: AssemblyTrademark("")] |
|||
[assembly: AssemblyCulture("")] |
|||
|
|||
// Setting ComVisible to false makes the types in this assembly not visible
|
|||
// to COM components. If you need to access a type in this assembly from
|
|||
// COM, set the ComVisible attribute to true on that type.
|
|||
[assembly: ComVisible(false)] |
|||
|
|||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|||
[assembly: Guid("90a674e3-631e-42cb-a286-bb4a53494b42")] |
|||
|
|||
// Version information for an assembly consists of the following four values:
|
|||
//
|
|||
// Major Version
|
|||
// Minor Version
|
|||
// Build Number
|
|||
// Revision
|
|||
//
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
|||
// by using the '*' as shown below:
|
|||
// [assembly: AssemblyVersion("1.0.*")]
|
|||
[assembly: AssemblyVersion("1.0.0.0")] |
|||
[assembly: AssemblyFileVersion("1.0.0.0")] |
|||
@ -0,0 +1,556 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using DataService; |
|||
|
|||
namespace BatchCoreService |
|||
{ |
|||
internal class AlarmDataReader : IDataReader |
|||
{ |
|||
IEnumerator<AlarmItem> _enumer; |
|||
|
|||
public AlarmDataReader(IEnumerable<AlarmItem> list) |
|||
{ |
|||
this._enumer = list.GetEnumerator(); |
|||
} |
|||
|
|||
#region IDataReader Members
|
|||
|
|||
public void Close() |
|||
{ |
|||
|
|||
} |
|||
public int Depth |
|||
{ |
|||
get { return 0; } |
|||
} |
|||
|
|||
public DataTable GetSchemaTable() |
|||
{ |
|||
DataTable table = new DataTable("AlarmItem"); |
|||
table.Columns.Add("StartTime", typeof(DateTime)); |
|||
table.Columns.Add("Source", typeof(string)); |
|||
table.Columns.Add("ConditionId", typeof(int)); |
|||
table.Columns.Add("AlarmText", typeof(string)); |
|||
table.Columns.Add("AlarmValue", typeof(object)); |
|||
table.Columns.Add("Duration", typeof(int)); |
|||
table.Columns.Add("Severity", typeof(int)); |
|||
table.Columns.Add("SubAlarmType", typeof(int)); |
|||
return table; |
|||
} |
|||
public bool IsClosed |
|||
{ |
|||
get { return false; } |
|||
} |
|||
|
|||
public bool NextResult() |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
public bool Read() |
|||
{ |
|||
return _enumer.MoveNext(); |
|||
} |
|||
|
|||
public int RecordsAffected |
|||
{ |
|||
get { throw new NotImplementedException(); } |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region IDisposable Members
|
|||
|
|||
public void Dispose() |
|||
{ |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region IDataRecord Members
|
|||
|
|||
public int FieldCount |
|||
{ |
|||
get { return 8; } |
|||
} |
|||
|
|||
public bool GetBoolean(int i) |
|||
{ |
|||
return (bool)GetValue(i); |
|||
} |
|||
|
|||
public byte GetByte(int i) |
|||
{ |
|||
return (byte)GetValue(i); |
|||
} |
|||
|
|||
public long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public char GetChar(int i) |
|||
{ |
|||
return (char)GetValue(i); |
|||
} |
|||
|
|||
public long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public IDataReader GetData(int i) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public string GetDataTypeName(int i) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public DateTime GetDateTime(int i) |
|||
{ |
|||
return (DateTime)GetValue(i); |
|||
} |
|||
|
|||
public decimal GetDecimal(int i) |
|||
{ |
|||
return (decimal)GetValue(i); |
|||
} |
|||
|
|||
public double GetDouble(int i) |
|||
{ |
|||
return (double)GetValue(i); |
|||
} |
|||
|
|||
public Type GetFieldType(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return typeof(DateTime); |
|||
case 1: |
|||
return typeof(string); |
|||
case 2: |
|||
return typeof(int); |
|||
case 3: |
|||
return typeof(string); |
|||
case 4: |
|||
return typeof(object); |
|||
case 5: |
|||
return typeof(int); |
|||
case 6: |
|||
return typeof(int); |
|||
case 7: |
|||
return typeof(int); |
|||
default: |
|||
return typeof(string); |
|||
} |
|||
} |
|||
|
|||
public float GetFloat(int i) |
|||
{ |
|||
return (float)GetValue(i); |
|||
} |
|||
|
|||
public Guid GetGuid(int i) |
|||
{ |
|||
return (Guid)GetValue(i); |
|||
} |
|||
|
|||
public short GetInt16(int i) |
|||
{ |
|||
return (short)GetValue(i); |
|||
} |
|||
public int GetInt32(int i) |
|||
{ |
|||
return (int)GetValue(i); |
|||
} |
|||
|
|||
public long GetInt64(int i) |
|||
{ |
|||
return (long)GetValue(i); |
|||
} |
|||
|
|||
public string GetName(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return "StartTime"; |
|||
case 1: |
|||
return "Source"; |
|||
case 2: |
|||
return "ConditionId"; |
|||
case 3: |
|||
return "AlarmText"; |
|||
case 4: |
|||
return "AlarmValue"; |
|||
case 5: |
|||
return "Duration"; |
|||
case 6: |
|||
return "Severity"; |
|||
case 7: |
|||
return "SubAlarmType"; |
|||
default: |
|||
return ""; |
|||
} |
|||
} |
|||
|
|||
public int GetOrdinal(string name) |
|||
{ |
|||
switch (name) |
|||
{ |
|||
case "StartTime": |
|||
return 0; |
|||
case "Source": |
|||
return 1; |
|||
case "ConditionId": |
|||
return 2; |
|||
case "AlarmText": |
|||
return 3; |
|||
case "AlarmValue": |
|||
return 4; |
|||
case "Duration": |
|||
return 5; |
|||
case "Severity": |
|||
return 6; |
|||
case "SubAlarmType": |
|||
return 7; |
|||
default: |
|||
return -1; |
|||
} |
|||
} |
|||
|
|||
public string GetString(int i) |
|||
{ |
|||
return (string)GetValue(i); |
|||
} |
|||
|
|||
public object GetValue(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return _enumer.Current.StartTime; |
|||
case 1: |
|||
return _enumer.Current.Source; |
|||
case 2: |
|||
return _enumer.Current.ConditionId; |
|||
case 3: |
|||
return _enumer.Current.AlarmText; |
|||
case 4: |
|||
return _enumer.Current.AlarmValue; |
|||
case 5: |
|||
return _enumer.Current.Duration.Seconds; |
|||
case 6: |
|||
return _enumer.Current.Severity; |
|||
case 7: |
|||
return _enumer.Current.SubAlarmType; |
|||
default: |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public int GetValues(object[] values) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public bool IsDBNull(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return _enumer.Current.StartTime == DateTime.MinValue; |
|||
case 1: |
|||
return string.IsNullOrEmpty(_enumer.Current.Source); |
|||
case 2: |
|||
return _enumer.Current.ConditionId == 0; |
|||
case 3: |
|||
return string.IsNullOrEmpty(_enumer.Current.AlarmText); |
|||
case 4: |
|||
return _enumer.Current.AlarmValue == null; |
|||
case 5: |
|||
case 6: |
|||
case 7: |
|||
default: |
|||
return false; |
|||
} |
|||
} |
|||
|
|||
public object this[string name] |
|||
{ |
|||
get |
|||
{ |
|||
return GetValue(GetOrdinal(name)); |
|||
} |
|||
} |
|||
|
|||
public object this[int i] |
|||
{ |
|||
get |
|||
{ |
|||
return GetValue(i); |
|||
} |
|||
} |
|||
|
|||
#endregion
|
|||
} |
|||
|
|||
internal class HDASqlReader : IDataReader |
|||
{ |
|||
IEnumerator<HistoryData> _enumer; |
|||
IDataServer _server; |
|||
|
|||
public HDASqlReader(IEnumerable<HistoryData> list, IDataServer server) |
|||
{ |
|||
this._enumer = list.GetEnumerator(); |
|||
_server = server; |
|||
} |
|||
|
|||
#region IDataReader Members
|
|||
|
|||
public void Close() |
|||
{ |
|||
|
|||
} |
|||
|
|||
public int Depth |
|||
{ |
|||
get { return 0; } |
|||
} |
|||
|
|||
public DataTable GetSchemaTable() |
|||
{ |
|||
DataTable table = new DataTable("Log_HData"); |
|||
table.Columns.Add("ID", typeof(short)); |
|||
table.Columns.Add("TimeStamp", typeof(DateTime)); |
|||
table.Columns.Add("Value", typeof(float)); |
|||
return table; |
|||
} |
|||
public bool IsClosed |
|||
{ |
|||
get { return false; } |
|||
} |
|||
|
|||
public bool NextResult() |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
public bool Read() |
|||
{ |
|||
return _enumer.MoveNext(); |
|||
} |
|||
|
|||
public int RecordsAffected |
|||
{ |
|||
get { throw new NotImplementedException(); } |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region IDisposable Members
|
|||
|
|||
public void Dispose() |
|||
{ |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region IDataRecord Members
|
|||
|
|||
public int FieldCount |
|||
{ |
|||
get { return 3; } |
|||
} |
|||
|
|||
public bool GetBoolean(int i) |
|||
{ |
|||
return (bool)GetValue(i); |
|||
} |
|||
|
|||
public byte GetByte(int i) |
|||
{ |
|||
return (byte)GetValue(i); |
|||
} |
|||
|
|||
public long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public char GetChar(int i) |
|||
{ |
|||
return (char)GetValue(i); |
|||
} |
|||
|
|||
public long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public IDataReader GetData(int i) |
|||
{ |
|||
return this; |
|||
} |
|||
|
|||
public string GetDataTypeName(int i) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public DateTime GetDateTime(int i) |
|||
{ |
|||
return (DateTime)GetValue(i); |
|||
} |
|||
|
|||
public decimal GetDecimal(int i) |
|||
{ |
|||
return (decimal)GetValue(i); |
|||
} |
|||
|
|||
public double GetDouble(int i) |
|||
{ |
|||
return (double)GetValue(i); |
|||
} |
|||
|
|||
public Type GetFieldType(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return typeof(Int16); |
|||
case 1: |
|||
return typeof(DateTime); |
|||
case 2: |
|||
return typeof(Single); |
|||
default: |
|||
return typeof(Int32); |
|||
} |
|||
} |
|||
|
|||
public float GetFloat(int i) |
|||
{ |
|||
return Convert.ToSingle(GetValue(i)); |
|||
} |
|||
|
|||
public Guid GetGuid(int i) |
|||
{ |
|||
return (Guid)GetValue(i); |
|||
} |
|||
|
|||
public short GetInt16(int i) |
|||
{ |
|||
return (short)GetValue(i); |
|||
} |
|||
public int GetInt32(int i) |
|||
{ |
|||
return (int)GetValue(i); |
|||
} |
|||
|
|||
public long GetInt64(int i) |
|||
{ |
|||
return (long)GetValue(i); |
|||
} |
|||
|
|||
public string GetName(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return "ID"; |
|||
case 1: |
|||
return "TimeStamp"; |
|||
case 2: |
|||
return "Value"; |
|||
default: |
|||
return string.Empty; |
|||
} |
|||
} |
|||
|
|||
public int GetOrdinal(string name) |
|||
{ |
|||
switch (name) |
|||
{ |
|||
case "ID": |
|||
return 0; |
|||
case "TimeStamp": |
|||
return 1; |
|||
case "Value": |
|||
return 2; |
|||
default: |
|||
return -1; |
|||
} |
|||
} |
|||
|
|||
public string GetString(int i) |
|||
{ |
|||
return (string)GetValue(i); |
|||
} |
|||
|
|||
public object GetValue(int i) |
|||
{ |
|||
switch (i) |
|||
{ |
|||
case 0: |
|||
return _enumer.Current.ID; |
|||
case 1: |
|||
return _enumer.Current.TimeStamp; |
|||
case 2: |
|||
var index = _server.GetItemProperties(_enumer.Current.ID); |
|||
if (index < 0) return 0f; |
|||
switch (_server.MetaDataList[index].DataType) |
|||
{ |
|||
case DataType.FLOAT: |
|||
var ff = _enumer.Current.Value.Single; |
|||
return ff > -2E-38 && ff < 2E-38 ? 0f : ff; |
|||
case DataType.BOOL: |
|||
return _enumer.Current.Value.Boolean ? 1f : 0f; |
|||
case DataType.INT: |
|||
return _enumer.Current.Value.Int32; |
|||
case DataType.WORD: |
|||
case DataType.SHORT: |
|||
return _enumer.Current.Value.Int16; |
|||
case DataType.BYTE: |
|||
return _enumer.Current.Value.Byte; |
|||
default: |
|||
return 0f; |
|||
} |
|||
default: |
|||
return 0f; ; |
|||
} |
|||
} |
|||
|
|||
public int GetValues(object[] values) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public bool IsDBNull(int i) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
public object this[string name] |
|||
{ |
|||
get |
|||
{ |
|||
return GetValue(GetOrdinal(name)); |
|||
} |
|||
} |
|||
|
|||
public object this[int i] |
|||
{ |
|||
get |
|||
{ |
|||
return GetValue(i); |
|||
} |
|||
} |
|||
|
|||
#endregion
|
|||
} |
|||
} |
|||
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
@ -0,0 +1,49 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings /> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" |
|||
behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/Muyang/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/Muyang/service --> |
|||
<endpoint address="" |
|||
binding="basicHttpBinding" |
|||
bindingConfiguration="Binding1" |
|||
bindingNamespace="http://BatchCoreService" |
|||
contract="BatchCoreService.IDataExchangeService" /> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/Muyang/service/mex --> |
|||
<endpoint address="mex" |
|||
binding="mexHttpBinding" |
|||
contract="IMetadataExchange" /> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" |
|||
sendTimeout="00:10:00" |
|||
transferMode="Streamed" |
|||
messageEncoding="Text" |
|||
textEncoding="utf-8" |
|||
maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
</configuration> |
|||
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
|||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> |
|||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> |
|||
<security> |
|||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> |
|||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> |
|||
</requestedPrivileges> |
|||
</security> |
|||
</trustInfo> |
|||
</assembly> |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
@ -0,0 +1,147 @@ |
|||
Installing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing service BatchCoreService... |
|||
Service BatchCoreService has been successfully installed. |
|||
Creating EventLog source BatchCoreService in log Application... |
|||
Committing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Uninstalling assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Removing EventLog source BatchCoreService. |
|||
Service BatchCoreService is being removed from the system... |
|||
Service BatchCoreService was successfully removed from the system. |
|||
Installing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing service BatchCoreService... |
|||
Service BatchCoreService has been successfully installed. |
|||
Creating EventLog source BatchCoreService in log Application... |
|||
Committing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Uninstalling assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Removing EventLog source BatchCoreService. |
|||
Service BatchCoreService is being removed from the system... |
|||
Service BatchCoreService was successfully removed from the system. |
|||
Installing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing service BatchCoreService... |
|||
Service BatchCoreService has been successfully installed. |
|||
Creating EventLog source BatchCoreService in log Application... |
|||
Committing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Uninstalling assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Removing EventLog source BatchCoreService. |
|||
Service BatchCoreService is being removed from the system... |
|||
Service BatchCoreService was successfully removed from the system. |
|||
Installing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing service BatchCoreService... |
|||
Service BatchCoreService has been successfully installed. |
|||
Creating EventLog source BatchCoreService in log Application... |
|||
Committing assembly 'D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
正在安装程序集“D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe”。 |
|||
受影响的参数是: |
|||
logtoconsole = |
|||
logfile = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
正在安装服务 BatchCoreService... |
|||
正在日志 Application 中创建 EventLog 源 BatchCoreService... |
|||
正在回滚程序集“D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe”。 |
|||
受影响的参数是: |
|||
logtoconsole = |
|||
logfile = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
正在将事件日志还原到源 BatchCoreService 的前一状态。 |
|||
在 System.Diagnostics.EventLogInstaller 安装程序的“回滚”阶段发生异常。 |
|||
System.Security.SecurityException: 未找到源,但未能搜索某些或全部事件日志。不可访问的日志: Security。 |
|||
在安装的“回滚”阶段发生异常。将忽略该异常并继续回滚。但是,在完成回滚后计算机可能无法完全还原到它的初始状态。 |
|||
正在安装程序集“D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe”。 |
|||
受影响的参数是: |
|||
logtoconsole = |
|||
logfile = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
正在安装服务 BatchCoreService... |
|||
正在日志 Application 中创建 EventLog 源 BatchCoreService... |
|||
正在回滚程序集“D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe”。 |
|||
受影响的参数是: |
|||
logtoconsole = |
|||
logfile = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
正在将事件日志还原到源 BatchCoreService 的前一状态。 |
|||
在 System.Diagnostics.EventLogInstaller 安装程序的“回滚”阶段发生异常。 |
|||
System.Security.SecurityException: 未找到源,但未能搜索某些或全部事件日志。不可访问的日志: Security。 |
|||
在安装的“回滚”阶段发生异常。将忽略该异常并继续回滚。但是,在完成回滚后计算机可能无法完全还原到它的初始状态。 |
|||
正在安装程序集“D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe”。 |
|||
受影响的参数是: |
|||
logtoconsole = |
|||
logfile = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
正在安装服务 BatchCoreService... |
|||
已成功安装服务 BatchCoreService。 |
|||
正在日志 Application 中创建 EventLog 源 BatchCoreService... |
|||
正在提交程序集“D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe”。 |
|||
受影响的参数是: |
|||
logtoconsole = |
|||
logfile = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing assembly 'G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing service BatchCoreService... |
|||
Service BatchCoreService has been successfully installed. |
|||
Creating EventLog source BatchCoreService in log Application... |
|||
Committing assembly 'G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing assembly 'E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
Installing service BatchCoreService... |
|||
Service BatchCoreService has been successfully installed. |
|||
Creating EventLog source BatchCoreService in log Application... |
|||
Committing assembly 'E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe'. |
|||
Affected parameters are: |
|||
logtoconsole = |
|||
logfile = E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.InstallLog |
|||
assemblypath = E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
@ -0,0 +1,49 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings /> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" |
|||
behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/Muyang/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/Muyang/service --> |
|||
<endpoint address="" |
|||
binding="basicHttpBinding" |
|||
bindingConfiguration="Binding1" |
|||
bindingNamespace="http://BatchCoreService" |
|||
contract="BatchCoreService.IDataExchangeService" /> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/Muyang/service/mex --> |
|||
<endpoint address="mex" |
|||
binding="mexHttpBinding" |
|||
contract="IMetadataExchange" /> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" |
|||
sendTimeout="00:10:00" |
|||
transferMode="Streamed" |
|||
messageEncoding="Text" |
|||
textEncoding="utf-8" |
|||
maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
</configuration> |
|||
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
|||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> |
|||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> |
|||
<security> |
|||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> |
|||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> |
|||
</requestedPrivileges> |
|||
</security> |
|||
</trustInfo> |
|||
</assembly> |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,134 @@ |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\App.config |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\BatchCommon.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\protobuf-net.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\BatchCommon.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\App.config |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCommon.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataHelper.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataService.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataService.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCommon.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\App.config |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCommon.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCommon.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\App.config |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCommon.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\BatchCommon.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\App.config |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\BatchCommon.dll |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\BatchCommon.pdb |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\Project\牧羊上位机\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
E:\Project\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\Project\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\Project\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\Project\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\App.config |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\DataHelper.pdb |
|||
E:\Project\SCADA\Program\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\Project\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\Project\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\App.config |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\DataHelper.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\App.config |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.exe.config |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.exe |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\BatchCoreService.pdb |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\ClientDriver.dll |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\DataHelper.dll |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\DataService.dll |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\ClientDriver.pdb |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\DataHelper.pdb |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\bin\Debug\DataService.pdb |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.BatchCoreService.resources |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.ProjectInstaller.resources |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.exe |
|||
E:\新建文件夹\SCADA\Program\BatchCoreService\obj\x86\Debug\BatchCoreService.pdb |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,230 @@ |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\App.config |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
D:\大成\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\App.config |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
D:\大成0211new_20140302\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\App.config |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
D:\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
D:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
D:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
D:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
D:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
D:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
D:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\ResolveAssemblyReference.cache |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\GenerateResource.read.1.tlog |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\GenerateResource.write.1.tlog |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
G:\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\App.config |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
G:\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\App.config |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\双胞胎项目\大成0211\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\ResolveAssemblyReference.cache |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\GenerateResource.read.1.tlog |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\GenerateResource.write.1.tlog |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
D:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\双胞胎项目\长沙\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\protobuf-net.dll |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\南宁华港\华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\南宁华港\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\Project\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\App.config |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataHelper.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.dll |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\DataService.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\BatchCommon.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
F:\牧羊上位机\DataExchange\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\App.config |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\BatchCoreService.exe.config |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\BatchCoreService.exe |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\BatchCoreService.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\ClientDriver.dll |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\DataHelper.dll |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\DataService.dll |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\ClientDriver.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\DataHelper.pdb |
|||
E:\SCADA\Program\BatchCoreService\bin\Release\DataService.pdb |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Release\BatchCoreService.csprojResolveAssemblyReference.cache |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Release\BatchCoreService.BatchCoreService.resources |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Release\BatchCoreService.ProjectInstaller.resources |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Release\BatchCoreService.csproj.GenerateResource.Cache |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Release\BatchCoreService.exe |
|||
E:\SCADA\Program\BatchCoreService\obj\x86\Release\BatchCoreService.pdb |
|||
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
@ -0,0 +1,110 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<PropertyGroup> |
|||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> |
|||
<ProductVersion>8.0.30703</ProductVersion> |
|||
<SchemaVersion>2.0</SchemaVersion> |
|||
<ProjectGuid>{42D3168A-BBD0-4546-8C29-B2BECB795DA5}</ProjectGuid> |
|||
<OutputType>Exe</OutputType> |
|||
<AppDesignerFolder>Properties</AppDesignerFolder> |
|||
<RootNamespace>BatchCoreService</RootNamespace> |
|||
<AssemblyName>BatchCoreTest</AssemblyName> |
|||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
|||
<TargetFrameworkProfile> |
|||
</TargetFrameworkProfile> |
|||
<FileAlignment>512</FileAlignment> |
|||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
|||
<WarningLevel>4</WarningLevel> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
|||
<PlatformTarget>x86</PlatformTarget> |
|||
<DebugSymbols>true</DebugSymbols> |
|||
<DebugType>full</DebugType> |
|||
<Optimize>false</Optimize> |
|||
<OutputPath>bin\Debug\</OutputPath> |
|||
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|||
<ErrorReport>prompt</ErrorReport> |
|||
<WarningLevel>4</WarningLevel> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
|||
<PlatformTarget>x86</PlatformTarget> |
|||
<DebugType>pdbonly</DebugType> |
|||
<Optimize>true</Optimize> |
|||
<OutputPath>bin\Release\</OutputPath> |
|||
<DefineConstants>TRACE</DefineConstants> |
|||
<ErrorReport>prompt</ErrorReport> |
|||
<WarningLevel>4</WarningLevel> |
|||
</PropertyGroup> |
|||
<PropertyGroup> |
|||
<StartupObject /> |
|||
</PropertyGroup> |
|||
<ItemGroup> |
|||
<Reference Include="System" /> |
|||
<Reference Include="System.Data" /> |
|||
<Reference Include="System.ServiceModel" /> |
|||
<Reference Include="System.ServiceModel.Web" /> |
|||
<Reference Include="System.Xml" /> |
|||
<Reference Include="System.Core" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Compile Include="..\BatchCoreService\DAService.cs"> |
|||
<Link>DAService.cs</Link> |
|||
</Compile> |
|||
<Compile Include="..\BatchCoreService\SqlMapping.cs"> |
|||
<Link>SqlMapping.cs</Link> |
|||
</Compile> |
|||
<Compile Include="Program.cs"> |
|||
<SubType>Code</SubType> |
|||
</Compile> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Compile Include="Properties\AssemblyInfo.cs"> |
|||
<SubType>Code</SubType> |
|||
</Compile> |
|||
<Compile Include="Properties\Resources.Designer.cs"> |
|||
<AutoGen>True</AutoGen> |
|||
<DesignTime>True</DesignTime> |
|||
<DependentUpon>Resources.resx</DependentUpon> |
|||
</Compile> |
|||
<Compile Include="Properties\Settings.Designer.cs"> |
|||
<AutoGen>True</AutoGen> |
|||
<DependentUpon>Settings.settings</DependentUpon> |
|||
<DesignTimeSharedInput>True</DesignTimeSharedInput> |
|||
</Compile> |
|||
<EmbeddedResource Include="Properties\Resources.resx"> |
|||
<Generator>ResXFileCodeGenerator</Generator> |
|||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> |
|||
</EmbeddedResource> |
|||
<None Include="App.config"> |
|||
<SubType>Designer</SubType> |
|||
</None> |
|||
<None Include="Properties\Settings.settings"> |
|||
<Generator>SettingsSingleFileGenerator</Generator> |
|||
<LastGenOutput>Settings.Designer.cs</LastGenOutput> |
|||
</None> |
|||
<AppDesigner Include="Properties\" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ProjectReference Include="..\ClientDriver\ClientDriver.csproj"> |
|||
<Project>{6DF53968-152D-4CA9-B62F-FF1C27069C4D}</Project> |
|||
<Name>ClientDriver</Name> |
|||
</ProjectReference> |
|||
<ProjectReference Include="..\DataHelper\DataHelper.csproj"> |
|||
<Project>{755c5459-bca4-4729-a93c-0c73a41bdf3c}</Project> |
|||
<Name>DataHelper</Name> |
|||
</ProjectReference> |
|||
<ProjectReference Include="..\DataService\DataService.csproj"> |
|||
<Project>{8965e389-6466-4b30-bd43-83c909044637}</Project> |
|||
<Name>DataService</Name> |
|||
</ProjectReference> |
|||
</ItemGroup> |
|||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
|||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
|||
Other similar extension points exist, see Microsoft.Common.targets. |
|||
<Target Name="BeforeBuild"> |
|||
</Target> |
|||
<Target Name="AfterBuild"> |
|||
</Target> |
|||
--> |
|||
</Project> |
|||
@ -0,0 +1,50 @@ |
|||
using System; |
|||
using System.ServiceModel; |
|||
|
|||
namespace BatchCoreService |
|||
{ |
|||
static class Program |
|||
{ |
|||
/// <summary>
|
|||
/// The main entry point for the application.
|
|||
/// </summary>
|
|||
static void Main() |
|||
{ |
|||
BatchCoreTest srv = new BatchCoreTest(); |
|||
Console.ReadLine(); |
|||
} |
|||
} |
|||
|
|||
public class BatchCoreTest : IDisposable |
|||
{ |
|||
//DAService service;
|
|||
ServiceHost serviceHost = null; |
|||
|
|||
public BatchCoreTest() |
|||
{ |
|||
//service = new DAService();
|
|||
if (serviceHost != null) |
|||
{ |
|||
serviceHost.Close(); |
|||
} |
|||
|
|||
// Create a ServiceHost for the CalculatorService type and
|
|||
// provide the base address.
|
|||
serviceHost = new ServiceHost(typeof(DAService)); |
|||
|
|||
// Open the ServiceHostBase to create listeners and start
|
|||
// listening for messages.
|
|||
serviceHost.Open(); |
|||
//Console.ReadLine();
|
|||
} |
|||
|
|||
public void Dispose() |
|||
{ |
|||
if (serviceHost != null) |
|||
{ |
|||
serviceHost.Close(); |
|||
serviceHost = null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,43 @@ |
|||
using System.Reflection; |
|||
using System.Runtime.InteropServices; |
|||
|
|||
|
|||
// General Information about an assembly is controlled through the following
|
|||
// set of attributes. Change these attribute values to modify the information
|
|||
// associated with an assembly.
|
|||
[assembly: AssemblyTitle("BatchCoreTest")] |
|||
[assembly: AssemblyDescription("")] |
|||
[assembly: AssemblyConfiguration("")] |
|||
[assembly: AssemblyCompany("")] |
|||
[assembly: AssemblyProduct("BatchCoreTest")] |
|||
[assembly: AssemblyCopyright("Copyright © 2014")] |
|||
[assembly: AssemblyTrademark("")] |
|||
[assembly: AssemblyCulture("")] |
|||
|
|||
// Setting ComVisible to false makes the types in this assembly not visible
|
|||
// to COM components. If you need to access a type in this assembly from
|
|||
// COM, set the ComVisible attribute to true on that type.
|
|||
[assembly: ComVisible(false)] |
|||
|
|||
//In order to begin building localizable applications, set
|
|||
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
|
|||
//inside a <PropertyGroup>. For example, if you are using US english
|
|||
//in your source files, set the <UICulture> to en-US. Then uncomment
|
|||
//the NeutralResourceLanguage attribute below. Update the "en-US" in
|
|||
//the line below to match the UICulture setting in the project file.
|
|||
|
|||
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
|||
|
|||
|
|||
// Version information for an assembly consists of the following four values:
|
|||
//
|
|||
// Major Version
|
|||
// Minor Version
|
|||
// Build Number
|
|||
// Revision
|
|||
//
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
|||
// by using the '*' as shown below:
|
|||
// [assembly: AssemblyVersion("1.0.*")]
|
|||
[assembly: AssemblyVersion("1.0.0.0")] |
|||
[assembly: AssemblyFileVersion("1.0.0.0")] |
|||
@ -0,0 +1,63 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
// Runtime Version:4.0.30319.18063
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace BatchCoreService.Properties { |
|||
using System; |
|||
|
|||
|
|||
/// <summary>
|
|||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
|||
/// </summary>
|
|||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
|||
// class via a tool like ResGen or Visual Studio.
|
|||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
|||
// with the /str option, or rebuild your VS project.
|
|||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] |
|||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
|||
internal class Resources { |
|||
|
|||
private static global::System.Resources.ResourceManager resourceMan; |
|||
|
|||
private static global::System.Globalization.CultureInfo resourceCulture; |
|||
|
|||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] |
|||
internal Resources() { |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Returns the cached ResourceManager instance used by this class.
|
|||
/// </summary>
|
|||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
|||
internal static global::System.Resources.ResourceManager ResourceManager { |
|||
get { |
|||
if (object.ReferenceEquals(resourceMan, null)) { |
|||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BatchCoreService.Properties.Resources", typeof(Resources).Assembly); |
|||
resourceMan = temp; |
|||
} |
|||
return resourceMan; |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Overrides the current thread's CurrentUICulture property for all
|
|||
/// resource lookups using this strongly typed resource class.
|
|||
/// </summary>
|
|||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
|||
internal static global::System.Globalization.CultureInfo Culture { |
|||
get { |
|||
return resourceCulture; |
|||
} |
|||
set { |
|||
resourceCulture = value; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,117 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<root> |
|||
<!-- |
|||
Microsoft ResX Schema |
|||
|
|||
Version 2.0 |
|||
|
|||
The primary goals of this format is to allow a simple XML format |
|||
that is mostly human readable. The generation and parsing of the |
|||
various data types are done through the TypeConverter classes |
|||
associated with the data types. |
|||
|
|||
Example: |
|||
|
|||
... ado.net/XML headers & schema ... |
|||
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|||
<resheader name="version">2.0</resheader> |
|||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|||
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|||
</data> |
|||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|||
<comment>This is a comment</comment> |
|||
</data> |
|||
|
|||
There are any number of "resheader" rows that contain simple |
|||
name/value pairs. |
|||
|
|||
Each data row contains a name, and value. The row also contains a |
|||
type or mimetype. Type corresponds to a .NET class that support |
|||
text/value conversion through the TypeConverter architecture. |
|||
Classes that don't support this are serialized and stored with the |
|||
mimetype set. |
|||
|
|||
The mimetype is used for serialized objects, and tells the |
|||
ResXResourceReader how to depersist the object. This is currently not |
|||
extensible. For a given mimetype the value must be set accordingly: |
|||
|
|||
Note - application/x-microsoft.net.object.binary.base64 is the format |
|||
that the ResXResourceWriter will generate, however the reader can |
|||
read any of the formats listed below. |
|||
|
|||
mimetype: application/x-microsoft.net.object.binary.base64 |
|||
value : The object must be serialized with |
|||
: System.Serialization.Formatters.Binary.BinaryFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.soap.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|||
value : The object must be serialized into a byte array |
|||
: using a System.ComponentModel.TypeConverter |
|||
: and then encoded with base64 encoding. |
|||
--> |
|||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|||
<xsd:element name="root" msdata:IsDataSet="true"> |
|||
<xsd:complexType> |
|||
<xsd:choice maxOccurs="unbounded"> |
|||
<xsd:element name="metadata"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" /> |
|||
<xsd:attribute name="type" type="xsd:string" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="assembly"> |
|||
<xsd:complexType> |
|||
<xsd:attribute name="alias" type="xsd:string" /> |
|||
<xsd:attribute name="name" type="xsd:string" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="data"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="resheader"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:choice> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:schema> |
|||
<resheader name="resmimetype"> |
|||
<value>text/microsoft-resx</value> |
|||
</resheader> |
|||
<resheader name="version"> |
|||
<value>2.0</value> |
|||
</resheader> |
|||
<resheader name="reader"> |
|||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
<resheader name="writer"> |
|||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
</root> |
|||
@ -0,0 +1,26 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
// Runtime Version:4.0.30319.18063
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace BatchCoreService.Properties { |
|||
|
|||
|
|||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
|||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] |
|||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { |
|||
|
|||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); |
|||
|
|||
public static Settings Default { |
|||
get { |
|||
return defaultInstance; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,7 @@ |
|||
<?xml version='1.0' encoding='utf-8'?> |
|||
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)"> |
|||
<Profiles> |
|||
<Profile Name="(Default)" /> |
|||
</Profiles> |
|||
<Settings /> |
|||
</SettingsFile> |
|||
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
|||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> |
|||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> |
|||
<security> |
|||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> |
|||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> |
|||
</requestedPrivileges> |
|||
</security> |
|||
</trustInfo> |
|||
</assembly> |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
</configSections> |
|||
<connectionStrings/> |
|||
<system.serviceModel> |
|||
<services> |
|||
<!-- This section is optional with the new configuration model |
|||
introduced in .NET Framework 4. --> |
|||
<service name="BatchCoreService.DAService" behaviorConfiguration="DAServiceBehavior"> |
|||
<host> |
|||
<baseAddresses> |
|||
<add baseAddress="http://localhost:8000/SCADA/service"/> |
|||
</baseAddresses> |
|||
</host> |
|||
<!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/SCADA/service --> |
|||
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding1" bindingNamespace="http://BatchCoreService" contract="BatchCoreService.IDataExchangeService"/> |
|||
<!-- the mex endpoint is exposed at http://localhost:8000/SCADA/service/mex --> |
|||
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|||
</service> |
|||
</services> |
|||
<bindings> |
|||
<basicHttpBinding> |
|||
<binding name="Binding1" sendTimeout="00:10:00" transferMode="Streamed" messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807"> |
|||
</binding> |
|||
</basicHttpBinding> |
|||
</bindings> |
|||
<behaviors> |
|||
<serviceBehaviors> |
|||
<behavior name="DAServiceBehavior"> |
|||
<serviceMetadata httpGetEnabled="true"/> |
|||
<serviceDebug includeExceptionDetailInFaults="False"/> |
|||
</behavior> |
|||
</serviceBehaviors> |
|||
</behaviors> |
|||
</system.serviceModel> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> |
|||
</startup> |
|||
</configuration> |
|||
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
|||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> |
|||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> |
|||
<security> |
|||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> |
|||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> |
|||
</requestedPrivileges> |
|||
</security> |
|||
</trustInfo> |
|||
</assembly> |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,69 @@ |
|||
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "12034D0952AF1C1ECD2F6DA3895F79F2"
|
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
// Runtime Version:4.0.30319.18063
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
using System; |
|||
using System.Diagnostics; |
|||
using System.Windows; |
|||
using System.Windows.Automation; |
|||
using System.Windows.Controls; |
|||
using System.Windows.Controls.Primitives; |
|||
using System.Windows.Data; |
|||
using System.Windows.Documents; |
|||
using System.Windows.Ink; |
|||
using System.Windows.Input; |
|||
using System.Windows.Markup; |
|||
using System.Windows.Media; |
|||
using System.Windows.Media.Animation; |
|||
using System.Windows.Media.Effects; |
|||
using System.Windows.Media.Imaging; |
|||
using System.Windows.Media.Media3D; |
|||
using System.Windows.Media.TextFormatting; |
|||
using System.Windows.Navigation; |
|||
using System.Windows.Shapes; |
|||
using System.Windows.Shell; |
|||
|
|||
|
|||
namespace BatchCoreTest { |
|||
|
|||
|
|||
/// <summary>
|
|||
/// App
|
|||
/// </summary>
|
|||
public partial class App : System.Windows.Application { |
|||
|
|||
/// <summary>
|
|||
/// InitializeComponent
|
|||
/// </summary>
|
|||
[System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] |
|||
public void InitializeComponent() { |
|||
|
|||
#line 4 "..\..\..\App.xaml"
|
|||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); |
|||
|
|||
#line default
|
|||
#line hidden
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Application Entry Point.
|
|||
/// </summary>
|
|||
[System.STAThreadAttribute()] |
|||
[System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] |
|||
public static void Main() { |
|||
BatchCoreTest.App app = new BatchCoreTest.App(); |
|||
app.InitializeComponent(); |
|||
app.Run(); |
|||
} |
|||
} |
|||
} |
|||
|
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue