Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

67
votes
21answers
55k views

Could not find default endpoint element

I've added a proxy to a webservice to a VS2008/.NET 3.5 solution. When constructing the client .NET throws this error: Could not find default endpoint element that references contract ...
6
votes
2answers
96 views

Is there a way to allow multiple chains to share the same endpoint in Catalyst?

I'm a bit of a Catalyst newbie, and I'm trying to get multiple chains to access the same endpoint ('description' subroutine) e.g: /object/fetch_by_id/*/description /object/fetch_by_name/*/description ...
5
votes
1answer
422 views

Directly accessing Azure workers; bypassing the load balancer

Typically, access to Azure workers is done via endpoints that are defined in the service definition. These endpoints, which must be TCP or HTTP(S), are passed through a load balancer and then ...
5
votes
1answer
4k views

WCF, ChannelFactory, “Could not find endpoint element…”

I'm trying to call a WCF service from within another service, in part using an example I found here on StackOverflow which implements ChannelFactory. I've created a separate console app project ...
4
votes
3answers
297 views

WCF Large interface at a single endpoint address

I have a wcf service that exposes quite a large number of service methods on a single endpoint address. Up to now, all service methods are implemented in a single service contract class. This service ...
4
votes
3answers
164 views

How to find bad endpoints earlier?

When I try to connect to an unavailable machine, I get an EndpointNotFoundException but it takes too long (about 20 seconds). Setting closeTimeout, openTimeout, receiveTimeout or sendTimeout has no ...
4
votes
6answers
3k views

Does groovy provide an include mechanism?

We are searching for an include mechanism for groovy scripts to have space for cross-cutting-concerns. In my example we have, web service endpoints as groovy scripts and want to log to our web ...
3
votes
2answers
500 views

mexHttpBinding - Add a ServiceMetadataBehavior to the configuration file or to the ServiceHost directly to enable support for this contract

I know this has been asked many times, and answered many times, but, all the provided samples that should be working don't seem to want to work for me today. When I try to start the host, I keep ...
3
votes
1answer
96 views

Webservice call from .net class called from VB6

Im using VB6 in a project and I've some .Net dlls to handle document transfers. In one of these dlls im calling a webservice to retrieve my documents. This code works if only run as .net project, ...
3
votes
1answer
226 views

How can I programmatically get the binding that my client proxy is using?

I have a WCF proxy generated at runtime with DuplexChannelFactory. How can I access the binding information given only the service interface returned from DuplexChannelFactory? I can get most stuff ...
3
votes
1answer
188 views

Is there a way to expose multiple WCF services through a single endpoint?

I currently offer a service with many methods via WCF. I'd like to refactor so the single service is split into multiple classes, each offering a different set of functionality. However, I'd prefer to ...
3
votes
2answers
3k views

Java: using endpoint to publish webservice to tomcat server

i am creating a simple SOAP web service. i am to ensure that it runs on a tomcat web service. im trying to implement this with JAX-WS (see code) my question is: does the Endpoint.publish use the ...
3
votes
2answers
725 views

When creating a WCF Service with NetTcpBinding, use endpoint “localhost” or machine's host name?

I have a WCF service that uses the NetTcpBinding and is running within a Windows service. Remote clients connect to this service. So far, I have defined the endpoint to use "localhost". If the host ...
3
votes
2answers
6k views

The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified

I am getting the following error and I am not sure what I am doing wrong. Does anybody see anything obvious? Below are my project's Web.config and my WCF class library's App.config The Address ...
3
votes
2answers
10k views

Securing WCF service endpoint with custom authentication

I want to secure some endpoint of a WCF service, i dont know if you can secure some endpoint and some not. Below I have the stripped WCF service (self hosted). The same WCF serves also the CA Policy ...
2
votes
1answer
35 views

wcftestclient - can i connect to a specific endpoint?

This should be a straightforward question. I am unable to connect to a specific endpoint using WCFTestClient tool. I have a service config. like this: <service name="CO.Services.SvcTest"> ...
2
votes
1answer
51 views

How to define configs multiple endpoints for a WCF self-hosted service?

