Questions tagged [endpoint]

This is a general tag used for all kinds of logic that reside in some receiving or sending scenario.

This is a general tag used for all kinds of logic that reside in some receiving or sending scenario. It's not necessarily bound to code, but may also be used in abstract or descriptive type of questions.

2085 questions
11
votes
2 answers

AddServiceEndpoint throws key is null?

When using the ServiceHost.AddServiceEndpoint to add the custom ProtoEndpointBehavior I get the following exception : System.ArgumentNullException: Value cannot be null. Parameter name: key at…
Banshee
  • 15,376
  • 38
  • 128
  • 219
11
votes
5 answers

jsplumb.connect() use existing endpoints instead of creating new

I have an issue with the jsPlumb.connect function. I have an application where a user can add
elements, which gets jsPlumb endpoints. The User can connect all these elements with each other. The chart can be saved in a MySQL Database (in JSON…
oneandonlycore
  • 480
  • 6
  • 23
11
votes
3 answers

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 tomcat server to host this or is it a mini glassfish…
Will
  • 1,622
  • 4
  • 25
  • 39
11
votes
1 answer

Heroku SSL Endpoint - "No Such App"

Any ideas why I might be getting the "No Such App" error when I go to my herokussl.com URL (after adding a cert and Heroku SSL endpoint)? I followed the instructions here (https://devcenter.heroku.com/articles/ssl-endpoint), and got a herokussl.com…
Mike Karp
  • 1,477
  • 13
  • 19
10
votes
2 answers

How to selectively inactivate REST endpoints in a Java application?

I am working on an application that consists of several backend services and a frontend client. The entire application is written in Java, and we use the Apache TomEE webserver to run it. The backend services expose several APIs, and contain several…
user3441604
  • 582
  • 7
  • 23
10
votes
1 answer

Understanding min_tag_id and max_tag_id

tag_media_recent takes as max_id and min_id as parameters. The documentation says : MIN_ID Return media before this min_id. MAX_ID Return media after this max_id. I tried max_id = 3390883111979 (very large than what is currently used) It returns…
Ankit Nayan
  • 363
  • 7
  • 18
10
votes
1 answer

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 within my solution for testing (VS 2008, btw),…
Darth Continent
  • 2,319
  • 3
  • 25
  • 41
9
votes
2 answers

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/ and everything. I'm creating the WCF service…
pushist1y
  • 127
  • 1
  • 1
  • 6
9
votes
1 answer

Azure - difference between service endpoint and private endpoint in simple terms

I am not able to understand the difference between service endpoints and private endpoints clearly. Need help preferably with an example.
9
votes
2 answers

Cannot connect to local DynamoDB

I cannot connect to DynamoDB that is running local using cli. aws dynamodb list-tables --endpoint-url http://localhost:8000 Could not connect to the endpoint URL: "http://localhost:8000/" This doesn't work either: aws dynamodb list-tables…
9
votes
1 answer

Microservices dependencies in UML diagrams

I want to explain how microservices depend on each other. Consider for example, the following case: The user service exposes the user_detail endpoint; The product service exposes the product_item_detail endpoint; The ordering service exposes the…
BryGom
  • 649
  • 1
  • 11
  • 21
9
votes
2 answers

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 connected to the actual IP/port of the Azure machines. My…
David Pfeffer
  • 38,869
  • 30
  • 127
  • 202
9
votes
4 answers

Can not access S3 via VPC endpoint in Lambda

I have a Lambda function in my VPC, and I want to access S3 bucket. I have setup the S3 VPC endpoint correctly, I think, because I created an EC2 instance in the same subnet and security group as the Lambda function. When I ran a copy of Lambda…
fish
  • 2,173
  • 2
  • 13
  • 18
9
votes
2 answers

How to Bulk-Add Azure endpoints?

I've got an FTP server running on Azure. I had to manually add in 20 endpoints for the 'data' connection. It was painful. Surely there's a better way to bulk add endpoints to an Azure VM, somehow? If so, could someone list some instructions? I'm…
Pure.Krome
  • 84,693
  • 113
  • 396
  • 647
8
votes
3 answers

Validating req.params with express validator

I want the user to be able to write a specific account number in the endpoint, been trying to validate the endpoint param if it exists in my database. I couldn't get it to work, please what am I doing wrong? My validation const validateReq:…
Pelumi
  • 413
  • 2
  • 5
  • 13