Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Format of Published Endpoint

 

There are two end points created with standard project deployment (defined in package definition)

        http://<hostname>:<portnumber>/fid-<Project facet Id>

                This end point takes all TQL Queries as request-response

        ws://<hostname>:<portnumber>/fid-<Project facet Id>WS

                 This end point takes all subscription queries and publishes messages asynchronously against the subscriptions.

In addition to northbound end points for applications, there are additional end points, which come out of the box from the engine to communicate with southbound devices.

Supported Protocol Handler

...

Facet Type NameSffTqlFacet
Language SupportThing Interaction Language (TIL) - TQL CRUD Queries requested via <Query> tag.
Transports

HttpServerExtensionArgs

WsServerExtensionArgs

Usage

 Facet Types are used using <NewFacetInstance> when creating a Package (Deployment) definition for your models.

Code Block
languagexml
titleSffTqlFacet Example
linenumberstrue
<!-- Typical TQL Facet Definition -->
	<NewFacetInstance fid="samplequeries"
		Name="TQL" Type="SffTqlFacet">
		<OnActivate>
            <!-- Associate other facet types; Either Private or Public Instances -->
			<NewFacetInstance name="tqlwfws" type="SffWdlFacet" /> <!-- Private Instance of wdl facet -->
			<NetworkFacet>?cluster</NetworkFacet> <!-- Public Instance of Network Facet -->
			<TopicFacet>?TQLGenericTopic</TopicFacet> <!-- Public Instance of Topic Facet -->
			<ImportFacet>[:RuntimeParams.MacroFacetID:]</ImportFacet> <!-- Private Instance of Msg facet -->
			<Process>
                <!-- Define TQL Storage Scheme -->
				<Storage Name="[:RuntimeParams.TQLCacheName:]" Type="SqlSff"
					Comment="[:RuntimeParams.TQLCacheName:] Database SFF Unstructured SQL database" />
                <!-- Specify the Model Definition file (TDL). Normally consists of Model definitions -->
				<Namespace>
					<Include>cloud.dbm.xml</Include>
				</Namespace>
			</Process>
		</OnActivate>
		<OnOpen ModifyPipeline="WsServerExtensionArgs" />
		<OnRequest>
			<DoRequest> <!-- HandOff the request to Facet -->
				<Process Return="CMD_NOP">
					<Message>
						<Value>
							<Include>$Request.Message.Value</Include>
						</Value>
					</Message>
				</Process>
			</DoRequest>
			<DoResponse> <!-- Process the response from Facet or send it straight through -->
				<Process>
					<Message type="[:RuntimeParams.TQLOutputFormat:]">
						<Value>
							<Include>$Response.Message.Value</Include>
						</Value>
					</Message>
				</Process>
			</DoResponse>
		</OnRequest>
</NewFacetInstance>
Endpoint Generated

ws://<HostName>:<PortNumber>/fid-samplequeries:<PortNumber>

Where PortNumber is the port on which TQLEngine is started .and <HostName> is the engine machine IP address


TQLStudio 

 When models are built using Model Editor and deploy to TQLEngine in the cloud or the project imported into local TQLEngine, the Query endpoints are automatically generated because of the fixed package definition. The endpoints are unique for each project. This could be one way to protect your endpoints for unauthorized access.