Skip to content

Commit 1879640

Browse files
committed
Retire old routing tutorials
1 parent 47923d5 commit 1879640

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+32
-1042
lines changed

.openpublishing.redirection.json

+20
Original file line numberDiff line numberDiff line change
@@ -18255,6 +18255,26 @@
1825518255
"redirect_url": "/azure/iot-hub/tutorial-routing",
1825618256
"redirect_document_id": false
1825718257
},
18258+
{
18259+
"source_path": "articles/iot-hub/iot-hub-csharp-csharp.md",
18260+
"redirect_url": "/azure/iot-hub/tutorial-routing",
18261+
"redirect_document_id": false
18262+
},
18263+
{
18264+
"source_path": "articles/iot-hub/iot-hub-java-java.md",
18265+
"redirect_url": "/azure/iot-hub/tutorial-routing",
18266+
"redirect_document_id": false
18267+
},
18268+
{
18269+
"source_path": "articles/iot-hub/iot-hub-node-node.md",
18270+
"redirect_url": "/azure/iot-hub/tutorial-routing",
18271+
"redirect_document_id": false
18272+
},
18273+
{
18274+
"source_path": "articles/iot-hub/iot-hub-python-python.md",
18275+
"redirect_url": "/azure/iot-hub/tutorial-routing",
18276+
"redirect_document_id": false
18277+
},
1825818278
{
1825918279
"source_path": "articles/iot-suite/iot-suite-gateway-kit-get-started-sensortag.md",
1826018280
"redirect_url": "https://github.com/Azure/iot-edge/tree/master/v1/doc/connect_to_preconfigured_solutions/iot-suite-gateway-kit-get-started-sensortag.md",

articles/iot-hub/TOC.md

-5
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,6 @@
151151
#### [Use the serializer](iot-hub-device-sdk-c-serializer.md)
152152
### [Develop for constrained devices](iot-hub-devguide-develop-for-constrained-devices.md)
153153
### [Develop for mobile devices](iot-hub-how-to-develop-for-mobile-devices.md)
154-
### Routing messages
155-
#### [.NET](iot-hub-csharp-csharp-process-d2c.md)
156-
#### [Java](iot-hub-java-java-process-d2c.md)
157-
#### [Node.js](iot-hub-node-node-process-d2c.md)
158-
#### [Python](iot-hub-python-python-process-d2c.md)
159154
### [Query Avro data from a hub route](iot-hub-query-avro-data.md)
160155
### Send cloud-to-device messages
161156
#### [.NET](iot-hub-csharp-csharp-c2d.md)

articles/iot-hub/iot-hub-csharp-csharp-file-upload.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This tutorial builds on the code in the [Send Cloud-to-Device messages with IoT
2020
- Securely provide a device with an Azure blob URI for uploading a file.
2121
- Use the IoT Hub file upload notifications to trigger processing the file in your app back end.
2222

23-
The [Get started with IoT Hub](iot-hub-csharp-csharp-getstarted.md) and [Send Cloud-to-Device messages with IoT Hub](iot-hub-csharp-csharp-c2d.md) tutorials show the basic device-to-cloud and cloud-to-device messaging functionality of IoT Hub. The [Process Device-to-Cloud messages](iot-hub-csharp-csharp-process-d2c.md) tutorial describes a way to reliably store device-to-cloud messages in Azure blob storage. However, in some scenarios you cannot easily map the data your devices send into the relatively small device-to-cloud messages that IoT Hub accepts. For example:
23+
The [Get started with IoT Hub](iot-hub-csharp-csharp-getstarted.md) and [Send Cloud-to-Device messages with IoT Hub](iot-hub-csharp-csharp-c2d.md) tutorials show the basic device-to-cloud and cloud-to-device messaging functionality of IoT Hub. The [Process Device-to-Cloud messages](tutorial-routing.md) tutorial describes a way to reliably store device-to-cloud messages in Azure blob storage. However, in some scenarios you cannot easily map the data your devices send into the relatively small device-to-cloud messages that IoT Hub accepts. For example:
2424

2525
* Large files that contain images
2626
* Videos

articles/iot-hub/iot-hub-csharp-csharp-process-d2c.md

-231
This file was deleted.

articles/iot-hub/iot-hub-devguide-messages-d2c.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ The [Get Started][lnk-get-started] tutorials show you how to send device-to-clou
8181
[lnk-compatible-endpoint]: iot-hub-devguide-messages-read-builtin.md
8282
[lnk-device-properties]: iot-hub-devguide-identity-registry.md#device-identity-properties
8383
[lnk-devguide-security]: iot-hub-devguide-security.md
84-
[lnk-d2c-tutorial]: iot-hub-csharp-csharp-process-d2c.md
84+
[lnk-d2c-tutorial]: tutorial-routing.md

articles/iot-hub/iot-hub-devguide-messages-read-builtin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ If you want to route your device-to-cloud messages to custom endpoints, see [Use
7272
[lnk-resource-provider-apis]: https://docs.microsoft.com/rest/api/iothub/iothubresource
7373
[lnk-event-hubs]: http://azure.microsoft.com/documentation/services/event-hubs/
7474
[lnk-management-portal]: https://portal.azure.com
75-
[lnk-d2c-tutorial]: iot-hub-csharp-csharp-process-d2c.md
75+
[lnk-d2c-tutorial]: tutorial-routing.md
7676
[lnk-event-hub-partitions]: ../event-hubs/event-hubs-features.md#partitions
7777
[lnk-servicebus-sdk]: https://www.nuget.org/packages/WindowsAzure.ServiceBus
7878
[lnk-eventprocessorhost]: http://blogs.msdn.com/b/servicebus/archive/2015/01/16/event-processor-host-best-practices-part-1.aspx

articles/iot-hub/iot-hub-devguide-messages-read-custom.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The [Process IoT Hub device-to-cloud messages using routes][lnk-d2c-tutorial] tu
6262
[lnk-device-to-cloud]: iot-hub-devguide-messages-d2c.md
6363
[lnk-devguide-query-language]: iot-hub-devguide-query-language.md
6464
[lnk-devguide-endpoints]: iot-hub-devguide-endpoints.md
65-
[lnk-d2c-tutorial]: iot-hub-csharp-csharp-process-d2c.md
65+
[lnk-d2c-tutorial]: tutorial-routing.md
6666
[lnk-getstarted-eh]: ../event-hubs/event-hubs-csharp-ephcs-getstarted.md
6767
[lnk-getstarted-queue]: ../service-bus-messaging/service-bus-dotnet-get-started-with-queues.md
6868
[lnk-getstarted-topic]: ../service-bus-messaging/service-bus-dotnet-how-to-use-topics-subscriptions.md

articles/iot-hub/iot-hub-devguide-security.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -487,4 +487,4 @@ If you would like to try out some of the concepts described in this article, see
487487

488488
[lnk-getstarted-tutorial]: iot-hub-csharp-csharp-getstarted.md
489489
[lnk-c2d-tutorial]: iot-hub-csharp-csharp-c2d.md
490-
[lnk-d2c-tutorial]: iot-hub-csharp-csharp-process-d2c.md
490+
[lnk-d2c-tutorial]: tutorial-routing.md

articles/iot-hub/iot-hub-java-java-c2d.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ At the end of this tutorial, you run two Java console apps:
3636
3737
To complete this tutorial, you need the following:
3838

39-
* A complete working version of the [Get started with IoT Hub](iot-hub-java-java-getstarted.md) or [Process IoT Hub device-to-cloud messages](iot-hub-java-java-process-d2c.md) tutorial.
39+
* A complete working version of the [Get started with IoT Hub](iot-hub-java-java-getstarted.md) or [Process IoT Hub device-to-cloud messages](tutorial-routing.md) tutorial.
4040
* The latest [Java SE Development Kit 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
4141
* [Maven 3](https://maven.apache.org/install.html)
4242
* An active Azure account. (If you don't have an account, you can create a [free account][lnk-free-trial] in just a couple of minutes.)

articles/iot-hub/iot-hub-java-java-file-upload.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This tutorial builds on the code in the [Send Cloud-to-Device messages with IoT
2020
- Securely provide a device with an Azure blob URI for uploading a file.
2121
- Use the IoT Hub file upload notifications to trigger processing the file in your app back end.
2222

23-
The [Get started with IoT Hub](iot-hub-java-java-getstarted.md) and [Send Cloud-to-Device messages with IoT Hub](iot-hub-java-java-c2d.md) tutorials show the basic device-to-cloud and cloud-to-device messaging functionality of IoT Hub. The [Process Device-to-Cloud messages](iot-hub-java-java-process-d2c.md) tutorial describes a way to reliably store device-to-cloud messages in Azure blob storage. However, in some scenarios you cannot easily map the data your devices send into the relatively small device-to-cloud messages that IoT Hub accepts. For example:
23+
The [Get started with IoT Hub](iot-hub-java-java-getstarted.md) and [Send Cloud-to-Device messages with IoT Hub](iot-hub-java-java-c2d.md) tutorials show the basic device-to-cloud and cloud-to-device messaging functionality of IoT Hub. The [Process Device-to-Cloud messages](tutorial-routing.md) tutorial describes a way to reliably store device-to-cloud messages in Azure blob storage. However, in some scenarios you cannot easily map the data your devices send into the relatively small device-to-cloud messages that IoT Hub accepts. For example:
2424

2525
* Large files that contain images
2626
* Videos

0 commit comments

Comments
 (0)