Delphi DLL
Delphi DLL
Azure Service Bus - Create Topic
See more Azure Service Bus Examples
Creates an Azure Service Bus Topic.Note: This example requires Chilkat v9.5.0.65 or greater.
Chilkat Delphi DLL Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, StringBuilder, Rest, Xml;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
rest: HCkRest;
bAutoReconnect: Boolean;
sbToken: HCkStringBuilder;
topicName: PWideChar;
xml: HCkXml;
sbRequestBody: HCkStringBuilder;
sbPath: HCkStringBuilder;
sbResponseBody: HCkStringBuilder;
begin
success := False;
// Note: Requires Chilkat v9.5.0.65 or greater.
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Make the initial connection.
// A single REST object, once connected, can be used for many Azure Service Bus REST API calls.
// The auto-reconnect indicates that if the already-established HTTPS connection is closed,
// then it will be automatically re-established as needed.
rest := CkRest_Create();
bAutoReconnect := True;
success := CkRest_Connect(rest,'<yournamespace>.servicebus.windows.net',443,True,bAutoReconnect);
if (success <> True) then
begin
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
// ----------------------------------------------------------------------------------------------
// The code above this comment could be placed inside a function/subroutine within the application
// because the connection does not need to be made for every request. Once the connection is made
// the app may send many requests..
// ----------------------------------------------------------------------------------------------
// Let's load a previously computed SAS token and use it.
// See Azure Shared Access Signature for an example to genenerate an Azure SAS token.
sbToken := CkStringBuilder_Create();
CkStringBuilder_LoadFile(sbToken,'qa_data/tokens/serviceBusSas.txt','utf-8');
// Tell the REST object to use the Azure Shared Access Signature for authorization.
CkStringBuilder_Prepend(sbToken,'SharedAccessSignature ');
CkRest_AddHeader(rest,'Authorization',CkStringBuilder__getAsString(sbToken));
// ----------------------------------------------------------------------------------------------
// Create a new topic named "gilaMonster";
topicName := 'gilaMonster';
// Create the XML body of the PUT request.
xml := CkXml_Create();
CkXml_putTag(xml,'entry');
CkXml_AddAttribute(xml,'xmlns','http://www.w3.org/2005/Atom');
CkXml_UpdateAttrAt(xml,'title',True,'type','text');
CkXml_UpdateChildContent(xml,'title',topicName);
CkXml_UpdateAttrAt(xml,'content',True,'type','application/xml');
CkXml_UpdateAttrAt(xml,'content|TopicDescription',True,'xmlns:i','http://www.w3.org/2001/XMLSchema-instance');
CkXml_UpdateAttrAt(xml,'content|TopicDescription',True,'xmlns','http://schemas.microsoft.com/netservices/2010/10/servicebus/connect');
CkXml_putEmitXmlDecl(xml,False);
Memo1.Lines.Add(CkXml__getXml(xml));
// The XML created by the above code:
// <entry xmlns="http://www.w3.org/2005/Atom">
// <title type="text">gilaMonster</title>
// <content type="application/xml">
// <TopicDescription xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
// xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" />
// </content>
// </entry>
sbRequestBody := CkStringBuilder_Create();
CkXml_GetXmlSb(xml,sbRequestBody);
// The path should be set to the to-be-created queue name.
sbPath := CkStringBuilder_Create();
CkStringBuilder_Append(sbPath,'/');
CkStringBuilder_Append(sbPath,topicName);
sbResponseBody := CkStringBuilder_Create();
success := CkRest_FullRequestSb(rest,'PUT',CkStringBuilder__getAsString(sbPath),sbRequestBody,sbResponseBody);
if (success <> True) then
begin
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
Memo1.Lines.Add('Response Status Code = ' + IntToStr(CkRest_getResponseStatusCode(rest)));
// Check for a success response.
if (CkRest_getResponseStatusCode(rest) <> 201) then
begin
Memo1.Lines.Add(CkRest__lastRequestStartLine(rest));
Memo1.Lines.Add(CkRest__lastRequestHeader(rest));
Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponseBody));
Memo1.Lines.Add('Failed.');
Exit;
end;
// The response is XML. (See a sample response below..)
CkXml_LoadSb(xml,sbResponseBody,True);
Memo1.Lines.Add(CkXml__getXml(xml));
Memo1.Lines.Add('Success.');
// -----------------------------------------------
// A sample successful XML response:
// <entry xmlns="http://www.w3.org/2005/Atom">
// <id>https://chilkat.servicebus.windows.net/gilaMonster</id>
// <title type="text">gilaMonster</title>
// <published>2016-12-06T23:34:13Z</published>
// <updated>2016-12-06T23:34:13Z</updated>
// <author>
// <name>chilkat</name>
// </author>
// <link rel="self" href="https://chilkat.servicebus.windows.net/gilaMonster" />
// <content type="application/xml">
// <TopicDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
// <DefaultMessageTimeToLive>P10675199DT2H48M5.4775807S</DefaultMessageTimeToLive>
// <MaxSizeInMegabytes>1024</MaxSizeInMegabytes>
// <RequiresDuplicateDetection>false</RequiresDuplicateDetection>
// <DuplicateDetectionHistoryTimeWindow>PT10M</DuplicateDetectionHistoryTimeWindow>
// <EnableBatchedOperations>true</EnableBatchedOperations>
// <SizeInBytes>0</SizeInBytes>
// <CreatedAt>2016-12-06T23:34:13.483</CreatedAt>
// <UpdatedAt>2016-12-06T23:34:13.7</UpdatedAt>
// </TopicDescription>
// </content>
// </entry>
CkRest_Dispose(rest);
CkStringBuilder_Dispose(sbToken);
CkXml_Dispose(xml);
CkStringBuilder_Dispose(sbRequestBody);
CkStringBuilder_Dispose(sbPath);
CkStringBuilder_Dispose(sbResponseBody);
end;