The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
16 views

Android Bluetooth Discoverable Handler

I would like to make an handler to trigger when my device becomes undiscoverable.. I could do it, with an "thread" checking each 50 ms if the device turned discoverable off.. But isn't there a method ...
0
votes
1answer
19 views

Internal error using Network Service Discovery in Android

During the first implementation of the NSDManager using the examples and the tutorial on the developer page , the application successfully started the discovery and found the devices. However now it ...
0
votes
1answer
11 views

Android Bluetooth Discovery Only Devices using my App

Is possible to limit the results of a startDiscovery() ? Giving as results only clients that are also using my app ? In my App users can be servers or clients.. I am not asking for code, I just want ...
0
votes
0answers
14 views

Android bluetooth Chat application 17 API - Difficulty in establishing insecure text communication between 2 android mobiles.

Explored Sample bluetooth chat application of android SDK 17 api. The application runs once or twice as expected by establishing requested secure / insecure connectivity between 2 android mobile ...
0
votes
1answer
27 views

(WCF Service) Toggle on/off discovery endpoint

I'm developing a simple WCF-based application. My service is very simple, just 2 endpoints: 1) The service 2) updDiscovery <services> <service name="myService"> <endpoint ...
1
vote
1answer
65 views

What is the best way to implement device discovery on a LAN

I have not much experience on network programming and I am writing a multi platform system which require each device able to find other devices within the same LAN, I am thinking what is a correct ...
0
votes
1answer
44 views

Kryonet: discovery host allways return null

I try to use Kryonet to create an online game. When I give the ip adress (hardcoded in the code), connection and sendind/receiving works. But if I try to discover the server, It's never responding ...
0
votes
2answers
70 views

Device discovery in local network

I'm currently developing an android app using SDK >= 16 which should be able to discover different android devices (later also iOS devices) in a local area network using the WiFi radio. My first ...
2
votes
3answers
164 views

c# network discovery [duplicate]

I'm developing a C# application and I need to discover computers and printers in the LAN. How can I do this from .NET? Is there any class in .NET framework I can use. Thanks for answers.
1
vote
1answer
136 views

Measure Bluetooth Signal Strengths (RSSI) in Real Time

I want to be able to walk around a room with an android device in my hand, click a button that says room 1 and then start discovering bluetooth devices around me and getting their RSSI values. I then ...
0
votes
0answers
28 views

Bluetooth Discovery Finished Intent Missed

I am scanning for bluetooth devices once every 5 minutes and have a broadcast receiver registered to the intents corresponding to the events when a device is found and when discovery gets finished. ...
0
votes
0answers
71 views

Program to discover bluetooth devices in range and display them in android

