Monday, February 2, 2026

- Ukraine sees 'real results' from blocking Russia’s Starlink use - Russia attacks bus carrying Ukrainian civilian miners, killing at least 12, injuring 16 - Russia steps up attacks with Kh-32 missiles; here's what we know - Russian attacks on Zaporizhzhia injure at least 9, maternity hospital damaged ... and more

https://activitypub.writeworks.uk/2026/02/monday-february-2-2026/

How to Run Azure Service Bus Locally using .NET Aspire

YouTube

Wil jij komen werken als mijn collega bij ROC Nijmegen als beheerder integraties in het team Informatiemanagement & Ict, kijk eens naar deze vacature

https://werkenbij.roc-nijmegen.nl/vacature-obp/functioneel-beheerder-integraties-2526-038

#servicebus #api #rest #vacature #onderwijs #ict #integratiespecialist #functioneelbeheer #nijmegen #mbo

#Boost wordt gewaardeerd

Functioneel beheerder integraties

One Open-source Project Daily

Temporal is a durable execution platform that enables developers to build scalable applications without sacrificing productivity or reliability

https://github.com/temporalio/temporal

#1ospd #opensource #golang #distributedsystems #workflowengine #servicebus #microservices #workflows #cronjobscheduler #orchestrator #workflowautomation #distributedcron
GitHub - temporalio/temporal: Temporal service

Temporal service. Contribute to temporalio/temporal development by creating an account on GitHub.

GitHub

New blog post: A quick guide to integrating the new Azure Service Bus Emulator with .NET Aspire, including an Azure Functions queue trigger and custom commands in the Aspire dashboard.

https://www.wagemakers.net/posts/aspire-functions-service-bus

#aspire #dotnet #azurefunctions #servicebus

Developing Azure Functions with Aspire and the Service Bus Emulator

A quick guide on how to setup the Azure Service Bus emulator and a Azure Functions queue trigger using .NET Aspire

Join me and the #azure teams this morning at 9am pacific talking all things Data Mapper + #AzureLogicApps and new Geo Replication in #ServiceBus & #EventsHubs and even some new AI goodness!

https://www.youtube.com/watch?v=xXujnNpAEHg

#azuredevelopers

Azure Developers Live - Data Mapper in Logic Apps + Geo Replication for Service Bus & Event Hubs

YouTube
Does anyone have an example of #ServiceBus / #EventHub consumer stopping / suspending when the health check fails? I've got a container app in #azure, with health check endpoint. If that fails, the app is removed from serving the API traffic, great. But it continues to read messages from the messaging topic and fail them.
Using Azure Service Bus Queues with ASP.NET Core Services

This article shows how to implement two ASP.NET Core API applications to communicate with each other using Azure Service Bus. The ASP.NET Core APIs are implemented with Swagger support and uses an …

Software Engineering
I'm probably the only one who uses Azure on mastodon, so I'm just screaming into the void but: service bus AMQP seems to be hosed at the moment. I've had a very inaudible support call with azure (i'd love to know how they decide who handles phone support) and they are aware of the issue and are working on it. AMQP over WEB SOCKETS seems to still work, but we have dozens of affected systems #azure #servicebus #amqp #fail
#azure #servicebus Azure Service Bus PowerShell Module https://bit.ly/3T1GvJh via PlanetPowerShell
Azure Service Bus PowerShell Module

I recently worked with Azure Service Bus again. Service Bus was the messaging system of the microservice we were building for a customer. As part of that design we needed to test the performance of our application and we needed to make this simple, and flexible.Azure Service Bus PowerShell ModuleOur tests consisted of adding and removing messages onto Azure Service Bus Topics, many of them. It was okay for those messages to be all identical.Unfortunately, the Az.ServiceBus PowerShell module does not contain any cmdlets to send a message to a topic, and also none to “delete” them. So I got to work and developed my own module. Tl;Dr find the module hereFor now, the module consists of only two public cmdlets: Send-SbTestMessage Send a message once or many times over and over to your Service Bus Topic Receive-SbMessage Receive a single message or many messages. The received message will also be “deleted” from the Topic. AuthenticationThis module depends on an authenticated user session that has access to the Service Bus, depending on the cmdlet used the Azure Service Bus Data Receiver or Azure Service Bus Data Sender role is required.Special case: Azure Cloud ShellWhenever I can I recommend people use Cloud Shell to interact with their Azure cloud. For this module though there is a requirement for a user to be able to get an Azure Bearer token for a specific API endpoint. This usually works well locally, but because Cloud Shell by default uses MSI (Managed System Identity) to authenticate to Azure there is an extra step required for this module to work.Connect-AzAccount -DeviceCodeThis will ensure one is properly logged in to a session and won’t get the following error message:ManagedIdentityCredential authentication failed: Service request failed.Status: 400 (Bad Request)InstallationThe module is easily installed from the PowerShell Gallery using the following simple one-liner:Install-Module -Name AzureServiceBusManagement -Scope CurrentUserPowerShell RunspacesI attempted to develop the module with performance in mind. PowerShell Runspaces are being used to parallelise the sending or retrieving of messages. Service Bus itself should be absolutely fine with the amount of messages per second one sends or requests from it, so I felt this was good design.Feedback / ContributionFeel free to leave feedback here, on the GitHub repo itself or get in touch with me on Twitter.

Cloud for the win!