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
1 answer

Ruby SDK from Amadeus Flight: Migration from Low-fare Search to Flight Offers Search

I am having trouble with the migration of the Ruby SDK from Amadeus Flight Low-fare Search to Flight Offers Search I'm currently using the Ruby SDK for my student project , and just got the notification about the migration of Amadeus Flight Low-fare…
0
votes
2 answers

WCF UriTemplate to match base address

How I can call an endpoint with the URL address exactly the same as the base address? string localhost = "http://localhost:1387"; ServiceHost restHost = new ServiceHost(typeof(WebService), new Uri(localhost)); …
0
votes
2 answers

ASP.Net CORE request an endpoint and parse random string from the endpoint

this is a first time I'll be using asp.net core so started working on a very simple project to get hands on. The following public API generates a large JSON response of famous quotes. I am trying to query this end point and randomly display one of…
Excited_to_learn
  • 361
  • 3
  • 11
  • 25
0
votes
1 answer

Getting duplicate results on Express API endpoint. How do I reset the search so that I get new results each time?

I'm using Express to create an endpoint so that I can access it with API calls. When I do the search the first time, everything works great, but if I do it again, I get the results from the previous time PLUS the results from the new search. How do…
Nova
  • 69
  • 1
  • 8
0
votes
1 answer

No endpoint mapping found for [SaajSoapMessage

im new using Spring SOAP W. I follow many tutorials and try to adapt my need to this examples, but never work, i had this message: No endpoint mapping found for [SaajSoapMessage {http://ws.veritran.net/vtAuthServer/types}validatePOTCRequest] This is…
0
votes
1 answer

No endpoint mapping found for [SaajSoapMessage , exception during SOAP WS execution

I'm a newbie to SOAP web service development using String. I had followed below process to create a Soap Web service using Spring https://spring.io/guides/gs/producing-web-service/ Error message : 2020-04-27 20:53:31.979 WARN 4860 ---…
0
votes
1 answer

Swagger validation error- request.path should NOT have additional properties

This has to do with all paths that have the "user_id" parameter in them (i.e- all but postUser). When I test these endpoints with Postman I'm getting a 400 with a message of "request.path should NOT have additional properties". I am using a…
Gordon
  • 59
  • 9
0
votes
1 answer

Use CDC-ACM without INTERRUPT endpoint?

We are developing USB device on STM32F7xx FS port. There is a limited number of endpoints (0 control and 5 for data) to use. We want to enumerate our device as 3 CDC-ACM ports. Every USB CDC-ACM has use three endpoints: interrupt data IN. data…
s.paszko
  • 633
  • 1
  • 7
  • 21
0
votes
1 answer

endpoints of RestController

I am developing semestral work with spring-boot and i am struggling about restController and his endpoints. I have controllers for users, teams, tasks, comments etc. For example controller for teams has these endpoints: "/teams" - returns all…
S3jp4kCZE
  • 15
  • 6
0
votes
1 answer

API endpoint works with JSON, not with raw text

I'm hitting an API endpoint with Postman. I put the settings for the body input to raw+JSON and passed the following body: { "a": 1, "b": 2, "c": 3 } This worked fine. However, when I set it to raw+Text and passed a=1&b=2&c=3 it returned the…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
0
votes
1 answer

Set errors from code to xaml after calling a post method

I'm using ValidationRules in my xaml forms like this
Rodo D
  • 13
  • 3
0
votes
3 answers

How should a method/function be exposed using REST?

In the backend I have a method (function) that accepts an optional input of type date and finds the week that day falls in and return the start and end day of that week. an example, if input is 2020/04/14, it will return: { "start" :…
hamid
  • 2,033
  • 4
  • 22
  • 42
0
votes
1 answer

How to Retrieve list of attributes from multiple Firebase nodes

My firebase DB looks like Now I want to query the database such that I take all the users whose email id is in a query list. For example in the above shown database structure, if I want to make a query such that find the users where username in…
Achy97
  • 994
  • 1
  • 14
  • 29
0
votes
1 answer

Add Custom Endpoint in WordPress Rest Api

I want to add custom endpoint in WordPress Rest API.I am able to fetch the post id,title,content,slug,categories and featured_image through this code by creating simple plugin. I am obtained category id in the Code.I want the category name i tried…
Shahryar Rafique
  • 1,211
  • 15
  • 35
0
votes
0 answers

Attribute must be constant when get a value from properties

I am working with Java javax.ws.rs.Path and I am getting the path from the properties. Even though the constant is final static I am the getting Attribute must be constant issue. This is my how I am getting the value of my constant: public static…
rasilvap
  • 1,771
  • 3
  • 31
  • 70