I want to design a bluetooth remote but when I click on the search button it does not search for the devices, or maybe it does but does not show any of them. @Override protected void onCreate(Bundle ...
0
votes
0answers
6 views

How do I enrich an sObject Instance

Is there any elegant way to enrich an instance of an sObject with additional fields not returned in the original SOQL query? For example: objectType myInstance = [SELECT id, A, B from objectType ...
0
votes
0answers
35 views

WCF Discovery Proxy: is it mandatory?

I have configured WCF service to use Discovery proxy service for announcement. It is done only in config file. When I stop discovery proxy then my service cannot start because of exception during call ...
0
votes
1answer
110 views

Discovery in c#

I've to implement some discovery for an internal solution. We have two kind of software: Server: They manage a lot of hardware devices and can give access to some data (.Net remoting) Client: They ...
2
votes
1answer
356 views

stm32f0 uart programming

i'm trying to get the usart to work on my stm32f0-discovery but now i found out that the documentation about this kinda " lacks" so is there anyone who has an example of any usart working for the ...
0
votes
0answers
42 views

Leverage Google's spidering infrastructure to build your own niche index?

Let's say I want to build a specialised catalog of information that organisations can provide about themselves. We agree a metadata standard, and they include this information on webites. Is it ...
0
votes
1answer
85 views

SNMPv3 Discovery

I have use SNMP v1 and 2c for network discovery of printers by sending broadcast message with community "public" and it works just fine, but when I send broadcast message with version 3 of the ...
1
vote
1answer
40 views

Visual C++ Dependencies Solutions Build or Discovery

Imagine that scenario: L ^^ | \ | D | ^ | / X Where X is an executable, D is a DLL, an L is a Lib. The arrow means "depends on". I made changes on source of L. When I tried to ...
1
vote
1answer
41 views

Discover WCF Service by link

I want to find a WCF service using it's address. I wrote the following code: var uri = "http://bla-blabla.svc" var obj = new DiscoveryClient(new UdpDiscoveryEndpoint()); var findCriteria = ...
0
votes
0answers
70 views

Discovery not working over internet - just returns localhost

So I'm learning about WCF Discovery, and I think while I thought it would be a way for me to avoid having my users have to forward ports, by joining two remote connections together into a seamless ...
0
votes
0answers
292 views

Discovering all Bluetooth devices UUID around (iOS, Android)

First, please pardon me if the question is close to some topics of other threads. I searched previous topics but as I'm not a programmer/technician, I could not be sure they answered my question ...
0
votes
1answer
276 views

“service discovery failed” when trying to connect via bluetooth with android

I want to get the android sample project "BluetoothChat" running on my smartphone HTC One X. When trying to connect to a bluetooth adapter which is connected to my pc I get a "service discovery ...
1
vote
1answer
204 views

How to Set Bluetooth device Discovery Timeout to 1 hour(3600) seconds and Never Time out in android

I am working on Bluetooth App where I want to add the functionality of Manually configuring the Discoverable Timeout Period.When i set DISOVERABLE_DURATION to 120 or 300 it works fine.However it does ...
1
vote
0answers
95 views

Eclipse Juno with Chibios demo code “Launch Failed no binary found”

I am using ChibiOS for stm32f4 discovery board. IDE being used is Eclipse Juno I installed all the required softwares as told by chibiOS: ...
0
votes
1answer
258 views

Android Network Discovery Service (ish) before API 14

I need to be able to discover the services on the local network (so say I am running a chat application and I want to discover other devices on local network running this chat), but sadly I need to be ...
4
votes
1answer
293 views

EC2 JGroups Discovery

For my current project, we've decided to deploy our application to Amazon's Elastic Computing Cloud on some Linux boxes. We use JGroups for group communication and needed a reliable discovery ...
1
vote
1answer
72 views

Discover mobile devices (Android and IOS) using .NET

I am working on an ASP.NET (VB.NET) application which will discover devices connected on network. Is there a way through which i can discover IOS devices (iphone, ipad, ipod) and android devices ...
13
votes
6answers
3k views

any way to discover Android devices on your network?

I want to be able to discover Android devices on my network and possibly retrieve some device information about them. This is very easy with Apple devices since they run Bonjour services. However, I ...
2
votes
0answers
91 views

CUPS @LOCAL value

I got two machines. One with CUPS 1.5.0 and the other with CUPS 1.6.1. The two machines are on the same local network. I want a full discovery of the printers on the network. If i run the following ...
0
votes
2answers
190 views

HATEOAS - Discovery and URI Templating

I'm designing a HATEOAS API for internal data at my company, but have been having troubles with the discovery of links. Consider the following set of steps for someone to retrieve information about a ...
0
votes
0answers
177 views

BluetoothAdapter using ACTION_REQUEST_DISCOVERABLE

I am trying to use BluetoothAdapter with ACTION_REQUEST_DISCOVERABLE to discover my phone to other users according to this: testIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE); ...
1
vote
1answer
577 views

Discovering Bluetooth devices lists duplicate names

I am using DeviceListActivity for discovering Bluetooth devices. This is the activity that is used on Android Bluetooth Chat program sample. I run the program on a virtual machine. Problem: When I ...
0
votes
0answers
48 views

Is WS-Dynamic Discovery Adhoc Mode implemented in WSO2?

Up until now WSO2 had the implementation of WS-Dynamic Discovery with Managed Mode (HTTP unicast messages) and left the implementation of Adhoc Mode (multicast UDP messages) to a later stage. Has it ...
1
vote
0answers
196 views

programmaticaly get network device name in C# [closed]

Recently I'm Working on a project that discovered devices over network, i can retrieve the name of all PCs i mean "Computer Name" easily in c# but about devices such as iPhone, i pad, ... i can not. i ...
0
votes
0answers
53 views

iPhone API which allows the discovery of a HID enabled BT module

I would like to know if there is an IPhone API which allows the discovery, by name or MAC address, of a BT modules which supports HID profile. Thanks, Ionut
0
votes
1answer
412 views

STM32F4 How to get first message from Can1 and send it to Can2 , Can1 and Can2 have different speed

I have a development kit STM32f4 discovery kit and it has double Canbus interface modules. How to get first message from Can1 and send it to Can2 , Can1 and Can2 have different speed
1
vote
2answers
4k views

CRM 2011 connect to organization.svc using C#

The CRM 2011 is setup with ADFS and HTTPS. I'm trying to connect to organization.svc from custom web page which sits on the same IIS with CRM 2011 but as a different web site using this code: ...
0
votes
0answers
21 views

Do any tools exist for finding open source code snippets in a given project?

We're worried about having open source code in our large projects that could lead to vulnerabilities or legal issues in the future. We'd like to provide the code to an internal tool (no cloud ...
0
votes
0answers
39 views

Trouble with Discovery

I've been trying to implement Discovery for my Client / Server for a while now, but continue to have issues. I decided to try following a tutorial, and even the MSDN code sample found here doesn't ...
0
votes
0answers
93 views

Adding udpDiscoveryEndpoint causes ServiceHost to fail

I host my wcf services in IIS using my own ServiceHost which dervies from ServiceHost. Everything works fine as long as I don't add a udpDisovery endpoint. As soon as the endpoint is added my custom ...
0
votes
0answers
147 views

Odd bluetooth discovery problems on YP-G70 - MAC-Id found but not name

We have an application running on Samsung Galaxy player (YP-G70). Part of the application is periodically checking to find a particular Bluetooth transmitter (different things happen if it is found or ...
0
votes
0answers
33 views

Discovery and labelling of edges in a planar connected graph

I have the following problem. Consider a planar connected graph (alternatively an unstructured grid). Within the domain described by this graph, is a closed sub-domain whose boundary edges are ...
0
votes
0answers
31 views

programmatically load discovery options tab of a C project

I need to programmatically set Discovery Options Tab parameters of a C project. how can I do that?
0
votes
0answers
117 views

Cannot set Discovery Options of a C Project Programmatically

I need to create a C Project programmatically. I used the below code. IProject newProjectHandle = ResourcesPlugin.getWorkspace().getRoot().getProject(pName); try { pMonitor.beginTask("creating CDT ...
0
votes
2answers
135 views

TCP/IP Exception when using WCF Discovery

We have the following code... DiscoveryService.cs [ServiceContract] public interface IDiscoveryService { [OperationContract] void PrintHello(); } public class DiscoveryService : ...
0
votes
0answers
139 views

WCF REST Service & Discovery in IIS7.5 : No hello message recieved

I have a very weird problem. I'd like to use WCF Discovery feature with my REST services. I have a Discovery Proxy which waits for announcements of my REST services. Those REST services are hosted in ...
0
votes
2answers
248 views

WCF: How to set AnnouncementService only receive localhost on/off line message

i create a wcf-lib, i just want a interprocess communication. when i open a app, who is use the lib, will announce each other. i use UdpAnnouncementEndpoint, it work. but it will receive the ...
0
votes
1answer
144 views

Various Device discovery methods in Windows phone 7

Hi guys which are the various methods for discovering devices or desktop clients in windows phone 7? I have used Udpanysourcemulticast client which only works in wi-fi. And there is no support for ...
1
vote
1answer
265 views

UDPAnySourceMulticastClient works only in Wi-fi?

I am developing an application in which device discovery in a network is required. I am using UDPAnySourceMulticastClient in windows phone 7 for discovering desktop clients. Whenever I connect desktop ...

1 2 3