lan

Connecting an Android phone to a local server w/o a third device

為{幸葍}努か 提交于 2020-01-15 23:04:52
问题 I know the question line is a bit ambiguous, but I could not think of a better one. My question is: I have an Android app that makes an HTTP request, the server is currently running on local. So, when I am in my office I connect both my laptop (on which the server is) and my phone on a same LAN network. And make that HTTP request using the hitting on the IP of the laptop. This is all fine, I wanna know is when I reach home I don't have a WiFi running, neither do I have a third device (so that

Connecting an Android phone to a local server w/o a third device

走远了吗. 提交于 2020-01-15 23:02:12
问题 I know the question line is a bit ambiguous, but I could not think of a better one. My question is: I have an Android app that makes an HTTP request, the server is currently running on local. So, when I am in my office I connect both my laptop (on which the server is) and my phone on a same LAN network. And make that HTTP request using the hitting on the IP of the laptop. This is all fine, I wanna know is when I reach home I don't have a WiFi running, neither do I have a third device (so that

Using BeautifulSoup where authentication is required

别说谁变了你拦得住时间么 提交于 2020-01-14 03:52:07
问题 I am scraping LAN data using BeautifulSoup4 and Python requests for a company project. Since the site has a login interface, I am not authorized to access the data. The login interface is a pop-up that doesn't allow me to access the page source or inspect the page elements without log in. the error I get is this- Access Error: Unauthorized Access to this document requires a User ID This is a screen-shot of the pop-up box (The blackened part is sensitive information). It has not information

MS ACCESS with desktop application over LAN

心已入冬 提交于 2020-01-11 13:12:04
问题 What is the best way to host MS ACCESS with desktop application over LAN without using shared folder? 回答1: You can use some Terminal Server (TS). For example Microsoft's Terminal server. It is a feature of server versions of ms windows OS. There are other TS available: Citrix, Nomachine. When you use msaccess desktop application located at TS, your users connect to TS by some client ("Remote desktop connection" for microsoft TS) and works just like they are sitting at the server. 回答2: The

Work with Web API and Windows Phone

ε祈祈猫儿з 提交于 2020-01-03 06:21:21
问题 I am developing a solution that is composed of two elements: a web server, which publishes some REST services, and a mobile client, which consumes those services. To implement the REST services I have used the Web API technology. When I start the web project in debug, everything works fine. I can use the services by pointing to localhost:63954/api. A weird fact: if I change "localhost" with "127.0.0.1" or with the LAN address of the machine, 192.168.xxx.xxx, the server does not answer anymore

Configure firewall to enable XAMPP working over LAN

旧巷老猫 提交于 2019-12-31 21:30:25
问题 When I turn off the firewall, I can access my XAMPP website through other LAN computers. When I turn on firewall then I cannot connect to the machine anymore. Could someone tell me what's happening? my os is windows xp. thanks. 回答1: Go to Control panel - > go to Windows Firewall -> then Advance Settings -> Click Inbound Rules right Click the inbound rules and select "New Rule..." select option port and click next select all local ports or your port number for apache server. and click next

How to connect to a docker container from outside the host (same network) [OSX 10.11]

血红的双手。 提交于 2019-12-31 10:48:12
问题 The Setup: Computer A - This is where the Docker-Machine "default" runs under VirtualBox. "default" is running a container called "Odoo". "default" was created using Docker's installation process. "Odoo" was created using Odoo's installation process. Computer B - This is a computer on the same Local Area Network (LAN) as Computer A. Router - This connects Computer A and Computer B together on the LAN. The Software: Computer A - OSX 10.11.3 / VirtualBox 5.0.18 / Docker 1.11 Computer B -

SQL Database automatic back up [closed]

会有一股神秘感。 提交于 2019-12-31 10:32:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I have an SQL database - I need to back it up everyday (at a minimum) - preferably multiple times a day - automatically so it definitely gets done. I'm running Windows which the SQL database is stored on. What programs (prefer free ones) can I use to back it up - I'm completely new with SQL so if you're gonna

Simulating a bad internet connection

余生颓废 提交于 2019-12-31 08:30:11
问题 I'm developing an embedded device which has access to the internet through LAN. I'm in the testing phase now, and I would like to test how the device performs when the connection to the internet is poor. Currently, the device is connected to a router through a hub, which I use to monitor the packets with Wireshark. What's the best way to throttle down the internet speed of the device to mimic a scenario that may happen? Can I do it through a PC? Do I need access to the router? If so, is it

UDP Packet loss simulation & probability

佐手、 提交于 2019-12-31 04:13:10
问题 I am currently creating a server software that communicates with multiple arduino boards. Due to the hardware, I am using the UDP Protocol. I have a pretty simple mechanism that will resend packages in most of the cases when they get lost. I have two questions now: How probable is it that UDP Packets get lost in a Network with no Internet access and about 20 arduinos and one computer? Is it even neccessary to have a resend method? Is there a way I can simulate UDP Packet loss in this network