Skip to content

Commit

Permalink
Import MDWS 2.5 Source
Browse files Browse the repository at this point in the history
MDWS was released to OSEHRA June, 2012.

To prepare the release for public distribution, the VA MDWS development
team redacted a number of standard items (e.g. IP addresses) from the
source code in the development team's SVN repository.  For
reproducibility, a branch named "/mdws/branches/mdws-osehra" was created
from the "/mdws/tags/R_2_5_0" tag (revision 8504).  This branch contains
a history of all the changes applied to the release.  Revision 8549 from
the "/mdws/branches/mdws-osehra" branch (commented as release candidate
3) is the point where the project was packaged and handed to VA Product
Development for final review and distribution to OSEHRA.

Use the following shell code to extract MDWS from the DVA submission
excluding its dependencies:

sha1=dcab60ad9552a1307213a3d442ecaff44552f3ce &&
sha1sum ../ij_14_mdws.zip |grep $sha1 &&
unzip ../ij_14_mdws.zip 'IJ_14_mdws/mdws/mdws/*' &&
mv IJ_14_mdws/mdws/mdws/* . &&
rm -rf IJ_14_mdws &&
rm -rf mdws/resources/lib dependencies.txt &&
lf_patterns='
 *.asax *.asmx *.aspx *.cs *.css *.datasource
 *.html *.js *.nunit *.txt *.wsdl *.xml *.xsd
 ClassDiagram1.cd  EmrSvc.disco  EmrSvc.svc  EmrSvc.wsdl  Product.wxs
 Reference.map  Settings.settings Web.config  app.conf  app.config' &&
for p in $lf_patterns; do
  find * -name "$p" -print0 | xargs -0 fromdos
done &&
crlf_patterns='*.sln *proj' && for p in $crlf_patterns; do
  find * -name "$p" -print0 | xargs -0 todos
done &&
rm_patterns='*.suo *.user' && for p in $rm_patterns; do
  find * -name "$p" -print0 | xargs -0 rm -rf
done
  • Loading branch information
US DVA authored and osehr-agent committed Sep 19, 2012
1 parent 989eb0b commit e47ca24
Show file tree
Hide file tree
Showing 369 changed files with 58,009 additions and 0 deletions.
321 changes: 321 additions & 0 deletions mdws-setup/Product.wxs

Large diffs are not rendered by default.

Binary file added mdws-setup/images/mdws-banner.bmp
Binary file not shown.
Binary file added mdws-setup/images/mdws.bmp
Binary file not shown.
63 changes: 63 additions & 0 deletions mdws-setup/mdws-setup.wixproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>3.0</ProductVersion>
<ProjectGuid>{042b25d1-088d-4d77-8a1f-60bc08d85f09}</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>mdws-setup</OutputName>
<OutputType>Package</OutputType>
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Product.wxs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\mdws\mdws.csproj">
<Name>mdws</Name>
<Project>{b103eb8c-786e-40a4-b49f-91c585ace032}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="images" />
</ItemGroup>
<ItemGroup>
<WixExtension Include="WixUtilExtension">
<HintPath>C:\Program Files\Windows Installer XML v3.5\bin\WixUtilExtension.dll</HintPath>
<Name>WixUtilExtension</Name>
</WixExtension>
<WixExtension Include="WixUIExtension">
<HintPath>C:\Program Files\Windows Installer XML v3.5\bin\WixUIExtension.dll</HintPath>
<Name>WixUIExtension</Name>
</WixExtension>
<WixExtension Include="WixNetFxExtension">
<HintPath>C:\Program Files\Windows Installer XML v3.5\bin\WixNetFxExtension.dll</HintPath>
<Name>WixNetFxExtension</Name>
</WixExtension>
<WixExtension Include="WixIIsExtension">
<HintPath>C:\Program Files\Windows Installer XML v3.5\bin\WixIIsExtension.dll</HintPath>
<Name>WixIIsExtension</Name>
</WixExtension>
</ItemGroup>
<Import Project="$(WixTargetsPath)" />
<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
40 changes: 40 additions & 0 deletions mdws-test/Log4Net.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8" ?>
<log4net debug="true">
<appender name="AspNetTraceAppender" type="log4net.Appender.AspNetTraceAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="[%thread] %-5level - %message" />
</layout>
</appender>
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="Logs/log.txt" />
<appendToFile value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="100KB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>
</appender>

<appender name="TraceAppender" type="log4net.Appender.TraceAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%-5p: %m" />
</layout>
</appender>

<!-- Set default logging level to DEBUG -->
<root>
<level value="DEBUG" />
<appender-ref ref="AspNetTraceAppender" />
<appender-ref ref="TraceAppender" />
<appender-ref ref="RollingFileAppender" />
</root>
<!--
In Spring.NET there is a 1-1 correspondence between the logger name and
the namespace of the class doing the logging...
-->
<logger name="Spring">
<level value="DEBUG" />
</logger>
</log4net>
35 changes: 35 additions & 0 deletions mdws-test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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("MDWS")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("mdws")]
[assembly: AssemblyCopyright("Copyright © 2008")]
[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("d3cb8554-3718-453f-9932-bdd0edf5812a")]

// 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 Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
45 changes: 45 additions & 0 deletions mdws-test/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions mdws-test/Properties/Settings.settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="gov.va.medora.mdws.test.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="medora_webapp_test_NumiProxy_NumiService" Type="System.String" Scope="Application">
<Value Profile="(Default)">http://localhost:8734/NumiService.asmx</Value>
</Setting>
<Setting Name="mdws_test_EmrProxy_EmrSvc" Type="(Web Service URL)" Scope="Application">
<Value Profile="(Default)">http://localhost:8734/EmrSvc.asmx</Value>
</Setting>
</Settings>
</SettingsFile>
10 changes: 10 additions & 0 deletions mdws-test/Web References/EmrProxy/BoolTO.datasource
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="BoolTO" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>gov.va.medora.mdws.test.EmrProxy.BoolTO, Web References.EmrProxy.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>
10 changes: 10 additions & 0 deletions mdws-test/Web References/EmrProxy/DataSourceArray.datasource
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="DataSourceArray" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>gov.va.medora.mdws.test.EmrProxy.DataSourceArray, Web References.EmrProxy.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>
6 changes: 6 additions & 0 deletions mdws-test/Web References/EmrProxy/EmrSvc.disco
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
<contractRef ref="http://localhost:8734/EmrSvc.asmx?wsdl" docRef="http://localhost:8734/EmrSvc.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
<soap address="http://localhost:8734/EmrSvc.asmx" xmlns:q1="http://mdws.medora.va.gov/EmrSvc" binding="q1:EmrSvcSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
<soap address="http://localhost:8734/EmrSvc.asmx" xmlns:q2="http://mdws.medora.va.gov/EmrSvc" binding="q2:EmrSvcSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
</discovery>
Loading

0 comments on commit e47ca24

Please sign in to comment.