-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dotnet-install.sh fails when using "Pair to Mac" in Visual Studio Enterprise 2022 #572
Comments
Can you attach the content of the dotnet-install scripts packaged by those tools? I suspect that they are using the out-of date versions of those scripts, and you might be impacted by the changes we've been forced to make by dotnet/core#9671. |
Here is the content, it won't allow me to add the file, even as a zip: dotnet-install.sh``` #!/usr/bin/env bash # Copyright (c) .NET Foundation and contributors. All rights reserved. # Licensed under the MIT license. See LICENSE file in the project root for full license information. #Stop script on NZECset -e Stop script if unbound variable found (use ${var:-} if intentional)set -u By default cmd1 | cmd2 returns exit code of cmd2 regardless of cmd1 successThis is causing it to failset -o pipefail Use in the the functions: eval $invocationinvocation='say_verbose "Calling: ${yellow:-}${FUNCNAME[0]} standard output may be used as a return value in the functionswe need a way to write text on the screen in the functions so thatit won't interfere with the return value.Exposing stream 3 as a pipe to standard output of the script itselfexec 3>&1 Setup some colors to use. These need to work in fairly limited shells, like the Ubuntu Docker container where there are only 8 colors.See if stdout is a terminalif [ -t 1 ] && command -v tput > /dev/null; then say_warning() { say_err() { say() { say_verbose() { This platform list is finite - if the SDK/Runtime has supported Linux distribution-specific assets,then and only then should the Linux distribution appear in this list.Adding a Linux distribution to this list does not imply distribution-specific support.get_legacy_os_name_from_platform() {
} get_legacy_os_name() {
} get_linux_platform_name() {
} is_musl_based_distro() { get_current_os_name() {
} machine_has() {
} check_min_reqs() {
} args:input - $1to_lowercase() {
} args:input - $1remove_trailing_slash() {
} args:input - $1remove_beginning_slash() {
} args:root_path - $1child_path - $2 - this parameter can be emptycombine_paths() {
} get_machine_architecture() {
} args:architecture - $1get_normalized_architecture_from_architecture() {
} args:version - $1channel - $2architecture - $3get_normalized_architecture_for_specific_sdk_version() {
} args:version or channel - $1is_arm64_supported() {
} args:user_defined_os - $1get_normalized_os() {
} args:quality - $1get_normalized_quality() {
} args:channel - $1get_normalized_channel() {
} args:runtime - $1get_normalized_product() {
} The version text returned from the feeds is a 1-line or 2-line string:For the SDK and the dotnet runtime (2 lines):Line 1: # commit_hashLine 2: # 4-part versionFor the aspnetcore runtime (1 line):Line 1: # 4-part versionargs:version_text - stdinget_version_from_latestversion_file_content() {
} args:install_root - $1relative_path_to_package - $2specific_version - $3is_dotnet_package_installed() {
} args:downloaded file - $1remote_file_size - $2validate_remote_local_file_sizes()
} args:azure_feed - $1channel - $2normalized_architecture - $3get_version_from_latestversion_file() {
} args:json_file - $1parse_globaljson_file_for_version() {
} args:azure_feed - $1channel - $2normalized_architecture - $3version - $4json_file - $5get_specific_version_from_version() {
} args:azure_feed - $1channel - $2normalized_architecture - $3specific_version - $4normalized_os - $5construct_download_link() {
} args:azure_feed - $1specific_version - $2download link - $3 (optional)get_specific_product_version() {
} args:azure_feed - $1specific_version - $2is_flattened - $3download link - $4 (optional)get_specific_product_version_url() {
} args:download link - $1specific version - $2get_product_specific_version_from_download_link()
} args:azure_feed - $1channel - $2normalized_architecture - $3specific_version - $4construct_legacy_download_link() {
} get_user_install_path() {
} args:install_dir - $1resolve_installation_path() {
} args:relative_or_absolute_path - $1get_absolute_path() {
} args:override - $1 (boolean, true or false)get_cp_options() {
} args:input_files - stdinroot_path - $1out_path - $2override - $3copy_files_or_dirs_from_list() {
} args:zip_uri - $1get_remote_file_size() {
} args:zip_path - $1out_path - $2remote_file_size - $3extract_dotnet_package() {
} args:remote_path - $1disable_feed_credential - $2get_http_header()
} args:remote_path - $1disable_feed_credential - $2get_http_header_curl() {
} args:remote_path - $1disable_feed_credential - $2get_http_header_wget() {
} args:remote_path - $1[out_path] - $2 - stdout if not provideddownload() {
} Updates global variables $http_code and $download_error_msgdownloadcurl() {
} Updates global variables $http_code and $download_error_msgdownloadwget() {
} extract_stem() { check_url_exists() {
} sanitize_redirect_url() {
} get_download_link_from_aka_ms() {
} get_feeds_to_use()
} THIS FUNCTION MAY EXIT (if the determined version is already installed).generate_download_links() {
} THIS FUNCTION MAY EXIT (if the determined version is already installed).generate_akams_links() {
} THIS FUNCTION MAY EXIT (if the determined version is already installed)args:feed - $1generate_regular_links() {
} print_dry_run() {
} calculate_vars() {
} install_dotnet() {
} args=("$@") local_version_file_relative_path="/.version" channel="LTS" while [ $# -ne 0 ] echo " -InstallDir" echo " --architecture Architecture of dotnet binaries to be installed, Defaults to `$architecture`." echo " --arch,-Architecture,-Arch" echo " Possible values: x64, arm, arm64, s390x, ppc64le and loongarch64" echo " --os Specifies operating system to be used when selecting the installer." echo " Overrides the OS determination approach used by the script. Supported values: osx, linux, linux-musl, freebsd, rhel.6." echo " In case any other value is provided, the platform will be determined by the script based on machine configuration." echo " Not supported for legacy links. Use --runtime-id to specify platform for legacy links." echo " Refer to: https://aka.ms/dotnet-os-lifecycle for more information." echo " --runtime Installs a shared runtime only, without the SDK." echo " -Runtime" echo " Possible values:" echo " - dotnet - the Microsoft.NETCore.App shared runtime" echo " - aspnetcore - the Microsoft.AspNetCore.App shared runtime" echo " --dry-run,-DryRun Do not perform installation. Display download link." echo " --no-path, -NoPath Do not set PATH for the current process." echo " --verbose,-Verbose Display diagnostics information." echo " --azure-feed,-AzureFeed For internal use only." echo " Allows using a different storage to download SDK archives from." echo " --uncached-feed,-UncachedFeed For internal use only." echo " Allows using a different storage to download SDK archives from." echo " --skip-non-versioned-files Skips non-versioned files if they already exist, such as the dotnet executable." echo " -SkipNonVersionedFiles" echo " --jsonfile Determines the SDK version from a user specified global.json file." echo " Note: global.json must have a value for 'SDK:Version'" echo " --keep-zip,-KeepZip If set, downloaded file is kept." echo " --zip-path, -ZipPath If set, downloaded file is stored at the specified path." echo " -?,--?,-h,--help,-Help Shows this help message" echo "" echo "Install Location:" echo " Location is chosen in following order:" echo " - --install-dir option" echo " - Environmental variable DOTNET_INSTALL_DIR" echo " - $HOME/.dotnet" exit 0 ;; *) say_err "Unknown argument `$name`" exit 1 ;; esac
done say_verbose "Note that the intended use of this script is for Continuous Integration (CI) scenarios, where:" if [ "$internal" = true ] && [ -z "$(echo $feed_credential)" ]; then check_min_reqs generate_regular_links call below will 'exit' if the determined version is already installed.generate_download_links if [[ "$dry_run" = true ]]; then install_dotnet bin_path="$(get_absolute_path "$(combine_paths "$install_root" "$bin_folder_relative_path")")" say "Note that the script does not resolve dependencies during installation."
|
Thanks, that is the correct script which is puzzling. Could you try if this fixes your issue? The "Pair to Mac" seems to expect the binaries in that directory (based on analogous case here: #407 ) |
@JanProvaznik here is the output from that:
|
Our script tries to follow 3xx redirects, but it looks like that's failing for your case, and I agree that it looks like your network security is interfering here. |
as a short term fix I would try downloading from https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102-servicing.24611.3/dotnet-sdk-9.0.102-osx-arm64.tar.gz and unzipping that to the install-dir manually preferably convince your network security to not break the link |
@JanProvaznik I think there's a potential bit of hardening we should do on the productversion.txt calls as well - it seems that we're not checking for a real success here (3xx responses don't count as 'failures') and we probably should be. A minimum bar would be failing, but we should probably attempt to follow any redirects to get the final content. |
Also I notice that these don't exist. Shouldn't they @rbhanda ?
only these exist: |
We put in a request to get the domain https://ci.dot.net unblocked. That fixed it. Thanks @baronfel and @JanProvaznik for the help and for being so responsive! |
@Mr-Horse is the |
That's probably also blocked. I'll have them add that one as well, thanks! |
@mmitche should these exist in ci.dot.net? |
No, since this was an internal build. They would exist in internal containers, but not public ones. |
Describe the bug.
We're trying to connect to a mac to do development on our old "xamarin" project that is now .NET 8.0 iOS. We normally connect to the mac and build/run the app on the mac simulator or iOS device. We've tried a ton of stuff and nothing seems to work. Currently we're unable to develop on the repo because of this issue. We would appreciate any help, thank you.
Reproduction Steps
The dotnet SDK installation '9.0.102-servicing.24611.3' failed. If trying again doesn't work, please refer to the public documentation for more information and troubleshooting: https://aka.ms/pairtomac/dotnet
Xamarin.Messaging.Exceptions.MessagingRemoteException: An error occurred on client IDB17120153 while executing a reply for topic xvs/idb/initialize-dotnet-sdk ---> Xamarin.Messaging.IDB.Contracts.DotNetSdkInstallationException: Could not install dotnet SDK '9.0.102-servicing.24611.3'. Details: /Users/mrhorse/Library/Caches/Xamarin/XMA/SDKs/dotnet/scripts/dotnet-install.sh: line 1440: link_types[$link_index]: unbound variable
What we've tried
cd /users/mrhorse/library/caches/xamarin/xma/sdks/dotnet/scripts
chmod +x dotnet-install.sh
sudo ./dotnet-install.sh --version 9.0.102-servicing.24611.3
dotnet-install: .NET Core SDK with version '9.0.102' is already installed.
Output from xamarin logs
Xamarin log output
``` Xamarin Information: 0 : Xamarin - 17.12.0.153-d17-12+1d0906d: 01/31/2025 14:28:00Z DateTime=2025-01-31T14:28:00.6908367Z: 01/31/2025 14:28:00Z Xamarin Information: 0 : DateTime=2025-01-31T14:28:00.6908367Z: 01/31/2025 14:28:00Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : Starting Broker in-process...: 01/31/2025 14:28:00Z DateTime=2025-01-31T14:28:00.7113517Z: 01/31/2025 14:28:00Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : DateTime=2025-01-31T14:28:00.7113517Z: 01/31/2025 14:28:00Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Starting: Broker 17.12.0.153 ( PID = 23960 ): 01/31/2025 14:28:00Z DateTime=2025-01-31T14:28:00.7303517Z: 01/31/2025 14:28:00Z Xamarin.Messaging.Server.MessagingServer Information: 0 : Starting Messaging Server...: 01/31/2025 14:28:00Z DateTime=2025-01-31T14:28:00.7383547Z: 01/31/2025 14:28:00Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Connecting Agent to the Broker...: 01/31/2025 14:28:00Z DateTime=2025-01-31T14:28:00.7613542Z: 01/31/2025 14:28:00Z Xamarin.VisualStudio.TastyPackage Information: 0 : Hooked up SDB tracing adapter: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.4645860Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.TastyPackage Information: 0 : Initialization finished: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.4924587Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Initializing Agent context...: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.5744146Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Registering Agent message handlers...: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.5774146Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Registering message handler for message type: Xamarin.Messaging.GetAgentVersionMessage: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.5844142Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.TastyPackage Information: 0 : Hooked up SDB tracing adapter: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.6285597Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.TastyPackage Information: 0 : Initialization finished: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.6394378Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.IOS.XamarinIOSPackage Warning: 0 : Initializing Xamarin.VisualStudio.IOS.XamarinIOSPackage.: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.6394378Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Registering message handler for message type: Xamarin.Messaging.StopAgentMessage: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.6844384Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Registering message handler for message type: Xamarin.Messaging.RegisterAgentMessage: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.7253871Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Registering message handler for message type: Xamarin.Messaging.GetActiveClientsMessage: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.7423849Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Registering message handler for message type: Xamarin.Messaging.GetActiveAgentsMessage: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.7493861Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Agent registered: Broker: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.7593853Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : Successfully started Broker in-process: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.7633872Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : DateTime=2025-01-31T14:28:01.7633872Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : Connecting to Local Broker...: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.7683853Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : DateTime=2025-01-31T14:28:01.7683853Z: 01/31/2025 14:28:01Z Xamarin.VisualStudio.IOS.AppleProjectCollector Information: 0 : Collecting new Apple project: Xamarin.Essentials.Release|AnyCPU|net8.0-ios.18.0: 01/31/2025 14:28:01Z DateTime=2025-01-31T14:28:01.8759090Z: 01/31/2025 14:28:01Z Xamarin.Messaging.Ssh.MessagingService Information: 0 : Agent Broker 17.12.0.153 is running: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.4620488Z: 01/31/2025 14:28:02Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : Successfully connected to Local Broker: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.4660479Z: 01/31/2025 14:28:02Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : DateTime=2025-01-31T14:28:02.4660479Z: 01/31/2025 14:28:02Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : Starting IDB Local Agent...: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.5026413Z: 01/31/2025 14:28:02Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : DateTime=2025-01-31T14:28:02.5026413Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Starting: IDB.Local 17.12.0.153 ( PID = 23960 ): 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.5041498Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Connecting Agent to the Broker...: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.5041498Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Initializing Agent context...: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.5051599Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering Agent message handlers...: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.6802565Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.GetAgentVersionMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.6802565Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.StopAgentMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.6812555Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : IDB Local Registering Handlers: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.6992670Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetMobileDeviceConfigurationMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7002665Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetDevicesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7087838Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.RefreshDevicesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7157798Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.DeployAppMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7277770Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.LaunchAppMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7357786Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.StopDebuggingAppMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7417781Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.AddDeveloperAccountMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7517793Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetDeveloperAccountsMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7587791Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetSigningIdentitiesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7647784Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetProvisioningProfilesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7707796Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.RemoveDeveloperAccountMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.7807797Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.SyncSigningIdentitiesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8272926Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.SyncProvisioningProfilesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8332901Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.DownloadProvisioningProfilesMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8442933Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.AutoProvisionMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8562922Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.CreateAppleCertificateMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8692927Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetProvisioningInformationMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8792929Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.CheckProvisioningStatusMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.8862928Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.ImportCertificateMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.9318145Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.GetSigningIdentityTypeMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.9408147Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.StartDeviceLogMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.9498940Z: 01/31/2025 14:28:02Z Xamarin.Messaging.IDB.Local.IDBLocalAgent Information: 0 : Registering message handler for message type: Xamarin.Messaging.IDB.Contracts.StopDeviceLogMessage: 01/31/2025 14:28:02Z DateTime=2025-01-31T14:28:02.9688934Z: 01/31/2025 14:28:02Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : Successfully started IDB Local Agent: 01/31/2025 14:28:03Z DateTime=2025-01-31T14:28:03.0475330Z: 01/31/2025 14:28:03Z Xamarin.VisualStudio.IOS.Messaging.LocalMessagingInitializer Information: 0 : DateTime=2025-01-31T14:28:03.0475330Z: 01/31/2025 14:28:03Z Xamarin.Messaging.Server.BrokerAgentInProcess Information: 0 : Agent registered: IDBLocal17120153: 01/31/2025 14:28:03Z DateTime=2025-01-31T14:28:03.0545330Z: 01/31/2025 14:28:03Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : Checking xma 17.12.0.153 installation...: 01/31/2025 14:28:03Z DateTime=2025-01-31T14:28:03.0878763Z: 01/31/2025 14:28:03Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:03.0878763Z: 01/31/2025 14:28:03Z Xamarin.VisualStudio.IOS.AppleProjectCollector Information: 0 : Collecting new Apple project: dotStaff.iOS.Release|AnyCPU|net8.0-ios.18.0: 01/31/2025 14:28:05Z DateTime=2025-01-31T14:28:05.8916161Z: 01/31/2025 14:28:05Z Xamarin.VisualStudio.AssemblyRedirector Information: 0 : Redirecting assembly load of System.Reactive, Version=5.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263: 01/31/2025 14:28:12Z DateTime=2025-01-31T14:28:12.7275097Z: 01/31/2025 14:28:12Z Xamarin.VisualStudio.AssemblyRedirector Information: 0 : loaded by (unknown): 01/31/2025 14:28:12Z DateTime=2025-01-31T14:28:12.7275097Z: 01/31/2025 14:28:12Z Xamarin.VisualStudio.AssemblyRedirector Information: 0 : to version 6.0.0.0: 01/31/2025 14:28:12Z DateTime=2025-01-31T14:28:12.7275097Z: 01/31/2025 14:28:12Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from DisconnectedState to ConfiguringState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:16Z DateTime=2025-01-31T14:28:16.6774364Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Checking host configuration for connecting to 'inhqmb101155'...: 01/31/2025 14:28:16Z DateTime=2025-01-31T14:28:16.6974384Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:16.6974384Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Checking SSH configuration...: 01/31/2025 14:28:16Z DateTime=2025-01-31T14:28:16.7225350Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:16.7225350Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Ssh.SshInformationProvider Information: 0 : Current SSH Key File: C:\Users\mrhorse\AppData\Local\Xamarin\MonoTouch\id_xma.pub: 01/31/2025 14:28:16Z DateTime=2025-01-31T14:28:16.7265431Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Ssh.SshInformationProvider Information: 0 : DateTime=2025-01-31T14:28:16.7265431Z: 01/31/2025 14:28:16Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Initializing environment...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.2296070Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.2296070Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Checking available disk space...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.4108810Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.4108810Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Verifying dotnet runtime installation...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.4445531Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.4445531Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Ssh.SshCommands Information: 0 : dotnet runtimes for '/usr/local/share/dotnet/dotnet': Microsoft.AspNetCore.App 8.0.12 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 9.0.1 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.NETCore.App 8.0.12 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 9.0.1 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.4852380Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Checking if Rosetta is installed...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.4932381Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.4932381Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Checking Mono installation...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.5745051Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.5745051Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Ssh.SshCommands Information: 0 : A valid Mono installation has been found at '/Library/Frameworks/Mono.framework/Versions/Current/bin/mono64': 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.8849347Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Checking host configuration for connecting to 'inhqmb101155'...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.9675145Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.9685127Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from ConfiguringState to ConfiguredState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.9705123Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Host 'inhqmb101155' is configured correctly: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.9780454Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.9780454Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from ConfiguredState to ConnectingState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.9790478Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Starting connection to 'inhqmb101155'...: 01/31/2025 14:28:17Z DateTime=2025-01-31T14:28:17.9830467Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:17.9830467Z: 01/31/2025 14:28:17Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : Checking Broker 17.12.0.153 installation...: 01/31/2025 14:28:18Z DateTime=2025-01-31T14:28:18.1640296Z: 01/31/2025 14:28:18Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:18.1640296Z: 01/31/2025 14:28:18Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : Starting Broker 17.12.0.153 in port 51976...: 01/31/2025 14:28:18Z DateTime=2025-01-31T14:28:18.9718900Z: 01/31/2025 14:28:18Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:18.9718900Z: 01/31/2025 14:28:18Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : Broker 17.12.0.153 started successfully: 01/31/2025 14:28:19Z DateTime=2025-01-31T14:28:19.8808163Z: 01/31/2025 14:28:19Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:19.8808163Z: 01/31/2025 14:28:19Z Xamarin.Messaging.Ssh.MessagingService Information: 0 : Agent Broker 17.12.0.153 is running: 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.0270315Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Starting connection to 'inhqmb101155'...: 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.0722716Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:20.0722716Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from ConnectingState to SshConnectedState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.0732762Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : SSH connection to 'inhqmb101155' has been established...: 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.0772752Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:20.0772752Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from SshConnectedState to AgentsStartingState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.0942776Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Starting registered Agents: IDB 17.12.0.153...: 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.1022715Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:20.1022715Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Starting IDB 17.12.0.153...: 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.1182797Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:20.1182797Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : Checking IDB 17.12.0.153 installation...: 01/31/2025 14:28:20Z DateTime=2025-01-31T14:28:20.1192812Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:20.1192812Z: 01/31/2025 14:28:20Z Xamarin.Messaging.Ssh.MessagingService Information: 0 : Starting Agent IDB 17.12.0.153...: 01/31/2025 14:28:23Z DateTime=2025-01-31T14:28:23.7384941Z: 01/31/2025 14:28:23Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : Starting IDB 17.12.0.153 in port 51976...: 01/31/2025 14:28:23Z DateTime=2025-01-31T14:28:23.7384941Z: 01/31/2025 14:28:23Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:23.7384941Z: 01/31/2025 14:28:23Z Xamarin.Messaging.Client.MessageHandlerManager Error: 0 : An error occurred while handling a message of type Xamarin.Messaging.AgentStatusMessage System.ArgumentNullException: Value cannot be null. Parameter name: name at Xamarin.Messaging.AgentInfo..ctor(String name, String version, String instanceId) in D:\a\_work\1\s\src\Xamarin.Messaging.Common\AgentInfo.cs:line 24 at Xamarin.Messaging.Ssh.MessagingEvents.b__9_0(AgentStatusMessage message) in D:\a\_work\1\s\src\Xamarin.Messaging.Ssh\MessagingEvents.cs:line 26 at Xamarin.Messaging.Client.DefaultHandler`1.d__4.MoveNext() in D:\a\_work\1\s\src\Xamarin.Messaging.Client\Handlers\DefaultHandler.cs:line 24 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Xamarin.Messaging.Client.RequestHandler`1.d__5.MoveNext() in D:\a\_work\1\s\src\Xamarin.Messaging.Client\Handlers\RequestHandler.cs:line 34 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Xamarin.Messaging.Client.MessageHandlerManager.<>c__DisplayClass17_0`1.<b__0>d.MoveNext() in D:\a\_work\1\s\src\Xamarin.Messaging.Client\MessageHandlerManager.cs:line 148: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.4025463Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : IDB 17.12.0.153 started successfully: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8674103Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Ssh.MessagingCommands Information: 0 : DateTime=2025-01-31T14:28:24.8674103Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Ssh.MessagingService Information: 0 : Agent IDB 17.12.0.153 is running: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8674103Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : IDB 17.12.0.153 started: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8714122Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:24.8714122Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Starting registered Agents: ...: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8764110Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:24.8764110Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from AgentsStartingState to AgentsStartedState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8794116Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : The Agents have been started successfully: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8881158Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:24.8881158Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Server State transition from AgentsStartedState to ValidatingState on inhqmb101155 (10.40.20.30): 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8913706Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Performing server validations against 'inhqmb101155'...: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.8973746Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:24.8973746Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Setting up user remote session...: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.9053737Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:24.9053737Z: 01/31/2025 14:28:24Z Xamarin.VisualStudio.IOS.Messaging.DotNetSdkValidator Information: 0 : Selected project configuration for DotNet validation: C:\Repos\dotStaff_Mobile\CalendarExample\CalendarExample.csproj: CalendarExample.Debug|AnyCPU|net8.0-ios.18.0: 01/31/2025 14:28:24Z DateTime=2025-01-31T14:28:24.9275165Z: 01/31/2025 14:28:24Z Xamarin.VisualStudio.IOS.Messaging.DotNetSdkValidator Information: 0 : DateTime=2025-01-31T14:28:24.9275165Z: 01/31/2025 14:28:24Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Installing dotnet SDK '9.0.102-servicing.24611.3'...: 01/31/2025 14:28:25Z DateTime=2025-01-31T14:28:25.0487242Z: 01/31/2025 14:28:25Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:25.0487242Z: 01/31/2025 14:28:25Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Downloading dotnet-install script...: 01/31/2025 14:28:25Z DateTime=2025-01-31T14:28:25.0507237Z: 01/31/2025 14:28:25Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:25.0507237Z: 01/31/2025 14:28:25Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : --install-dir "/Users/mrhorse/Library/Caches/Xamarin/XMA/SDKs/dotnet" --version 9.0.102-servicing.24611.3 --architecture Arm64 --no-path: 01/31/2025 14:28:38Z DateTime=2025-01-31T14:28:38.6209024Z: 01/31/2025 14:28:38Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:38.6209024Z: 01/31/2025 14:28:38Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Using dotnet install script '/Users/mrhorse/Library/Caches/Xamarin/XMA/SDKs/dotnet/scripts/dotnet-install.sh'...: 01/31/2025 14:28:38Z DateTime=2025-01-31T14:28:38.6391019Z: 01/31/2025 14:28:38Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:38.6391019Z: 01/31/2025 14:28:38Z Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : Could not install dotnet SDK '9.0.102-servicing.24611.3'. Details: /Users/mrhorse/Library/Caches/Xamarin/XMA/SDKs/dotnet/scripts/dotnet-install.sh: line 1440: link_types[$link_index]: unbound variable: 01/31/2025 14:28:39Z
DateTime=2025-01-31T14:28:39.3335494Z: 01/31/2025 14:28:39Z
Xamarin.Messaging.Integration.State.ServerStateContext Information: 0 : DateTime=2025-01-31T14:28:39.3335494Z: 01/31/2025 14:28:39Z
Xamarin.Messaging.Client.MessagingClient Error: 0 : An error occurred on the receiver while executing a post for topic xvs/idb/initialize-dotnet-sdk and client vs23960rober
Xamarin.Messaging.Exceptions.MessagingRemoteException: An error occurred on client IDB17120153 while executing a reply for topic xvs/idb/initialize-dotnet-sdk ---> Xamarin.Messaging.IDB.Contracts.DotNetSdkInstallationException: Could not install dotnet SDK '9.0.102-servicing.24611.3'. Details: /Users/mrhorse/Library/Caches/Xamarin/XMA/SDKs/dotnet/scripts/dotnet-install.sh: line 1440: link_types[$link_index]: unbound variable
at Xamarin.Messaging.IDB.DotNetSdk.DotNetSdkManager.InstallSdkAsync(String, String , String , String )
at Xamarin.Messaging.IDB.InitializeDotNetSdkMessageHandler.ExecuteAsync(InitializeDotNetSdkMessage)
at Xamarin.Messaging.Client.RequestHandler
2.HandleAsync(TMessage) at Xamarin.Messaging.Client.MessageHandlerManager.<>c__DisplayClass16_1
2.<b__2>d.MoveNext()--- End of stack trace from previous location ---
at Xamarin.Messaging.Client.MessagingClient.ReplyAsync[TRequest,TResponse](IRequest
1, MessagePriority, Func
1)--- End of inner exception stack trace ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at Xamarin.Messaging.Client.ApplicationMessageExtensions.<>c__DisplayClass10_0
1.<OfResponse>b__1(MqttApplicationMessage m) in D:\a\_work\1\s\src\Xamarin.Messaging.Client\Extensions\ApplicationMessageExtensions.cs:line 194 at System.Reactive.Linq.ObservableImpl.Select
2.Selector._.OnNext(TSource value)--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at Xamarin.Messaging.Client.MessagingClient.d__21`2.MoveNext() in D:\a_work\1\s\src\Xamarin.Messaging.Client\MessagingClient.cs:line 190: 01/31/2025 14:28:39Z
DateTime=2025-01-31T14:28:39.3647170Z: 01/31/2025 14:28:39Z
The text was updated successfully, but these errors were encountered: