-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from sveawebpay/develop
Artical number and unit should be optional in credit order rows
- Loading branch information
Showing
11 changed files
with
194 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
234 changes: 117 additions & 117 deletions
234
Webpay.Integration.CSharp/IntegrationTest/WebPayAdminIntegrationTest.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<system.serviceModel> | ||
<bindings> | ||
<basicHttpBinding> | ||
<binding name="ServiceSoap"> | ||
<security mode="Transport"/> | ||
<security mode="Transport" /> | ||
</binding> | ||
<binding name="ServiceSoap1"/> | ||
<binding name="ServiceSoap1" /> | ||
<binding name="AdminSoapService"> | ||
<security mode="Transport"/> | ||
<security mode="Transport" /> | ||
</binding> | ||
</basicHttpBinding> | ||
<wsHttpBinding> | ||
<binding name="WcfAdminSoapService"> | ||
<security mode="Transport"> | ||
<transport clientCredentialType="None"/> | ||
<transport clientCredentialType="None" /> | ||
</security> | ||
</binding> | ||
</wsHttpBinding> | ||
</bindings> | ||
<client> | ||
<endpoint address="https://webpaywsstage.svea.com/SveaWebPay.asmx" binding="basicHttpBinding" bindingConfiguration="ServiceSoap" contract="WebpayWS.ServiceSoap" name="ServiceSoap"/> | ||
<endpoint address="https://webpayadminservicestage.svea.com/AdminService.svc/secure" binding="wsHttpBinding" bindingConfiguration="WcfAdminSoapService" contract="AdminWS.IAdminService" name="WcfAdminSoapService"/> | ||
<endpoint address="https://webpayadminservicestage.svea.com/AdminService.svc/backward" binding="basicHttpBinding" bindingConfiguration="AdminSoapService" contract="AdminWS.IAdminService" name="AdminSoapService"/> | ||
<endpoint address="https://webpaywsstage.svea.com/SveaWebPay.asmx" binding="basicHttpBinding" bindingConfiguration="ServiceSoap" contract="WebpayWS.ServiceSoap" name="ServiceSoap" /> | ||
<endpoint address="https://webpayadminservicestage.svea.com/AdminService.svc/secure" binding="wsHttpBinding" bindingConfiguration="WcfAdminSoapService" contract="AdminWS.IAdminService" name="WcfAdminSoapService" /> | ||
<endpoint address="https://webpayadminservicestage.svea.com/AdminService.svc/backward" binding="basicHttpBinding" bindingConfiguration="AdminSoapService" contract="AdminWS.IAdminService" name="AdminSoapService" /> | ||
</client> | ||
</system.serviceModel> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/></startup></configuration> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /></startup> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NUnit" version="3.10.1" targetFramework="net40" requireReinstallation="true" /> | ||
<package id="NUnit3TestAdapter" version="3.10.0" targetFramework="net40" /> | ||
<package id="NUnit" version="4.2.2" targetFramework="net472" /> | ||
<package id="NUnit3TestAdapter" version="4.6.0" targetFramework="net472" /> | ||
<package id="System.Buffers" version="4.5.1" targetFramework="net472" /> | ||
<package id="System.Memory" version="4.5.5" targetFramework="net472" /> | ||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net472" /> | ||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net472" /> | ||
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net472" /> | ||
<package id="System.ValueTuple" version="4.5.0" targetFramework="net472" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters