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
8
votes
6 answers

Is there anyway to create a friendly URL for AWS Elasticsearch domain url?

I tried creating a Route 53 alias record but that didn't work.
Dhawal
  • 1,240
  • 2
  • 12
  • 20
8
votes
2 answers

What is the difference between tcp::endpoint and udp::endpoint in Boost::Asio?

It seems boost::asio defines a separate endpoint class for each protocol, which is irritating if you want to perform both UDP and TCP operations on a particular endpoint (have to convert from one to the other). I'd always just thought of an endpoint…
Michael Hardy
  • 121
  • 1
  • 1
  • 5
8
votes
2 answers

How to create a simple local web page using C# windows forms

I am looking to create a simple webpage using C# Windows Forms Application, or a C# Console application. Running the application will begin hosting a web page at: http://localhost:3070/somepage I have read a little bit on MSDN about using…
JesterBaze
  • 130
  • 2
  • 2
  • 11
8
votes
3 answers

WCF service exposing 2 endpoints on 2 different service contracts

I have an WCF service which I am trying to configure so that it exposes 2 endpoints, refering to different functionalities, under different URLs. What I want to have is Service1, exposing methods A, B, C, and Service2, exposing methods D, E. I want…
Coral Doe
  • 1,925
  • 3
  • 19
  • 36
8
votes
1 answer

No adapter for endpoint SWS

I'm trying to create a simple Hello World WebService using this tutorial. I'm running Java 1.7.0_04, Spring 2.1, everything is built with Maven and deployed with Tomcat6. However, when trying to send a SOAP request (soapUI), server returns me No…
Khozzy
  • 1,064
  • 4
  • 15
  • 29
7
votes
2 answers

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 /object/fetch_by_xref/*/description I don't want…
gawbul
  • 1,207
  • 12
  • 20
7
votes
3 answers

Deploy App Service with private endpoint via Azure DevOps

When I run release pipeline for Azure App service with private endpoint, Below error happens Error: Failed to fetch Kudu App Settings. Error: Ip Forbidden (CODE: 403) Any suggestion?
user2748366
  • 143
  • 1
  • 1
  • 8
7
votes
1 answer

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 by casting to an IClientChannel, but I can't seem…
GazTheDestroyer
  • 20,722
  • 9
  • 70
  • 103
7
votes
2 answers

Nginx status endpoint running inside Docker

I'm new to Nginx, which I'm running in a Docker container to serve a simple website. I want to add an /health endpoint that simply returns status 200 + some arbitrary content. I copied and adjusted the standard nginx.conf from /etc/nginx/ by adding…
stefanbschneider
  • 5,460
  • 8
  • 50
  • 88
7
votes
2 answers

How to deploy and access a Java WebSocket endpoint on Heroku without any additional frameworks

I have followed this very basic tutorial for setting up a WebSocket endpoint in Java: http://www.oracle.com/webfolder/technetwork/tutorials/obe/java/HomeWebsocket/WebsocketHome.html Heroku, however, expects me to rely on Play Framework:…
coderodde
  • 1,269
  • 4
  • 17
  • 34
7
votes
3 answers

Flask RESTFUL, creating a cookie from an endpoint (restful.Resource)

I'm currently working on creating a Cookie from an endpoint. As my backend and frontend only interacts via RESTful endpoints, is there anyway I can create a cookie when the frontend calls my backend's endpoint? flask.make_response.set_cookie()…
max goh
  • 81
  • 1
  • 3
7
votes
1 answer

WooCommerce: Adding custom template to customer account pages

I am attempting to add a custom page to the customers 'account' section, which will allow the user to edit their order. At present I have been able to set an end point for the url and pick it up, but I need to get WooCommerce to initiate the page…
Paul
  • 2,465
  • 8
  • 35
  • 60
7
votes
0 answers

Single v Multiple REST endpoint

Were working on making legacy code (Java) accessible via a REST API (Java/Spring/JSON). Essentially our legacy code has numerous command processor type classes (which take in commands) and serve data back to the caller. So we have numerous command…
Silmarillion
  • 207
  • 4
  • 12
7
votes
3 answers

Multiple endpoints to expose different views of the same resource

I'm struggling to find an answer to this (perhaps because I'm not asking the question properly) ... I'm building API to expose resources for a basic social networking service I'm creating. My understanding is that the structure of URLs in an API is…
apostrophedottilde
  • 867
  • 13
  • 36
7
votes
2 answers

Instagram API get bulk objects by comma separated IDs

I have a simple application where I have a bulk Instagram object ids. I'm looking for an API, from where I can send the ids as a comma separated string or in a similar fashion and get a list of Instagram objects. I'm unable to find an endpoint in…
Visahan
  • 1,130
  • 2
  • 14
  • 35