Autodesk Buzzsaw Developer
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Buzzsaw Interactio ns using WebDAV
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
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
*Scott Sheppard [Autodesk]
Re: Buzzsaw Interactio ns using WebDAV
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
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.
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
