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

Process call based on data

I am trying to build an API (.NET Core 3.1) with a single endpoint. How this call should be processed depends on the data it was send with. I found examples of polymorfism and custom data binding. But feels not right for this example because I want…
M1sterPl0w
  • 193
  • 3
  • 14
0
votes
1 answer

Sending ArrayList as part using Retrofit Android

Trying to send an ArrayList along side an image and other details Getting the list item when a checkBox is selected ArrayList intrest = new ArrayList<>(); switch (buttonView.getId()) { case R.id.business: if…
steveOS
  • 125
  • 1
  • 12
0
votes
1 answer

Sending multiple Async request through socket in c#

I have list of ipaddress. I am using udp protocol to send request to these addressses asynchronously to an snmp agent. The available snmp agent on these address reply. When I call BeginSendTo with these addresses, devices are replying in random…
neelesh bodgal
  • 632
  • 5
  • 14
0
votes
1 answer

How to find which TcpClient had send a message in C#

I created a system to connect a series of TcpClient to a TcpListener and exchange data in a chat-like system. Once the connection is established, the server adds the client to a List, and starts reading the stream waiting for messages. Once the…
0
votes
1 answer

How to release port of CXF-Endpoint gracefully?

I am using CXF to simply publish an endpoint, lets say: final String uri = http://myServiceEndpoint:12345 final Endpoint endpoint = Endpoint.publish(uri, MyService()); After some processing I want to shutdown the endpoint and release the port…
yel
  • 11
  • 4
0
votes
2 answers

Azure Functions, "System.Private.CoreLib: Value cannot be null. (Parameter 'path1'). Value cannot be null. (Parameter 'provider')"

I'm running Azure functions/core tools 3.x, in my Gradle (version 4.6) Java (JDK 1.8) project with azure functions apps. I have a GET endpoint at localhost:7071 at api/devices I am trying to hit, but I keep getting errors running…
ennth
  • 1,698
  • 5
  • 31
  • 63
0
votes
1 answer

Fetching data from mongoose

I'm trying to fetching my data from mongo to the client-side to react. I succeed to set the state of the component to the correct fields from the endpoint API of my DB. But when I want to print my state to see if it is working the console print my…
0
votes
0 answers

AWS VPC Endpoints setting to S3 and DynamoDB

Amazon RDS is set to use VPC. I am trying to configure a VPC Endpoint for an ETL job. When I looked at the documentation to set up the VPC Endpoint, I got this: The source IPv4 addresses from instances in your affected subnets as received by Amazon…
0
votes
0 answers

Create User with Endpoint - Routing error

User must be created from an API endpoint it has only one attribute :nick I sent the Post request with PostMan but I have a routing error Here are my routes: resources :users In Users Controller I have new and createaction, like so: def new…
marie
  • 211
  • 1
  • 3
  • 13
0
votes
2 answers

Azure: How to delete a private link service that has a private endpoint connected to it?

When I try to delete a Private Link Service resource in Azure, it shows the error "cannot be deleted since it has 1 private endpoint connections. Please delete all private endpoint connections before deleting the private link service." The private…
0
votes
0 answers

Is it possible to hit an Endpoint from a trigger on an Amazon RDS SQL Server table?

We need a url to be hit when data is updated in an RDS table, hitting a trigger. EXEC sp_OAxx will not work due to RDS security restrictions. https://forums.aws.amazon.com/message.jspa?messageID=876085 Has anybody had this problem and managed to get…
cloudsafe
  • 2,444
  • 1
  • 8
  • 24
0
votes
3 answers

How to GET responde status code from get request?

Hi I am very new to python programming. Here I'm trying to write a python script which will get a status code using GET request. I can able to do it for single URL but how to do it for multiple URL's in a single script. Here is the basic code I have…
Sameer
  • 113
  • 1
  • 4
0
votes
0 answers

Dynamic SPARQL endpoint in the function of the HDT file

Is there some web interface or service in which, for a given a link to one or many HDT files, and a SPARQL query returns the results from the query. A kind of dynamic SPARQL endpoint in the function of the HDT file. In other words: Input: Link to…
0
votes
1 answer

Count number of Tweets from the past 30 days using Twurl

To request tweets from the Standard search API with a specific hashtag, I've done twurl "/1.1/search/tweets.json?q=#jesus" Tht worked fine. Now wanting to use the Premium search APIs to count the tweets from the past 30 days with the hashtag…
Tiago Martins Peres
  • 14,289
  • 18
  • 86
  • 145
0
votes
1 answer

What is the essence of Endpoints in ASP.NET?

I am pretty new to the C# and ASP.NET and now I am trying to understand what does the Endpoint in ASP.NET mean, or what is the essence of this concept, thank you! Example: app.UseMvc(route => { …
lynkewsw
  • 5
  • 3