UWP server application connect from same machine fails with 127.0.0.12019 Community Moderator ElectionAddressing localhost from a VirtualBox virtual machineIs 127.0.0.1 different from the IP address?mysql running but cannot connect to 127.0.0.1Can't see localhost from UWP appConnecting two local uwp Apps on same machineExpose a win32 application as a service to a UWP applicationsUWP client server in local machineServer and client in different projects on the same computer in UWPUWP apps can't connect with dns-cryptplay audio from TCP/IP server in UWP client on PI3
How do anti-virus programs start at Windows boot?
Why do passenger jet manufacturers design their planes with stall prevention systems?
Does this AnyDice function accurately calculate the number of ogres you make unconcious with three 4th-level castings of Sleep?
What is the greatest age difference between a married couple in Tanach?
How to generate globally unique ids for different tables of the same database?
Welcoming 2019 Pi day: How to draw the letter π?
How to deal with taxi scam when on vacation?
Can elves maintain concentration in a trance?
How could a female member of a species produce eggs unto death?
Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements
Be in awe of my brilliance!
Do I need life insurance if I can cover my own funeral costs?
What does it mean to make a bootable LiveUSB?
Bash: What does "masking return values" mean?
How to answer questions about my characters?
Am I not good enough for you?
Replacing Windows 7 security updates with anti-virus?
Where is the 1/8 CR apprentice in Volo's Guide to Monsters?
How to explain that I do not want to visit a country due to personal safety concern?
I need to drive a 7/16" nut but am unsure how to use the socket I bought for my screwdriver
Informing my boss about remarks from a nasty colleague
RegionDifference for Cylinder and Cuboid
How is the Swiss post e-voting system supposed to work, and how was it wrong?
Does splitting a potentially monolithic application into several smaller ones help prevent bugs?
UWP server application connect from same machine fails with 127.0.0.1
2019 Community Moderator ElectionAddressing localhost from a VirtualBox virtual machineIs 127.0.0.1 different from the IP address?mysql running but cannot connect to 127.0.0.1Can't see localhost from UWP appConnecting two local uwp Apps on same machineExpose a win32 application as a service to a UWP applicationsUWP client server in local machineServer and client in different projects on the same computer in UWPUWP apps can't connect with dns-cryptplay audio from TCP/IP server in UWP client on PI3
I'm developing an UWP app which needs to be the server for a win32 client application, which is not to be changed if possible. Now the problem is I can connect to my uwp server application if I connect to the hostname or IP address of my computer. In contrast if I use localhost or 127.0.0.1 I can't get a connection.
I'm running this command constantly to enable the connection without running it, it doesn't work at all. "CheckNetIsolation.exe LoopbackExempt -is -n=Packagename"
I also executed some tests, and found out that on the computer under company IT, it only works when using the IP address. Therefore with the identical setup on a computer which is not under the companies IT, it works as expected.
So I expect there's a problem with the way my machine is configured.
We have an proxy for all outgoing connections. Another thing when I use a win32 server and client I have no problem to connect to localhost, so it seems that my machines dns configuration is in general right.
Do you have any ideas how to torubleshoot this, or what I can try to find out where my connection attempt is going. Maybe the UWP application is trying to connect over the proxy?
c# uwp localhost loopback
|
show 1 more comment
I'm developing an UWP app which needs to be the server for a win32 client application, which is not to be changed if possible. Now the problem is I can connect to my uwp server application if I connect to the hostname or IP address of my computer. In contrast if I use localhost or 127.0.0.1 I can't get a connection.
I'm running this command constantly to enable the connection without running it, it doesn't work at all. "CheckNetIsolation.exe LoopbackExempt -is -n=Packagename"
I also executed some tests, and found out that on the computer under company IT, it only works when using the IP address. Therefore with the identical setup on a computer which is not under the companies IT, it works as expected.
So I expect there's a problem with the way my machine is configured.
We have an proxy for all outgoing connections. Another thing when I use a win32 server and client I have no problem to connect to localhost, so it seems that my machines dns configuration is in general right.
Do you have any ideas how to torubleshoot this, or what I can try to find out where my connection attempt is going. Maybe the UWP application is trying to connect over the proxy?
c# uwp localhost loopback
Have you tried some tool like Fiddler or WireShark? Monitor the request sent by the client.
– kennyzx
Mar 7 at 12:22
1
Have you checkedInternet(Client & Server)
and PrivateNetworks(Client &Server)
capability?
– Nico Zhu - MSFT
Mar 8 at 3:30
For the "PackageName" did you use the app id? I believe it's found at "HKEY_CURRENT_USERSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainer". As an aside, it's my understanding also you can do this if you're planning on side loading the app but you wouldn't be able to do this in the Windows Store if deploying it there.
– b.pell
Mar 9 at 19:50
@kennyzx I unfortunately didn't get wireshark to detect any of my interfaces, even when running as admin
– Mario
Mar 11 at 6:56
@NicoZhu-MSFT Yes these capabilities are enabled
– Mario
Mar 11 at 7:00
|
show 1 more comment
I'm developing an UWP app which needs to be the server for a win32 client application, which is not to be changed if possible. Now the problem is I can connect to my uwp server application if I connect to the hostname or IP address of my computer. In contrast if I use localhost or 127.0.0.1 I can't get a connection.
I'm running this command constantly to enable the connection without running it, it doesn't work at all. "CheckNetIsolation.exe LoopbackExempt -is -n=Packagename"
I also executed some tests, and found out that on the computer under company IT, it only works when using the IP address. Therefore with the identical setup on a computer which is not under the companies IT, it works as expected.
So I expect there's a problem with the way my machine is configured.
We have an proxy for all outgoing connections. Another thing when I use a win32 server and client I have no problem to connect to localhost, so it seems that my machines dns configuration is in general right.
Do you have any ideas how to torubleshoot this, or what I can try to find out where my connection attempt is going. Maybe the UWP application is trying to connect over the proxy?
c# uwp localhost loopback
I'm developing an UWP app which needs to be the server for a win32 client application, which is not to be changed if possible. Now the problem is I can connect to my uwp server application if I connect to the hostname or IP address of my computer. In contrast if I use localhost or 127.0.0.1 I can't get a connection.
I'm running this command constantly to enable the connection without running it, it doesn't work at all. "CheckNetIsolation.exe LoopbackExempt -is -n=Packagename"
I also executed some tests, and found out that on the computer under company IT, it only works when using the IP address. Therefore with the identical setup on a computer which is not under the companies IT, it works as expected.
So I expect there's a problem with the way my machine is configured.
We have an proxy for all outgoing connections. Another thing when I use a win32 server and client I have no problem to connect to localhost, so it seems that my machines dns configuration is in general right.
Do you have any ideas how to torubleshoot this, or what I can try to find out where my connection attempt is going. Maybe the UWP application is trying to connect over the proxy?
c# uwp localhost loopback
c# uwp localhost loopback
asked Mar 7 at 11:51
MarioMario
61
61
Have you tried some tool like Fiddler or WireShark? Monitor the request sent by the client.
– kennyzx
Mar 7 at 12:22
1
Have you checkedInternet(Client & Server)
and PrivateNetworks(Client &Server)
capability?
– Nico Zhu - MSFT
Mar 8 at 3:30
For the "PackageName" did you use the app id? I believe it's found at "HKEY_CURRENT_USERSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainer". As an aside, it's my understanding also you can do this if you're planning on side loading the app but you wouldn't be able to do this in the Windows Store if deploying it there.
– b.pell
Mar 9 at 19:50
@kennyzx I unfortunately didn't get wireshark to detect any of my interfaces, even when running as admin
– Mario
Mar 11 at 6:56
@NicoZhu-MSFT Yes these capabilities are enabled
– Mario
Mar 11 at 7:00
|
show 1 more comment
Have you tried some tool like Fiddler or WireShark? Monitor the request sent by the client.
– kennyzx
Mar 7 at 12:22
1
Have you checkedInternet(Client & Server)
and PrivateNetworks(Client &Server)
capability?
– Nico Zhu - MSFT
Mar 8 at 3:30
For the "PackageName" did you use the app id? I believe it's found at "HKEY_CURRENT_USERSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainer". As an aside, it's my understanding also you can do this if you're planning on side loading the app but you wouldn't be able to do this in the Windows Store if deploying it there.
– b.pell
Mar 9 at 19:50
@kennyzx I unfortunately didn't get wireshark to detect any of my interfaces, even when running as admin
– Mario
Mar 11 at 6:56
@NicoZhu-MSFT Yes these capabilities are enabled
– Mario
Mar 11 at 7:00
Have you tried some tool like Fiddler or WireShark? Monitor the request sent by the client.
– kennyzx
Mar 7 at 12:22
Have you tried some tool like Fiddler or WireShark? Monitor the request sent by the client.
– kennyzx
Mar 7 at 12:22
1
1
Have you checked
Internet(Client & Server)
and Private Networks(Client &Server)
capability?– Nico Zhu - MSFT
Mar 8 at 3:30
Have you checked
Internet(Client & Server)
and Private Networks(Client &Server)
capability?– Nico Zhu - MSFT
Mar 8 at 3:30
For the "PackageName" did you use the app id? I believe it's found at "HKEY_CURRENT_USERSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainer". As an aside, it's my understanding also you can do this if you're planning on side loading the app but you wouldn't be able to do this in the Windows Store if deploying it there.
– b.pell
Mar 9 at 19:50
For the "PackageName" did you use the app id? I believe it's found at "HKEY_CURRENT_USERSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainer". As an aside, it's my understanding also you can do this if you're planning on side loading the app but you wouldn't be able to do this in the Windows Store if deploying it there.
– b.pell
Mar 9 at 19:50
@kennyzx I unfortunately didn't get wireshark to detect any of my interfaces, even when running as admin
– Mario
Mar 11 at 6:56
@kennyzx I unfortunately didn't get wireshark to detect any of my interfaces, even when running as admin
– Mario
Mar 11 at 6:56
@NicoZhu-MSFT Yes these capabilities are enabled
– Mario
Mar 11 at 7:00
@NicoZhu-MSFT Yes these capabilities are enabled
– Mario
Mar 11 at 7:00
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043129%2fuwp-server-application-connect-from-same-machine-fails-with-127-0-0-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043129%2fuwp-server-application-connect-from-same-machine-fails-with-127-0-0-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried some tool like Fiddler or WireShark? Monitor the request sent by the client.
– kennyzx
Mar 7 at 12:22
1
Have you checked
Internet(Client & Server)
and PrivateNetworks(Client &Server)
capability?– Nico Zhu - MSFT
Mar 8 at 3:30
For the "PackageName" did you use the app id? I believe it's found at "HKEY_CURRENT_USERSoftwareClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainer". As an aside, it's my understanding also you can do this if you're planning on side loading the app but you wouldn't be able to do this in the Windows Store if deploying it there.
– b.pell
Mar 9 at 19:50
@kennyzx I unfortunately didn't get wireshark to detect any of my interfaces, even when running as admin
– Mario
Mar 11 at 6:56
@NicoZhu-MSFT Yes these capabilities are enabled
– Mario
Mar 11 at 7:00