I have two WCF Web API Contracts. Before this, I was happy that I could use TestClient. But after I implemented the second one I had to define endpoints (and could not use the default one) and after ...
2
votes
1answer
40 views

Endpoint Address when Hosting in Window Service vs IIS

i have a Service with a Name MyService and It implements a Service Contract IMyService when i am hosting in IIS i have added a SVC file and a Web.config and provided the base address as ...
2
votes
1answer
204 views

Mule jdbc connector xml parsing

I'm having problems to add a JDBC endpoint to my Mule project but I'm having problems during the initialization due to some XML parsing problems. The problems started after I've added the JDBC ...
2
votes
1answer
175 views

Adding WCF Service Reference with https endpoint

My WCF service application works over http and https, however, when I add a service reference (with the https url) to it in my client, Visual Studio 2010 sets the endpoint in the config file to http. ...
2
votes
1answer
311 views

Authentication mode=“Forms” causing errors in WCF end point

I have a WCF end point inside my .NET 4.0 Web Application project. Using the VS2010 WCF Test Client, I can connect to the service correctly. However when I go to use the service I get a generic ...
2
votes
3answers
179 views

How to hard-code a default WCF endpoint for a service?

In a self-hosted service, I'd like to use the endpoint(s) specified in App.config, if present, or a default endpoint specified in code if App.config is empty. How can I do this? Edit: to clarify, ...
2
votes
2answers
792 views

WCF basic HTTP and NetTCP binding, exposing both via Mex

I'm having some difficulty getting my WCF service configured. My requirement is that it exposes a basicHttpBinding endpoint as well as a netTcpBinding endpoint. Some of my clients are .NET 2.0, and ...
2
votes
2answers
127 views

How do you differentiate between application and infrastructure endpoints?

I'm creating a custom behaviour for WCF which can (for interoperability reasons) only function correctly when a service exposes a single application endpoint. I would like to be able to use the ...
2
votes
1answer
376 views

WCF: CustomBinding confuses endpoint

I am using CustomBinding to enable Soap 1.1 (endpoint does not support 1.2) + Addressing 1.0. The endpoint is only available over SSL, and runs on some kind of Java/Weblogic platform. Here is my ...
2
votes
2answers
425 views

Dynamically setting WCF endpoint

Ive just started using WCF with silverlight and its working fine. But one thing that is bugging me is the address of the .svc. Why is it statically set in the .config? Would it be possible to set it ...
2
votes
1answer
431 views

USB Endpoint Stalled Error

I am getting "endpoint stalled error" in my CDC device. The usb stack is detecting the cable. The state is set as running but the errorcode is set as 0x11 which indicates 'USB_ENDPOINT_STALLED'. I ...
2
votes
1answer
278 views

Mapping of URLs to Azure WebRoles

I cannot find any high level discussion docs that describe how URLs are mapped to Azure WebRoles in the case where an application has multiple WebRoles. Is it: roleA.myApp.com to WebRoleA ...
2
votes
1answer
409 views

WCF endpoint address

Does anyone know if the endpoint used for the service request can be accessed from within the service?
2
votes
2answers
8k views

WCF Consumer Website returning The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified

I've got a simple WCF service that works great on localhost - consumed by another local website and is returning data. Now I upload my service to our host, changing the appropriate addresses in the ...
2
votes
1answer
2k views

Why does my WCF service not respond my baseAddress setting in web.config?

I'm trying to learn how to build RESTful services with WCF by recreating the project on this blog post by Anthony Steele. He uses the following XML in his config to setup the endpoint for the service. ...
1
vote
2answers
48 views

Endpoint for venue stats (checkins) without auth

I'm building a 'social media widget' for work's website. I'm now adding Foursquare to it and would like to use the Foursquare API to display all the checkins and tips left at our 29 locations. I don't ...
1
vote
2answers
73 views

“Multiple filters matched.” when using same address for multiple endpoints in WCF

So, due to some organizational concerns, I've split up what was intially a single interface contract into two seperate ones. Now, I have only one class implementing both interfaces, and I want to make ...
1
vote
1answer
48 views

WCF REST-service: passing country code

