https://mrochon.azurewebsites.net/2015/11/19/using-oauth2-with-soap/ https://github.com/microsoft/Dynamics-AX-Integration/blob/master/ServiceSamples/SoapConsoleApplication/Program.cs
This file contains hidden or 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
function InitializeWindowsCredential | |
{ | |
Write-Verbose ("Loading PasswordVault Class.") | |
[void][Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime] | |
} | |
InitializeWindowsCredential | |
function ConvertTo-PasswordCredential | |
{ |
This file contains hidden or 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
SELECT | |
--TOP 100 | |
AllocUnitName, | |
Operation, | |
COUNT(*) c, | |
SUM([Log Record Length]) l | |
FROM sys.fn_dblog(NULL,NULL) | |
GROUP BY | |
AllocUnitName, | |
Operation |
This file contains hidden or 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
$srcDir="c:\Temp\ax-build\src\" # source packages in c:\Temp\ax-build\Metadata\ | |
$Build_BuildNumber = "0.0.1" | |
$binDir=(mkdir -Force (Join-Path $srcDir "..\bin\")).FullName | |
$Build_SourcesDirectory = Join-Path $srcDir "Metadata" | |
$PackagingExclusions = "" | |
pushd $srcDir | |
$Agent_BuildDirectory=$binDir |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" | |
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" | |
> | |
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/> | |
<xsl:template match="/"> | |
<xsl:apply-templates select="xliff:xliff/xliff:file/xliff:body/xliff:group/xliff:trans-unit"/> | |
</xsl:template> | |
<xsl:template match="xliff:trans-unit"> |
This file contains hidden or 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
-- UPDATE pootle_store_unit su SET state=200 | |
SELECT * FROM pootle_store_unit su | |
WHERE EXISTS | |
( | |
SELECT * | |
FROM pootle_app_submission asub | |
WHERE new_value=200 AND submitter_id=7 AND field=3 | |
AND asub.unit_id=su.id | |
) | |
AND su.state=50 |
This file contains hidden or 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
https://moakt.com | |
https://www.mailinator.com | |
https://www.guerrillamail.com/ | |
https://temp-mail.org/en/ | |
https://tempmail.net/ | |
https://www.10minutemail.com | |
http://www.yopmail.com/en/ | |
http://www.tempinbox.com/ |
Analizo lahko opravi kdorkoli. Navodila: https://blogs.msdn.microsoft.com/cobold/2017/03/01/ax_dmp_analysis/ https://blogs.msdn.microsoft.com/axsa/2013/03/11/finding-the-x-stack-and-ax-user-with-public-symbols-in-ax2012/
dodatno za crashdump: https://blogs.msdn.microsoft.com/emeadaxsupport/2011/04/10/so-your-aos-crashed-is-hanging-or-you-just-want-to-see-what-its-doing/ https://blogs.msdn.microsoft.com/emeadaxsupport/2010/05/12/possibilities-to-create-memory-dumps-from-crashing-processes/
[dotnet/Documentation/compatibility/servicepointmanager.securityprotocol-defaults-to-securityprotocoltype.systemdefault.md]
This file contains hidden or 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
select | |
COL_NAME(ic.object_id, ic.column_id) colName | |
, * | |
from sys.index_columns ic | |
join sys.indexes i | |
on i.object_id = ic.object_id | |
and i.index_id = ic.index_id | |
where i.object_id = object_id('[dbo].[ProjGroup]') | |
--and i.is_primary_key = 1 | |
--and ic.is_included_column = 0 |