Questions tagged [ws-discovery]

Web Services Dynamic Discovery (WS-Discovery) is a technical specification that defines a multicast discovery protocol to locate services on a local network.

Web Services Dynamic Discovery (WS-Discovery) is a technical specification that defines a multicast discovery protocol to locate services on a local network. As the name suggests, the actual communication between nodes is done using web services standards, notably SOAP-over-UDP and SOAP-over-IP.

The protocol was originally developed by BEA Systems, Canon, Intel, Microsoft, and WebMethods. It has later been approved as a standard by OASIS (as of July 1st 2009).

56 questions
12
votes
1 answer

How to discover onvif devices in C#

I'm developing an application that will probe ONVIF devices attached on network for auto-discovery. According to ONVIF Core specification SOAP format of Probe message is :
user1828855
  • 123
  • 1
  • 1
  • 6
9
votes
0 answers

How to generate SOAP 1.2 binding for wsdl using wsdl2java?

I brief: How can i make wsdl2java generate SOAP 1.2 binding? Detailed description: I have generated java service classes for wsdl using wsdl2java tool (apache cxf 3.0.2): MBA-Anton:bin asmirnov$ ./wsdl2java -server -catalog /tmp/wsdl/catalog -d…
4ntoine
  • 19,816
  • 21
  • 96
  • 220
7
votes
1 answer

WS-Discovery Implementation for Android

I need to use WS-Discovery on android. I googled it for almost a day but nothing found. What would you do if you were in my situation?
Shahin
  • 117
  • 4
5
votes
1 answer

WCF web service discovery on network interfaces with multiple IP addresses

I'm trying to do a webservice discovery using WCF's DiscoveryClient using this code: // Setup the discovery client (WSDiscovery April 2005) DiscoveryEndpoint discoveryEndpoint = new…
Deanna
  • 23,876
  • 7
  • 71
  • 156
4
votes
3 answers

How to use WS-Discovery spec to discover ONVIF devices on a network in Java?

I am trying to discover ONVIF devices with some Java code. Specifically, I am trying to get their device service address (which is just their IP address I believe?), as the ONVIF Core Spec notes (in Section 4.3) that "A successful discovery provides…
Jared H.
  • 101
  • 1
  • 8
4
votes
3 answers

WS-Discovery Implementations for Java

Are there any implementations of the WS-Discovery specification for JAX-WS RI, Axis2, CXF or other toolkits?
baranco
  • 846
  • 2
  • 9
  • 14
4
votes
2 answers

WCF discovery with service hosts using net.tcp://0.0.0.0:0/blah announces net.tcp://0.0.0.0:0/blah

I wanted a discoverable service that would listen on all interfaces and publish discovery announcements for each interface. I was hoping to be able to eventually just configure this in the config file using tcp://0.0.0.0:0/blah as the service…
insipid
  • 3,238
  • 3
  • 26
  • 38
3
votes
1 answer

Performing WS-Discovery from within WinRT

I'd like to use WS-Discovery from within a WinRT application I'm developing, but this doesn't appear to be available. Whilst it's available within the .Net Frameworks's WCF 4.0, they appear to have ommitted it from WinRT. Since it's WinRT, I cannot…
Tomas McGuinness
  • 7,651
  • 3
  • 28
  • 40
3
votes
1 answer

Rolling a simple ESB/Discovery service in C#?

In looking around at the various ESBs and discovery services I've found a few things that are close to what i want (NServiceBus, the sample in .NET StockTrader, etc.) but have not been able to find a concise tutorial on the correct way to roll my…
XeroxDucati
  • 5,130
  • 2
  • 37
  • 66
3
votes
1 answer

ONVIF WS-Discover 1.0 - Client and Event Handlers

In my onvif client application I'm looking to implement the WS-Discovery with gsoap and wsddapi.c, but I have problems with the handler. I can send multicast message over UDP with soap_wsdd_probe (wsddapi.c), I have implemented the soap_bind, the…
Luca84
  • 63
  • 1
  • 4
3
votes
2 answers

WCF Service fault handling WS-Discovery Resolve message

We have a WCF service that implements discovery. It's working fine but we have an error handler that seems to be catching a message on the network at the moment that I'm not sure is invalid or not. After using a network monitor it seems to be…
Chris
  • 3,081
  • 3
  • 32
  • 37
2
votes
1 answer

Implement ONVIF WS-Discovery on Android

I need to implement ONVIF in an android application and till now I haven't had much success. I tried using evercam but using it results in a "ClassNotFoundException". Here's the full stacktrace. 04-22 20:20:22.182…
2
votes
1 answer

Gsoap, ONVIF and discovery

How can I get gsoap to generate proper bindings for ONVIF and ws-discovery together? I have no problem generating one or the other, but not both combined. This will generate proper wsdiscovery bindings: wsdl2h -g -o wsdiscovery.h -t typemap.dat…
Jon Smirl
  • 349
  • 2
  • 10
2
votes
1 answer

WCF UDP discovery on other network

We have two different networks in our company, 17 and 18 170.17.xxx.xxx 170.18.xxx.xxx On the 17 network there is a WCF service running which is discoverable. This is configured by the following…
Serve Laurijssen
  • 9,266
  • 5
  • 45
  • 98
2
votes
1 answer

WCF discovery: EndpointNotFoundException even though the endpoint was found

I'm using WS Discovery to dynamically find and connect to endpoints on the local network. var cli = new DiscoveryClient (new UdpDiscoveryEndpoint ()); var response = cli.Find (new FindCriteria (typeof (IFoo))); returns net.tcp://localhost:8000/,…
mafu
  • 31,798
  • 42
  • 154
  • 247
1
2 3 4