Questions tagged [gateway]

This is a vague tag for all kinds of gateways including networks, general interfaces and products, where this term is used with its own meaning. Try to avoid this.

This is a vague tag for all kinds of gateways including networks, general interfaces and products, where this term is used with its own meaning. Try to avoid this.

1201 questions
4
votes
0 answers

api gateways. how are they written and is there guideline for how they interact with its clients.

I've been doing a ton of research on Microservices however I cannot find a single piece of code that is written for an API gateway. I understand that between the clients and services you would have an the API Gateway which allows a client to make 1…
Andrei
  • 1,196
  • 1
  • 11
  • 25
4
votes
2 answers

how to find the default gateway ip address in jsp

I want to find out the default Gateway of client and DNS in jsp. Is there anyway to do that .I have find out IP address but i want to know the default gateway or DNS also. I have done following to find ip of client. String ipAddress =…
nagi
  • 381
  • 2
  • 8
  • 22
4
votes
3 answers

Discovering the default gateway without DHCP

A crazy question, but is there anyway to discover the default gateway without DHCP? This would be for a device on a network which does not use DHCP which does not have an IP address as yet. I was thinking if I could discover the default gateway,…
JavaRocky
  • 19,203
  • 31
  • 89
  • 110
4
votes
2 answers

Is there a way to bridge out SMS via gateway on FreeSWITCH?

I wonder if there is a way to send sms messages out from freeswitch box via a gateway just like bridge api in mod sofia for calls. I can originate and receive calls from a sip provider via an external gateway on freeswitch. Now i need to do the same…
Anis Bedhiafi
  • 185
  • 1
  • 5
  • 22
4
votes
2 answers

Programatically send SMS to email using Verizon Motorola Droid on Android

I was wondering if anyone knew the proper way to send an SMS message to an e-mail address using Verizon's CDMA Motorola Droid phone. The internal messaging application appears to automagically do this. While 3rd party applications like SMSPopup…
Dave
  • 121
  • 3
  • 6
4
votes
3 answers

SMS Application

I just wanted to know is there any free sms gateway for sending SMS. If there is one, how to go on to developing my free sms service/software? Any guidelines please.
Sarfraz
  • 377,238
  • 77
  • 533
  • 578
4
votes
3 answers

Javascript / Jquery Split Variable Into Two for Stripe Integration

I apologize in advance as I am fairly good with PHP, but when it comes to javascript and jquery, I really am a bit clueless. I have the following code, which I edited from the example found here https://gist.github.com/boucher/1750375, and wanted…
Joshua Olds
  • 177
  • 3
  • 11
4
votes
3 answers

Object Oriented Design issue

I have been designing a site locally in PHP 5, but have come across a few design issues I'd like advice now. Currently there are three features of the site and each feature has a class . These features are as follows : a blog a friends list a set…
phpNutt
  • 1,529
  • 7
  • 23
  • 40
4
votes
1 answer

nginx 504 gateway timeout

I tried the suggestions at: How do I prevent a Gateway Timeout with FastCGI on Nginx nginx.conf (inside of http section {}) #prevent gateway timeout client_header_timeout 1000000; client_body_timeout 1000000; send_timeout…
Chris Muench
  • 17,444
  • 70
  • 209
  • 362
4
votes
2 answers

Spring integration gateway methods with multiple parameters

I have a question regarding Gateways and multiple parameters: The context: I would like a Gateway to have two methods: search(Query query, FetchSpec fetchSpec); search(int queryId, FetchSpec fetchSpec); The first method should route directly to a…
4
votes
2 answers

No ARP response from gateway

I'm developing an embedded system that has to communicate with the outside world over 10Base-T ethernet. I have built all functions required to serve web pages, including ARP, IP, TCP, ICMP (ping), HTTP and portions of FTP. Now, I need to build…
3
votes
1 answer

Get gateway address in C/C++

I use ioctl() to set the gateway address (SIOCADDRT with RTF_GATEWAY in the flags). What's the standard ioctl routine to retrieve it?
user788041
  • 81
  • 3
  • 8
3
votes
1 answer

How to send multipart/concatenated SMS to phone using AT command?

I got a computer with a nokia hooked up to it, and using AT Commands I managed to send text messages through my C# program (using TEXT MODE AT COMMANDS, NOT PDU). It's all working fine and I can recieve messages as well. I do wish to be able to send…
Daniel Olsen
  • 31
  • 1
  • 2
3
votes
10 answers

FTP client class for .NET

Anyone know of a good, hopefully free FTP class for use in .NET that can actually work behind an HTTP proxy or FTP gateway? The FtpWebRequest stuff in .NET is horrible at best, and I really don't want to roll my own here.
claco
  • 739
  • 1
  • 8
  • 18
3
votes
1 answer

Spring Cloud Gateway Azure User token verification

For my backend of few microservices I have API gateway (Spring Cloud Gateway) where I wanna verify if azure token user send from frontend is valid befor routing microservice. So far I get only 401 response whether I add valid token or not. My…