wcf - File Backup/Sync between two servers -
wcf - File Backup/Sync between two servers -
we're using windows 2008 r2 servers , need backup file other server whenever file gets uploaded.
unfortunately, client requires there no file/directory sharing between servers via lan trying via wcf calling wcf. we're having problem calling other wcf since they're hosted on ssl-secured website.
calling wcf via silverlight works.
questions:
1) might causing ssl/tls error when wcf calls other works fine silverlight calling wcf?
code:
public fileupload(fileuploadclass file) { // store locally ... // phone call other wcf if (!fileisexisting) { servicerefclient svcclient = new servicerefclient(); svcclient.fileuploadclass(file) } }
2) other way backup file other server securely apart using wcf , database (i'm trying database there prettier way this)? file/directory/drive sharing via local network prohibited.
can give more details on exact error? meanwhile may want check:
assuming server b hosting wcf file backup service using self signed certificate, server calling server b have certificate imported in appropiate certificate store?
again assumption: check server a´s application pool identity, have sufficient permissions phone call server b?
wcf file-upload https backup windows-server-2008-r2
Comments
Post a Comment