Copy Directory Structure ONLY – Windows 7 | Knowledgement from Target Integration:
xcopy /T /E “Source” “Destination”
'via Blog this'
Tuesday, August 28, 2012
Saturday, August 25, 2012
AJAX call web service behind ISA / TMG firewall with authentication
To be able to call web service behind ISA / TMG firewall, a few conditions need to be met:
1. use beforeSend when making the service call:
$.ajax({
url: weburl,
beforeSend: function (xhr) { xhr.setRequestHeader ("Authorization", "Basic xxx"); },
type: "POST",
dataType: "xml",
data: soapEnv,
complete: processResult,
contentType: "text/xml; charset=\"utf-8\""
});
2. Basic authentication needs to be enabled on both ISA / TMG and IIS.
3. Enable keberos authentication for the published web app.
4. disable loopback check on the web server.
1. use beforeSend when making the service call:
$.ajax({
url: weburl,
beforeSend: function (xhr) { xhr.setRequestHeader ("Authorization", "Basic xxx"); },
type: "POST",
dataType: "xml",
data: soapEnv,
complete: processResult,
contentType: "text/xml; charset=\"utf-8\""
});
2. Basic authentication needs to be enabled on both ISA / TMG and IIS.
3. Enable keberos authentication for the published web app.
4. disable loopback check on the web server.
Friday, August 17, 2012
Sunday, June 10, 2012
Batch Import dtsx packages from folder to SSIS Store
FOR %i In (*.dtsx) DO dtutil /FILE "%i" /DESTSERVER LOCALHOST /COPY SQL;"\MYBI\Project Analysis\Initial Load\%~ni"
Subscribe to:
Posts (Atom)
Disable Microsoft Defender for Cloud for Visual Studio Subscription (MSDN)
I use a visual studio pro subscription which comes with $150 azure cloud credit, for some reason Microsoft Defender for Cloud was turned on ...
-
/etc/ipsec.config conn ios keyexchange=ikev1 authby=xauthrsasig xauth=server lef...
-
Error 15401: Windows NT user or group '%s' not found. Check the name again. SELECT name FROM syslogins WHERE sid = SUSER_SID ('Y...
-
Ever since I installed VMWare ESX server on my HP ML110 G4, I haven't got much chance playing it and it has been lying on the floor for ...