WebDAV funktioniert nicht trotz Router-"Durchfluss"

Status
Für weitere Antworten geschlossen.

g202e

Benutzer
Mitglied seit
07. Jun 2009
Beiträge
2.293
Punkte für Reaktionen
0
Punkte
82
Hi,
habe wohl im Router alles richtig gemacht; zumindest steht in dessen Protokoll beim Zugriffsversuch:
Protocol: TCP Src ip: xx.xx.xx.xx Src port: 50010 Dst ip: 192.168.1.65 Dst port: 5005 Chain: forward_host_service Rule Id: 10 Action: accept
Protocol: TCP Src ip: xx.xx.xx.xx Src port: 50000 Dst ip: 192.168.1.65 Dst port: 5005 Chain: forward_host_service Rule Id: 10 Action: accept
Auf dem zugreifenden PC kommt dann eine Meldung, dass die Verbindung als Webordner nicht möglich ist, ob man stattdessen in der Standardansicht öffnen möchte(o.s.ä.)
Wenn man dies bestätigt kommt eine weitere Fehlermeldung, welche evtl. eine falsche Firewall-Konfiguration vermutet.
BS des aufrufenden PC ist Win7.
Vielleicht kann mir ja ein Kundiger weiterhelfen?
 

thedude

Benutzer
Mitglied seit
30. Nov 2009
Beiträge
2.244
Punkte für Reaktionen
2
Punkte
84
Hast Du denn WebDAV aktiviert (http://www.synology-wiki.de/index.php/WebDAV)? Ich bin kein WebDAV Experte, aber da steht das es mit 3.0 nicht ehr gehen soll... trotzdem ist die Wikiseite schonmal ein guter Startpunkt.

gruss
dude
 

g202e

Benutzer
Mitglied seit
07. Jun 2009
Beiträge
2.293
Punkte für Reaktionen
0
Punkte
82
Hi,
sorry, war wohl heute früh schon etwas spät...
Habe die aktuelle FW auf meiner DS109j, demzufolge ist WebDAV enthalten und natürlich auch aktiviert und die entsprechenden Rechte vergeben.
Weiterhin habe ich als wirklich wichtige Info vergessen, dass wir versuchen, diese Verbindung über ein vbs-Script zu erstellen, welches (nachweislich) funktioniert, allerdings bisher nur unter XP verwendet wurde.

Rich (BBCode):
' xxxxxx.dnsalias.org WebDisk.vbs
'
' 05/17/2010 - Initial write.
'

Option Explicit
Dim errReturn, strURL, strDomain

' *************************************************************************
' Configurable Variables
' *************************************************************************
strURL = "http://xxxx.dnsalias.org:5005/" ' This is the URL to the WebDAV share.
strDomain = "xxxxxxxx" ' This is the name of the domain.


' *************************************************************************
' This subroutine searches for the WebDAV service known as 'WebClient' and
'  makes sure that it is configured for automatic startup, and that it is 
'  currently running.
' *************************************************************************
Sub ConfigureService()
   Dim objWMIService
   Set objWMIService = GetObject("winmgmts:"_
       & "{impersonationLevel=impersonate}!\\.\root\cimv2")


   ' We only care about one service, so the search is only for
   '    the WebClient service.
   Dim colServiceList
   Set colServiceList = objWMIService.ExecQuery _
      ("Select * from Win32_Service where Name = 'WebClient'")


   ' If more than one service was returned, something is funky.
   ' Likewise, if no services are returned, we shouldn't be running.
   If colServiceList.Count = 1 Then
      Dim objService
      For Each objService in colServiceList
         ' Test to see if the service is scheduled to run on startup, if not, configure it to.
         If objService.StartMode <> "Automatic" Then
            errReturn = objService.Change( , , , , "Automatic")
         End If
         ' Test to see if the service is currently running, if not, start it.
         If objService.State <> "Started" Then
            objService.StartService()
         End If
      Next
   Else
      WScript.Echo "Could not find WebClient service."
   End If
End Sub




' **********************************************************************
' This Subroutine launches an IE browser that contains the HTML required
'  to open the web folder for viewing.  It then fires the OnClick event
'  for the link in order to open the WebFolder. The browser is then
'  closed.
' **********************************************************************
Sub LaunchBrowser()
   Dim objIE
   Set objIE = CreateObject("InternetExplorer.Application")
   objIE.Visible = false
   objIE.Navigate2 "about:blank"
   objIE.Document.write "<!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN"" ""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">"_
                       &"<html><head>"_
                       &"<style>a {behavior: url(#default#AnchorClick);}</style></head>"_
                       &"<body><a href='" & strURL & "' FOLDER='" & strURL & "' TARGET='_top'>"_
                       &"Click here to finish setting up your Web Folder</a></body></html>"
   Dim links
   Set links = objIE.Document.links
   links(0).fireEvent("OnClick")
   objIE.Quit
   Set objIE = Nothing
End Sub

' *********************************************************************
' This subroutine creates a shortcut to the web disk.
' *********************************************************************

Sub CreateShorty ()
   Dim strName, strAppname, strNetHood, blnDeleteMode, objFSO, objWSHShell, objShell, objFolder, objFolderItem, blnVerboseMode, strDesktop,oMyShortCut, objDesktopIni, objNewLinkFolder, filesys, path, fso, f, ff, f1
   strAppname = "xxxxx.dnsalias.org_WebDisk.vbs" 
   Const NETHOOD = &H13&
   Const MAXIMIZE_WINDOW = 3
   strName = "xxxxx.dnsalias.org WebDisk"

   Set objFSO = CreateObject("Scripting.FileSystemObject")
   Set objWshShell = CreateObject("WScript.Shell")
   Set objShell = CreateObject("Shell.Application")

   Set objFolder = objShell.Namespace(NETHOOD)
   Set objFolderItem = objFolder.Self
   strNetHood = objFolderItem.Path
 
   'Set objNewLinkFolder = objFSO.CreateFolder(strNetHood & "\" & strName)
   'Set objDesktopIni = objFSO.CreateTextFile(strNetHood & "\" & strName & "\Desktop.ini")
   Set filesys = CreateObject("Scripting.FileSystemObject")
   path = filesys.GetAbsolutePathName(strNetHood & "\" & strDomain & "\target.lnk" )
   If filesys.FileExists(path) Then
       strDesktop = objWshShell.SpecialFolders("Desktop")
       Set oMyShortCut = objWshShell.CreateShortcut(strDesktop & "\" & strName & ".lnk")
       oMyShortCut.IconLocation = "%SystemRoot%\system32\SHELL32.dll,9"
       oMyShortCut.TargetPath = strNetHood & "\" & strDomain
       oMyShortCut.Description = strName
       oMyShortCut.Save

       objWshShell.Run chr(34) & strDesktop & "\" & strName & ".lnk" & chr(34), MAXIMIZE_WINDOW
    Else
       WScript.Echo "There was a problem connecting to the WebDisk service.  Please make sure port 5005 is not firewalled."
    End If
End Sub




' *********************************************************************
' This subroutine opens Windows Explorer to My Network Places to show
' the location of the web disk.
' *********************************************************************

' *********************************************************************
' Main Function Area.  This is where it all goes down.
' *********************************************************************
ConfigureService
LaunchBrowser
CreateShorty
Das Script stammt von einem kommerziellen Webspace-Anbieter und wurde nur an die aktuell verwendeten Namen angepasst, welche ich jetzt mal mit xxx versteckt habe.
Tut mir echt leid, dass ich so unvollständige Infos gegeben habe. Hoffe, dass mir nun jemand helfen kann.
 
Status
Für weitere Antworten geschlossen.
 

Kaffeautomat

Wenn du das Forum hilfreich findest oder uns unterstützen möchtest, dann gib uns doch einfach einen Kaffee aus.

Als Dankeschön schalten wir deinen Account werbefrei.

:coffee:

Hier gehts zum Kaffeeautomat