We have powershell script that is run from Java service (that is run under some domain user account (Domain\user2) that is member of Local admin group) on Win2008 and it tries to Download a file from remote HTTP server using Basic auth and Login-Passw pair (via PSCredential object):
$source_uri, $target_file_path # some path to files
$pass_sec = ConvertTo-SecureString -Force -AsPlainText -String 'pass1'
$creds = New-Object -TypeName 'System.Management.Automation.PSCredential' -ArgumentList 'user1', $pass_sec
# Start Bits Transfer
Start-Bitstransfer -Credential $creds -Authentication Basic -Source $source_uri -Destination $target_file_path -erroraction stop
When powershell is run separately (without java service) - it downloads without problems.
But when it started from Java service ( that have Logon account = same user account ) - it fails with error:
Start-BitsTransfer : The operation being requested was not performed because the user has not logged on to the network.
The specified service does not exist. (Exception from HRESULT: 0x800704DD)
I've provide some research for this problem: see Bits issues but I can't understand what could help: SENS service is run, BITS - also.
What could be a problem?