• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Buzzsaw Developer

    Reply
    Contributor
    Posts: 14
    Registered: ‎02-02-2005

    Buzzsaw Interactions using WebDAV

    168 Views, 1 Replies
    01-19-2006 09:39 AM
    Has anybody used Microsoft's WebDAV to interact with Buzzsaw through an applicaiton? Below is some sample code that I pulled off Microsoft's Developer Network. I think this could work, but there is so much information out there on this topic that it gets confusing as to which approach to use.

    AUTODESK DEVELOPERS:
    Can this API be used to do file uploads to Buzzsaw?

    Private Sub Command2_Click()

    Dim xmlReq As MSXML.XMLHTTPRequest
    Set xmlReq = CreateObject("Microsoft.XMLHTTP")

    Dim xmlObj As MSXML2.IServerXMLHTTPRequest
    Set xmlObj = CreateObject("Microsoft.XMLHTTP2")

    'Set aa = xmlObj.Open(serverString, URLstring, varAsync, User, pwd)

    xmlObj.Open "PUT", URLstring, False, User, Password

    ' xmlReq.Open "PUT", strSubURL, False, strUserName, strPassWord
    ' If strText "" Then
    ' xmlReq.setRequestHeader "Content-Type", "message/rfc822"
    ' xmlReq.send strText
    ' End If


    End Sub
    Please use plain text.
    *Scott Sheppard [Autodesk]

    Re: Buzzsaw Interactions using WebDAV

    01-19-2006 10:39 AM in reply to: theMagicFarmer
    Yes it can be done. I know our customer applications group has helped
    customers set up automated processes to do uploads and downloads. You would
    use the URL https://webfolders.buzzsaw.com/sitename with your Buzzsaw user
    name and password as credentials.

    wrote in message news:5063816@discussion.autodesk.com...
    Has anybody used Microsoft's WebDAV to interact with Buzzsaw through an
    applicaiton? Below is some sample code that I pulled off Microsoft's
    Developer Network. I think this could work, but there is so much
    information out there on this topic that it gets confusing as to which
    approach to use.

    AUTODESK DEVELOPERS:
    Can this API be used to do file uploads to Buzzsaw?

    Private Sub Command2_Click()

    Dim xmlReq As MSXML.XMLHTTPRequest
    Set xmlReq = CreateObject("Microsoft.XMLHTTP")

    Dim xmlObj As MSXML2.IServerXMLHTTPRequest
    Set xmlObj = CreateObject("Microsoft.XMLHTTP2")

    'Set aa = xmlObj.Open(serverString, URLstring, varAsync, User, pwd)

    xmlObj.Open "PUT", URLstring, False, User, Password

    ' xmlReq.Open "PUT", strSubURL, False, strUserName, strPassWord
    ' If strText "" Then
    ' xmlReq.setRequestHeader "Content-Type", "message/rfc822"
    ' xmlReq.send strText
    ' End If


    End Sub
    Please use plain text.