├── BuildProcessTemplates ├── DefaultTemplate.11.1.xaml ├── DefaultTemplate.xaml ├── LabDefaultTemplate.11.xaml └── UpgradeTemplate.xaml ├── License.txt ├── README.md ├── include ├── atlcache.h ├── atlcrypt.h ├── atlcrypt.inl ├── atlextmgmt.h ├── atlhtml.h ├── atlhttp.h ├── atlhttp.inl ├── atlisapi.h ├── atlmime.h ├── atlperf.h ├── atlperf.inl ├── atlrx.h ├── atlserr.h ├── atlsession.h ├── atlsharedsvc.h ├── atlsiface.h ├── atlsmtpconnection.h ├── atlsmtputil.h ├── atlsoap.h ├── atlspriv.h ├── atlspriv.inl ├── atlsrv.rc ├── atlsrvres.h ├── atlstencil.h ├── l.chs │ └── atlsrv.rc ├── l.cht │ └── atlsrv.rc ├── l.deu │ └── atlsrv.rc ├── l.esp │ └── atlsrv.rc ├── l.fra │ └── atlsrv.rc ├── l.ita │ └── atlsrv.rc ├── l.jpn │ └── atlsrv.rc ├── l.kor │ └── atlsrv.rc └── res │ ├── dllmgr.srf │ ├── stencilmgr.srf │ └── threadmgr.srf └── source ├── CLStencil ├── ReadMe.htm ├── StdAfx.cpp ├── StdAfx.h ├── clstencil.cpp ├── clstencil.h ├── clstencil.rc ├── clstencil.sln ├── clstencil.vcproj ├── clstencilui.mak ├── clstencilui.vcproj └── resource.h ├── SProxy ├── Attribute.h ├── AttributeParser.cpp ├── AttributeParser.h ├── CodeTypeBuilder.cpp ├── CodeTypeBuilder.h ├── CodeTypes.h ├── ComplexType.cpp ├── ComplexType.h ├── ComplexTypeParser.cpp ├── ComplexTypeParser.h ├── Content.cpp ├── Content.h ├── ContentParser.cpp ├── ContentParser.h ├── CppCodeGenerator.cpp ├── CppCodeGenerator.h ├── CppKeywordTable.h ├── DiscoMapDocument.cpp ├── DiscoMapDocument.h ├── DiscoMapParser.cpp ├── DiscoMapParser.h ├── Element.cpp ├── Element.h ├── ElementParser.cpp ├── ElementParser.h ├── Emit.cpp ├── Emit.h ├── ErrorHandler.cpp ├── ErrorHandler.h ├── FacetMappingTable.h ├── Namespaces.h ├── Parser.cpp ├── Parser.h ├── QName.cpp ├── QName.h ├── ReadMe.txt ├── Schema.cpp ├── Schema.h ├── SchemaDocument.h ├── SchemaParser.cpp ├── SchemaParser.h ├── SimpleType.h ├── SimpleTypeParser.cpp ├── SimpleTypeParser.h ├── SkipParser.h ├── SproxyColl.h ├── SproxyError.h ├── StdAfx.cpp ├── StdAfx.h ├── Util.cpp ├── Util.h ├── WSDLBinding.cpp ├── WSDLBinding.h ├── WSDLBindingParser.cpp ├── WSDLBindingParser.h ├── WSDLDocument.h ├── WSDLMessage.h ├── WSDLMessageParser.cpp ├── WSDLMessageParser.h ├── WSDLMessagePart.cpp ├── WSDLMessagePart.h ├── WSDLOperationIOParser.cpp ├── WSDLOperationIOParser.h ├── WSDLOperationParser.cpp ├── WSDLOperationParser.h ├── WSDLParser.cpp ├── WSDLParser.h ├── WSDLPort.cpp ├── WSDLPort.h ├── WSDLPortType.h ├── WSDLPortTypeIO.cpp ├── WSDLPortTypeIO.h ├── WSDLPortTypeOperation.h ├── WSDLPortTypeParser.cpp ├── WSDLPortTypeParser.h ├── WSDLService.h ├── WSDLServiceParser.cpp ├── WSDLServiceParser.h ├── WSDLServicePortParser.cpp ├── WSDLServicePortParser.h ├── WSDLSoapElement.cpp ├── WSDLSoapElement.h ├── WSDLType.h ├── WSDLTypesParser.cpp ├── WSDLTypesParser.h ├── XMLDocParser.cpp ├── XMLDocParser.h ├── XMLDocument.cpp ├── XMLDocument.h ├── XMLElement.cpp ├── XMLElement.h ├── XSDElement.h ├── XSDMappingTable.h ├── cppkeywords.in ├── errordefs.h ├── facets.in ├── makefile ├── makefile.inc ├── msxml2.h ├── resource.h ├── sources ├── sproxy.cpp ├── sproxy.mak ├── sproxy.rc ├── sproxy.sln ├── sproxy.srf ├── sproxy.vcproj ├── utils │ ├── cppkw.c │ ├── mkutils.cmd │ └── static_hash.c ├── wsdl_rpc.srf └── xsdtypes.in └── VCDeploy ├── api.cpp ├── api.h ├── atlsdply.cpp ├── atlsdply.rc ├── depsettings.cpp ├── depsettings.h ├── iiisext.h ├── iisext_i.c ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── vcdeploy.sln └── vcdeploy.vcproj /BuildProcessTemplates/DefaultTemplate.11.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/BuildProcessTemplates/DefaultTemplate.11.1.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/LabDefaultTemplate.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/BuildProcessTemplates/LabDefaultTemplate.11.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/README.md -------------------------------------------------------------------------------- /include/atlcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlcache.h -------------------------------------------------------------------------------- /include/atlcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlcrypt.h -------------------------------------------------------------------------------- /include/atlcrypt.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlcrypt.inl -------------------------------------------------------------------------------- /include/atlextmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlextmgmt.h -------------------------------------------------------------------------------- /include/atlhtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlhtml.h -------------------------------------------------------------------------------- /include/atlhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlhttp.h -------------------------------------------------------------------------------- /include/atlhttp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlhttp.inl -------------------------------------------------------------------------------- /include/atlisapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlisapi.h -------------------------------------------------------------------------------- /include/atlmime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlmime.h -------------------------------------------------------------------------------- /include/atlperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlperf.h -------------------------------------------------------------------------------- /include/atlperf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlperf.inl -------------------------------------------------------------------------------- /include/atlrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlrx.h -------------------------------------------------------------------------------- /include/atlserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlserr.h -------------------------------------------------------------------------------- /include/atlsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsession.h -------------------------------------------------------------------------------- /include/atlsharedsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsharedsvc.h -------------------------------------------------------------------------------- /include/atlsiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsiface.h -------------------------------------------------------------------------------- /include/atlsmtpconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsmtpconnection.h -------------------------------------------------------------------------------- /include/atlsmtputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsmtputil.h -------------------------------------------------------------------------------- /include/atlsoap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsoap.h -------------------------------------------------------------------------------- /include/atlspriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlspriv.h -------------------------------------------------------------------------------- /include/atlspriv.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlspriv.inl -------------------------------------------------------------------------------- /include/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsrv.rc -------------------------------------------------------------------------------- /include/atlsrvres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlsrvres.h -------------------------------------------------------------------------------- /include/atlstencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/atlstencil.h -------------------------------------------------------------------------------- /include/l.chs/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.chs/atlsrv.rc -------------------------------------------------------------------------------- /include/l.cht/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.cht/atlsrv.rc -------------------------------------------------------------------------------- /include/l.deu/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.deu/atlsrv.rc -------------------------------------------------------------------------------- /include/l.esp/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.esp/atlsrv.rc -------------------------------------------------------------------------------- /include/l.fra/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.fra/atlsrv.rc -------------------------------------------------------------------------------- /include/l.ita/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.ita/atlsrv.rc -------------------------------------------------------------------------------- /include/l.jpn/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.jpn/atlsrv.rc -------------------------------------------------------------------------------- /include/l.kor/atlsrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/l.kor/atlsrv.rc -------------------------------------------------------------------------------- /include/res/dllmgr.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/res/dllmgr.srf -------------------------------------------------------------------------------- /include/res/stencilmgr.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/res/stencilmgr.srf -------------------------------------------------------------------------------- /include/res/threadmgr.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/include/res/threadmgr.srf -------------------------------------------------------------------------------- /source/CLStencil/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/ReadMe.htm -------------------------------------------------------------------------------- /source/CLStencil/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/StdAfx.cpp -------------------------------------------------------------------------------- /source/CLStencil/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/StdAfx.h -------------------------------------------------------------------------------- /source/CLStencil/clstencil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencil.cpp -------------------------------------------------------------------------------- /source/CLStencil/clstencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencil.h -------------------------------------------------------------------------------- /source/CLStencil/clstencil.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencil.rc -------------------------------------------------------------------------------- /source/CLStencil/clstencil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencil.sln -------------------------------------------------------------------------------- /source/CLStencil/clstencil.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencil.vcproj -------------------------------------------------------------------------------- /source/CLStencil/clstencilui.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencilui.mak -------------------------------------------------------------------------------- /source/CLStencil/clstencilui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/clstencilui.vcproj -------------------------------------------------------------------------------- /source/CLStencil/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/CLStencil/resource.h -------------------------------------------------------------------------------- /source/SProxy/Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Attribute.h -------------------------------------------------------------------------------- /source/SProxy/AttributeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/AttributeParser.cpp -------------------------------------------------------------------------------- /source/SProxy/AttributeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/AttributeParser.h -------------------------------------------------------------------------------- /source/SProxy/CodeTypeBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/CodeTypeBuilder.cpp -------------------------------------------------------------------------------- /source/SProxy/CodeTypeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/CodeTypeBuilder.h -------------------------------------------------------------------------------- /source/SProxy/CodeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/CodeTypes.h -------------------------------------------------------------------------------- /source/SProxy/ComplexType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ComplexType.cpp -------------------------------------------------------------------------------- /source/SProxy/ComplexType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ComplexType.h -------------------------------------------------------------------------------- /source/SProxy/ComplexTypeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ComplexTypeParser.cpp -------------------------------------------------------------------------------- /source/SProxy/ComplexTypeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ComplexTypeParser.h -------------------------------------------------------------------------------- /source/SProxy/Content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Content.cpp -------------------------------------------------------------------------------- /source/SProxy/Content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Content.h -------------------------------------------------------------------------------- /source/SProxy/ContentParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ContentParser.cpp -------------------------------------------------------------------------------- /source/SProxy/ContentParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ContentParser.h -------------------------------------------------------------------------------- /source/SProxy/CppCodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/CppCodeGenerator.cpp -------------------------------------------------------------------------------- /source/SProxy/CppCodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/CppCodeGenerator.h -------------------------------------------------------------------------------- /source/SProxy/CppKeywordTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/CppKeywordTable.h -------------------------------------------------------------------------------- /source/SProxy/DiscoMapDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/DiscoMapDocument.cpp -------------------------------------------------------------------------------- /source/SProxy/DiscoMapDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/DiscoMapDocument.h -------------------------------------------------------------------------------- /source/SProxy/DiscoMapParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/DiscoMapParser.cpp -------------------------------------------------------------------------------- /source/SProxy/DiscoMapParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/DiscoMapParser.h -------------------------------------------------------------------------------- /source/SProxy/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Element.cpp -------------------------------------------------------------------------------- /source/SProxy/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Element.h -------------------------------------------------------------------------------- /source/SProxy/ElementParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ElementParser.cpp -------------------------------------------------------------------------------- /source/SProxy/ElementParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ElementParser.h -------------------------------------------------------------------------------- /source/SProxy/Emit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Emit.cpp -------------------------------------------------------------------------------- /source/SProxy/Emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Emit.h -------------------------------------------------------------------------------- /source/SProxy/ErrorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ErrorHandler.cpp -------------------------------------------------------------------------------- /source/SProxy/ErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ErrorHandler.h -------------------------------------------------------------------------------- /source/SProxy/FacetMappingTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/FacetMappingTable.h -------------------------------------------------------------------------------- /source/SProxy/Namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Namespaces.h -------------------------------------------------------------------------------- /source/SProxy/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Parser.cpp -------------------------------------------------------------------------------- /source/SProxy/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Parser.h -------------------------------------------------------------------------------- /source/SProxy/QName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/QName.cpp -------------------------------------------------------------------------------- /source/SProxy/QName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/QName.h -------------------------------------------------------------------------------- /source/SProxy/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/ReadMe.txt -------------------------------------------------------------------------------- /source/SProxy/Schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Schema.cpp -------------------------------------------------------------------------------- /source/SProxy/Schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Schema.h -------------------------------------------------------------------------------- /source/SProxy/SchemaDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SchemaDocument.h -------------------------------------------------------------------------------- /source/SProxy/SchemaParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SchemaParser.cpp -------------------------------------------------------------------------------- /source/SProxy/SchemaParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SchemaParser.h -------------------------------------------------------------------------------- /source/SProxy/SimpleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SimpleType.h -------------------------------------------------------------------------------- /source/SProxy/SimpleTypeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SimpleTypeParser.cpp -------------------------------------------------------------------------------- /source/SProxy/SimpleTypeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SimpleTypeParser.h -------------------------------------------------------------------------------- /source/SProxy/SkipParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SkipParser.h -------------------------------------------------------------------------------- /source/SProxy/SproxyColl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SproxyColl.h -------------------------------------------------------------------------------- /source/SProxy/SproxyError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/SproxyError.h -------------------------------------------------------------------------------- /source/SProxy/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/StdAfx.cpp -------------------------------------------------------------------------------- /source/SProxy/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/StdAfx.h -------------------------------------------------------------------------------- /source/SProxy/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Util.cpp -------------------------------------------------------------------------------- /source/SProxy/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/Util.h -------------------------------------------------------------------------------- /source/SProxy/WSDLBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLBinding.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLBinding.h -------------------------------------------------------------------------------- /source/SProxy/WSDLBindingParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLBindingParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLBindingParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLBindingParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLDocument.h -------------------------------------------------------------------------------- /source/SProxy/WSDLMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLMessage.h -------------------------------------------------------------------------------- /source/SProxy/WSDLMessageParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLMessageParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLMessageParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLMessageParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLMessagePart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLMessagePart.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLMessagePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLMessagePart.h -------------------------------------------------------------------------------- /source/SProxy/WSDLOperationIOParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLOperationIOParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLOperationIOParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLOperationIOParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLOperationParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLOperationParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLOperationParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLOperationParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPort.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPort.h -------------------------------------------------------------------------------- /source/SProxy/WSDLPortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPortType.h -------------------------------------------------------------------------------- /source/SProxy/WSDLPortTypeIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPortTypeIO.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLPortTypeIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPortTypeIO.h -------------------------------------------------------------------------------- /source/SProxy/WSDLPortTypeOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPortTypeOperation.h -------------------------------------------------------------------------------- /source/SProxy/WSDLPortTypeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPortTypeParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLPortTypeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLPortTypeParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLService.h -------------------------------------------------------------------------------- /source/SProxy/WSDLServiceParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLServiceParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLServiceParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLServiceParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLServicePortParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLServicePortParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLServicePortParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLServicePortParser.h -------------------------------------------------------------------------------- /source/SProxy/WSDLSoapElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLSoapElement.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLSoapElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLSoapElement.h -------------------------------------------------------------------------------- /source/SProxy/WSDLType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLType.h -------------------------------------------------------------------------------- /source/SProxy/WSDLTypesParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLTypesParser.cpp -------------------------------------------------------------------------------- /source/SProxy/WSDLTypesParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/WSDLTypesParser.h -------------------------------------------------------------------------------- /source/SProxy/XMLDocParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XMLDocParser.cpp -------------------------------------------------------------------------------- /source/SProxy/XMLDocParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XMLDocParser.h -------------------------------------------------------------------------------- /source/SProxy/XMLDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XMLDocument.cpp -------------------------------------------------------------------------------- /source/SProxy/XMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XMLDocument.h -------------------------------------------------------------------------------- /source/SProxy/XMLElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XMLElement.cpp -------------------------------------------------------------------------------- /source/SProxy/XMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XMLElement.h -------------------------------------------------------------------------------- /source/SProxy/XSDElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XSDElement.h -------------------------------------------------------------------------------- /source/SProxy/XSDMappingTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/XSDMappingTable.h -------------------------------------------------------------------------------- /source/SProxy/cppkeywords.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/cppkeywords.in -------------------------------------------------------------------------------- /source/SProxy/errordefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/errordefs.h -------------------------------------------------------------------------------- /source/SProxy/facets.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/facets.in -------------------------------------------------------------------------------- /source/SProxy/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/makefile -------------------------------------------------------------------------------- /source/SProxy/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/makefile.inc -------------------------------------------------------------------------------- /source/SProxy/msxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/msxml2.h -------------------------------------------------------------------------------- /source/SProxy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/resource.h -------------------------------------------------------------------------------- /source/SProxy/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sources -------------------------------------------------------------------------------- /source/SProxy/sproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sproxy.cpp -------------------------------------------------------------------------------- /source/SProxy/sproxy.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sproxy.mak -------------------------------------------------------------------------------- /source/SProxy/sproxy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sproxy.rc -------------------------------------------------------------------------------- /source/SProxy/sproxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sproxy.sln -------------------------------------------------------------------------------- /source/SProxy/sproxy.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sproxy.srf -------------------------------------------------------------------------------- /source/SProxy/sproxy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/sproxy.vcproj -------------------------------------------------------------------------------- /source/SProxy/utils/cppkw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/utils/cppkw.c -------------------------------------------------------------------------------- /source/SProxy/utils/mkutils.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/utils/mkutils.cmd -------------------------------------------------------------------------------- /source/SProxy/utils/static_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/utils/static_hash.c -------------------------------------------------------------------------------- /source/SProxy/wsdl_rpc.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/wsdl_rpc.srf -------------------------------------------------------------------------------- /source/SProxy/xsdtypes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/SProxy/xsdtypes.in -------------------------------------------------------------------------------- /source/VCDeploy/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/api.cpp -------------------------------------------------------------------------------- /source/VCDeploy/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/api.h -------------------------------------------------------------------------------- /source/VCDeploy/atlsdply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/atlsdply.cpp -------------------------------------------------------------------------------- /source/VCDeploy/atlsdply.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/atlsdply.rc -------------------------------------------------------------------------------- /source/VCDeploy/depsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/depsettings.cpp -------------------------------------------------------------------------------- /source/VCDeploy/depsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/depsettings.h -------------------------------------------------------------------------------- /source/VCDeploy/iiisext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/iiisext.h -------------------------------------------------------------------------------- /source/VCDeploy/iisext_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/iisext_i.c -------------------------------------------------------------------------------- /source/VCDeploy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/resource.h -------------------------------------------------------------------------------- /source/VCDeploy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/stdafx.cpp -------------------------------------------------------------------------------- /source/VCDeploy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/stdafx.h -------------------------------------------------------------------------------- /source/VCDeploy/vcdeploy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/vcdeploy.sln -------------------------------------------------------------------------------- /source/VCDeploy/vcdeploy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabegundy/atlserver/HEAD/source/VCDeploy/vcdeploy.vcproj --------------------------------------------------------------------------------