How can i connect private ethereum blockchain using metmask in windows 7? - ethereum

How can i connect to private blockchain from metamask using windows 7.I have created private blockchain in my pc of windows 10 and i have connected to my network using metamask .I have also connected another pc with windows 10 to my network from metamask.But when i tried to connected my network another pc which has windows 7 it is not getting connected (I have turned off firewall setting in pc's).Could anyone please help with solution. Thank you in advance.?

Related

Windows 10 IoT (ARM) - RNDIS/Ethernet Gadget

We have the following configuration :
a Linux box acting as a USB Slave (RNDIS/Ethernet Gadget)
a Windows 10 IoT (ARM) device acting as USB Host
When slave is connected to host, Windows IoT detect it but it appears as "USB Serial Device" and no new network adapter is available.
When slave is connected to a Windows 10 Pro, it works.
Host/Slave can successfully communicate via Ethernet.
So my questions are :
Does Windows IoT support RNDIS? (I was no able to find an official
answer on the web)
Do RNDIS driver exists for Windows IoT (ARM)?
Did someone already tried what we are trying to achieve?

'Server DNS address could not be found'

I am a complete newbie and have just started using a Raspberry Pi to run the latest version of Home Assistant. I am currently running it in a headless configuration and can connect to hassio.local:8123 through Chrome on my laptop with no issues. However, when I try to reach the same address on Chrome on my desktop (all devices are connected to the same wireless network) I get a 'server DNS address could not be found' error message. I have tried flushing DNS and manually configuring a DNS server but no luck. I have a disabled network adapter connection called 'Ethernet' that I cannot remove and I wonder if this is somehow causing part of the problem.
Dan, Try to check if there is connectivity to the Raspberry Pi first, by pinging both by name and by IP address, this would give you an idea if the desktop is able to talk to the RP or not. Next is to try using the ipaddress.local , if still no dice, check if the specific port 8123 is blocked on the desktop side.

StreamSocketListener and localhost

I'm using the following code to set up a StreamSocketListener on my universal 8.1 app:
_listener = new StreamSocketListener();
_listener.Control.QualityOfService = SocketQualityOfService.Normal;
_listener.ConnectionReceived += OnConnectionReceived;
await _listener.BindServiceNameAsync("8776");
This runs without any problems, however when I try & browse to http://localhost:8776 (or directly via ip address or machine name), the request times out.
In netstat I can see the 8776 port is open & listening, I've enabled loopback exemption, disabled my firewall, but I'm still not able to connect. This is true for both the Windows 8.1 and the Windows Phone 8.1 app.
When I try to connect from another machine, it works without problems. Is there any setting/configuration I can use so I'm able to connect from the same machine?
Windows RT blocks loopback access between two WinRT applications.
Network communications using an IP loopback address cannot be used for
interprocess communication (between two different apps) in a Windows
Runtime app since this is restricted by network isolation. Network
communication using an IP loopback address is allowed within an app
within the same process for communication purposes.
More info and workaround here

Consuming WCFREST Service from Windows Phone 8 using WebClient

with the reference to the Link
I am getting an error while running the application.
I am unable to find the solution to the problem.
May be you getting error because you are trying to call web service from local host. Host your web service some where in Http(Url). Windows phone emulator doesn't allow to call service from local host.

AIR for Android SocketServer over WiFi

Developing a multiplayer game for Android and using the AIR SocketServer class to communicate between server and client AIR applications.
On Windows 8 I am using Virtual Router Plus to set up my PC laptop(where the server app is running) as a wifi hotspot.
I run ipconfig in cmd after my wifi is running to grab the ipv4 IP address under 'Wireless LAN adapter Local Area Connection'
This is the IP I bind to in the server app and connect to in the client app.
If I launch both server and client on the same machine, everything works fine.
When I install the client app on my Android device, I am unable to establish a socket connection. The WiFi is running properly on my Android device.
Is a policy file necessary on the server machine when creating socketserver connections over a local wifi network?
If so, shouldn't the client app be throwing a security error when it tries to connect?
I am lost as to what my troubleshooting steps should be. ANY tips or feedback appreciated!
This happend because, the AIR Socket communication works only in Desktop application.
Try this native extension, it works perfectly form me:
http://blog.aboutme.be/2011/12/14/udp-native-extension-for-air-mobile-now-with-android-support/