I have a WCF REST-service that is used by a mobile application used in different countries. It's accepting and returning JSON, and I use StructureMap. The idea is to create one service instance for ...
1
vote
2answers
93 views

Custom web.config for asp.net web part in sharepoint 2010

Base: I have created a ASP.NET web part to be deployed to a Sharepoint 2010 site. This web part is using a external web service, a WCF service that is hosted else where, not on the same machine as the ...
1
vote
1answer
65 views

How to set a request timeout in http:inbound-endpoint in mule XML configuration file?

I create a flow with an inbound HTTP endpoint according to the document(click here): <flow name="testComponent"> <http:inbound-endpoint name="clientEndpoint" ...
1
vote
1answer
88 views

Get message payload attribute using Mule expression

I have set a default-service-exception-strategy which route and application error to various outbound endpoints. One of this endpoints is a jdbc connector endpoint which updates the database with the ...
1
vote
2answers
144 views

wcf endpoint relative address

I'm just learning wcf and can't understand one very basic thing. I'm creating a WCF service which I want to be hosted in IIS just like web application with it's own path like http://myhost/myapp/ ...
1
vote
0answers
95 views

WCF cannot connect to endpoint after successfully adding service reference

I've successfully published a WCF service on our production server. I can navigate to the page and see the default WCF page. I can add the service via "Add Service Reference" to a client on my ...
1
vote
1answer
166 views

Spring-ws: Multiple endpoints/wsdl/xsd/you-name-it

Info: I'm using Spring-ws 1.5.9 and Spring 2.5.6 I'm currently in the process of build a lot of web services and have a few questions as to how the architecture should be. Right now I have a single ...
1
vote
1answer
103 views

Camel Routes and Endpoints

I've been pouring over the Apache Camel docs trying to get a concrete understanding of two of its most basic concepts (endpoints and routes), and although these terms are used everywhere throughout ...
1
vote
1answer
62 views

Will XMPP work in a NAT environment?

An XMMP server sends push notifications to a client behind a NAT using a public endpoint( IP + Port) supplied by NAT to client. But how long this endpoint is assigned to this specific client by NAT, ...
1
vote
1answer
133 views

Flex iOS application with rtmps

I am trying to connect to an rtmps endpoint in AIR. The code looks like this: private function onCreationComplete():void{ var conn:NetConnection = new NetConnection(); ...
1
vote
3answers
187 views

Graph Api PHP Photo Upload from App endpoint/response problem

Using Facebook's Graph API, I'm uploading a photo from my iFrame app via a form: echo '<form enctype="multipart/form-data" action="' .$graph_url .' "method="POST">'; echo 'Please choose a ...
1
vote
1answer
108 views

Redirect after photo upload and avoid showing graph api endpoint response - PHP SDK 3

I'm trying to build an iframe app for my work through which a user can upload a photo to their photos. I have managed to get the photos to upload - BUT once the photo is uploaded, my app just shows ...
1
vote
0answers
58 views

WCF Service Unexpected Exception on Endpoint

We created WCF services hosted on various windows services. During consumption of the WCF service by another windows service, initially everything goes successfully. But after continuous execution ...
1
vote
1answer
111 views

WCF Client configuration - redirect multiple services to another host

Right now, i have multiple services in my client web.config like this: <endpoint address="http://hostname/ServiceA.svc" binding="wsHttpBinding" ...
1
vote
0answers
535 views

Could not find default endpoint element that references contract

I am trying to solve connection problem, I've already spent more hours than expected and ended nowhere. Error: Could not find default endpoint element that references contract 'timeedit3' in the ...
1
vote
2answers
659 views

SOAP endpoint over HTTPS returns 400 Bad Request

I have a WCF service hosted under IIS, behind a load balancer. SSL is offloaded at the LB and then the service is called in plain HTTP. I got the REST endpoint of the service working but I can't seem ...
1
vote
1answer
100 views

sql broker route tcp test to same server

For testing purposes, I placed two databases on the same server, I want to send queued messages between databases via TCP (not GUID.) Would I still need an endpoint since its all on 1 server? Also do ...

1 2 3