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
0
votes
0 answers

Getting a 404 response back from my local host

I've been given a home assignment for a job interview. For me to get going I need to work with an API end point they've provided me but I can't get it running for some reason. It should be straight forward but I keep getting 404 back. This is my…
Tsabary
  • 3,119
  • 2
  • 24
  • 66
0
votes
1 answer

Django: endpoint to reverse status not working

I'm learning and experimenting with DRF. I'm learning actions to create routes (endpoints) to make custom modifications to my models. I succesfully have constructed: deactivate, deactivate_all, activate_all. But not reverse_status, which is meant…
Omar Gonzales
  • 3,806
  • 10
  • 56
  • 120
0
votes
0 answers

How to configure UDP endpoints when client an server are running on different machines connected over P2P connection

I am able communicate UDP packets between a Client and Server running on localhost basically using the below code. #include #include #include #include #include #define…
TheWaterProgrammer
  • 7,055
  • 12
  • 70
  • 159
0
votes
1 answer

How to add datapoint to an alarm in aws cloudwatch in TargetTracking Scaling using the json file?

so I am using the TargetTracking Scaling to scale up my aws sagemaker endpoint by using two commands, which are:- 1. aws application-autoscaling register-scalable-target --service-namespace sagemaker --resource-id endpoint/{}/variant/AllTraffic…
tarun mittal
  • 331
  • 4
  • 13
0
votes
2 answers

Test Spring Boot Actuator Customized Endpoint

I'm trying to test a customized actuator endpoint in springboot. The endpoint is: @Component @RestControllerEndpoint(id = "test") public class TestController { @PostMapping("/1") public ResponseEntity testEndpoint(Request request) { …
Vikki
  • 1,897
  • 1
  • 17
  • 24
0
votes
1 answer

Override micronaut loggers endpoint

In micronaut we have the ability to enable lots of endpoints. Here I'm using the loggers endpoint defined in the application.yml file like this : endpoints: loggers: enabled: true This endpoint will be : http://my.host/loggers Is there a way…
0
votes
1 answer

Add links on Wordpress custom endpoint

I created a custom endpoint for specific data from a custom table in my Wordpress plugin. It get's all the data from the table with the getHelpers() function. After that it will be merged by some user data. I would like to add the profile_image as a…
Emke
  • 91
  • 1
  • 1
  • 4
0
votes
1 answer

WCF VPN endpoint and internet endpoint

The laptops of our company have a WCF sync/client installed which communicates with the Server. The data transfer works as long as they do not connect with the VPN. When they connect with the VPN, I can make the WCF client Sync again if I add the…
0
votes
1 answer

How am I able to read the Request-Body when using endpoint mapping?

Sorry guys this may seem like a novice question but I've never worked with endpoint mapping before and just can't seem to figure it out. So I wrote a service which listens for requests, the body of said request contains a json object which my…
Proximus
  • 5
  • 1
0
votes
1 answer

C# endpoint giving back a nested list of directories and files as JSON

My goal is to implement an endpoint which gives back a nested list of all files and directories starting from a certain root directory, e.g. C:\Temp. I have written the following code: namespace API.Controllers { public class UploadController :…
B--rian
  • 5,578
  • 10
  • 38
  • 89
0
votes
1 answer

Sagemaker Tensorflow 2.0 endpoint

I have a tensorflow 2.0 model I would like to deploy to an AWS sagemaker endpoint. I have moved the model to S3 bucket and executed the following code, but get below error because there is no TF 2.0 image. If I try to deploy with different version…
Phil
  • 177
  • 1
  • 10
0
votes
2 answers

Does helm support Endpoints object type?

I've created the following to objects: apiVersion: v1 kind: Service metadata: name: {{ .Values.serviceName }} namespace: {{ .Values.global.namespace }} labels: chart: {{ template "chartName" . }} env: {{ .Values.global.env }} …
Roman M
  • 8,849
  • 2
  • 15
  • 17
0
votes
1 answer

Access HangFire endpoint from Visual Studio 2019 React template project

Following the guide at https://medium.com/@jamesdale1993/asp-net-core-2-with-signalr-and-react-redux-a-simple-example-c25ea6b19dbe I created a project with Visual Studio 2019 and the react-redux template (core 3.0 project). I got the SignalR up and…
0
votes
1 answer

How to set EndpointReference in WSDL for a WCF service?

I am creating a WCF service from a given WSDL file. Here as per the WSDL, I want to set urn address in EndpointReference address as shown below Example of WSDL:
0
votes
0 answers

How to avoid (or handle) non-existing endpoints in a custom AuthorizationHandler in .net Core 3 Api

I have created my custom AuthorizationHandler. public class VdsAuthorizationHandler : IAuthorizationHandler { private readonly IConfiguration _configuration; private readonly IHttpContextAccessor _httpContext; private…
1 2 3
99
100