Debugging iOS Connections for Maui Application #2405
-
|
I have an appsettings.json that looks like the following for a Maui application: Where I can confirm that the sinks get applied to the I have applied the configuration as described here: Yet this doesn't seem to do anything. 🤔 I am looking for any pointers on how to figure out what is going on. Thank you for any assistance you can provide. 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Doh. Naturally, after posting this I got the genius idea to try connecting to the target machine from Safari. Chrome on the Android connects but the iOS simulator does not connect. So, this seems to be a simulator-wide issue. I will investigate more and report back findings here. |
Beta Was this translation helpful? Give feedback.
-
|
Talk about a mental pretzel. OK. So the Android emulator runs local to the Windows machine that is launching it. The MacOS is another machine altogether on the network and is where the iOS simulator images sit. I noticed that Safari on the MacOS also couldn't connect to the local Seq install location so this was specific to the machine and not the simulator at all. The answer was simple: I had to open the port on the Windows development machine where Seq was being run. 😅🤦 After opening the port everything works as expected everywhere. Welcome to cross-platform development! |
Beta Was this translation helpful? Give feedback.
Talk about a mental pretzel. OK. So the Android emulator runs local to the Windows machine that is launching it. The MacOS is another machine altogether on the network and is where the iOS simulator images sit. I noticed that Safari on the MacOS also couldn't connect to the local Seq install location so this was specific to the machine and not the simulator at all.
The answer was simple: I had to open the port on the Windows development machine where Seq was being run. 😅🤦 After opening the port everything works as expected everywhere. Welcome to cross-platform development!