Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) HTTP Verb - How to use any Verb (GET, PUT, POST, DELETE, PROPFIND, etc.)The HttpVerb property may be set to anything. Typically, it is set to the common/standard HTTP verbs such as GET, POST, PUT, DELETE, etc. It can be set to anything, including custom verbs that only have meaning to your particular server-side application. This example demonstrates how to compose an HTTP request using the PROPFIND verb, which is something one might use with a WebDAV request. This example composes the following HTTP request: PROPFIND /container/ HTTP/1.1 Host: www.foo.bar Depth: 1 Content-Type: text/xml; charset="utf-8" Content-Length: xxxx <?xml version="1.0" encoding="utf-8" ?> <D:propfind xmlns:D="DAV:"> <D:allprop/> </D:propfind>
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) DECLARE @req int -- Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END -- The ContentType, HttpVerb, and Path properties should -- always be explicitly set. EXEC sp_OASetProperty @req, 'HttpVerb', 'PROPFIND' EXEC sp_OASetProperty @req, 'Path', '/container/' EXEC sp_OASetProperty @req, 'ContentType', 'text/xml' EXEC sp_OASetProperty @req, 'Charset', 'utf-8' EXEC sp_OASetProperty @req, 'SendCharset', 1 EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Depth', '1' DECLARE @xml int -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Xml', @xml OUT EXEC sp_OASetProperty @xml, 'Tag', 'propfind' DECLARE @success int EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:D', 'DAV:' EXEC sp_OAMethod @xml, 'NewChild2', NULL, 'allprop', '' EXEC sp_OAMethod @xml, 'GetXml', @sTmp0 OUT EXEC sp_OAMethod @req, 'LoadBodyFromString', @success OUT, @sTmp0, 'utf-8' -- View the request that would be sent if SynchronousRequest was called: DECLARE @requestMime nvarchar(4000) EXEC sp_OAMethod @req, 'GenerateRequestText', @requestMime OUT PRINT @requestMime -- A few important comments about the HTTP request that is generated: -- -- 1) The Content-Length header is automatically generated based on the actual length of the MIME message -- that follows the intial (topmost) MIME header. -- 2) The HOST header will automatically get filled in with the actual domain when SynchronousRequest -- is called EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @xml END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.