Hola a todos
Tengo problemas de copiar un fichero del share de un servidor samba. Despues de identificarme correctamente, cuando intento copiar un archivo del servidor me sale login incorrecto
Estos son los mensajes que me salen
SMBClient_Resource(true,OK,smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/,smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/)
SMBClient_Resource(smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/, smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/)
CanonicalPath = smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/
CanonicalUncPath = smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/
Este mensaje cuando intento copiar
IOException: jcifs.smb.SmbAuthException: Logon failure: unknown user name or bad password.
SMBClient_CopyResult(false)
Tengo problemas de copiar un fichero del share de un servidor samba. Despues de identificarme correctamente, cuando intento copiar un archivo del servidor me sale login incorrecto
B4X:
Sub SMBClient_Resource(success As Boolean, smbobjres As Object,smbobj As Object, info As String)
Log($"SMBClient_Resource(${success},${info},${smbobjres},${smbobj})"$)
If smbobjres <> Null And smbobj <> Null And info = "OK" Then
Dim smbResource As SMBResource = smbobjres
glRes = smbResource
Dim smbfile As SMBFile = smbobj
Dim smbResource As SMBResource = smbobjres
'File.WriteString(File.DirInternal, "1.txt", "Some text")
Log($"SMBClient_Resource(${smbResource}, ${smbfile})"$)
Log($"CanonicalPath = ${smbfile.CanonicalPath}"$)
Log($"CanonicalUncPath = ${smbfile.CanonicalUncPath}"$)
smbClient.Copy(smbfile,File.DirDefaultExternal,"configdoc.json")
End If
End Sub
Estos son los mensajes que me salen
SMBClient_Resource(true,OK,smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/,smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/)
SMBClient_Resource(smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/, smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/)
CanonicalPath = smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/
CanonicalUncPath = smb://188.85.148.70:43222/HICEAMEFC/Home/Services/signdocs/
Este mensaje cuando intento copiar
IOException: jcifs.smb.SmbAuthException: Logon failure: unknown user name or bad password.
SMBClient_CopyResult(false)