Buzzsaw Forum Archive
Welcome to Autodesk’s Buzzsaw Forums. Share your knowledge, ask questions, and explore popular Buzzsaw topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Buzzsaw Interactions using WebDAV

1 REPLY 1
Reply
Message 1 of 2
theMagicFarmer
472 Views, 1 Reply

Buzzsaw Interactions using WebDAV

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
1 REPLY 1
Message 2 of 2
Anonymous
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

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report