Questions tagged [server-to-server]

Communications between a server and server.

85 questions
0
votes
1 answer

Recieving Blank/No Response to Status Update Notification(statusUpdateNotification) from Apple Server - PHP v5.4.43

We have set up a URL in the app profile in iTunes and our server has cleared the ATS security criteria. Following are the codes that we have tried to implement : $data = json_decode(file_get_contents('php://input'), true); $fp =…
0
votes
1 answer

Allowing GET requests only from specified server IP

I want to update records in a database through an api.php. I do this by sending GET requests to the API on the server from another particular server. I tried limiting CORS to only that specific server, but GET requests were still accepted from the…
0
votes
1 answer

How to get pem file in js file

I am new to javascript. I am trying to implement OAuth 2.0 for Server to Server Applications for that i am using this library. So while i was doing this googleAuth.authenticate( { email: 'my.gserviceaccount.com', keyFile:…
FaisalAhmed
  • 3,469
  • 7
  • 46
  • 76
0
votes
1 answer

Receive an http post from an external server with servlet

on my public web application running on JBoss 5 with Java 6 I need to implement something that receive an http post from another external server with some parameters (server to server call) . The server that call me doesn't need an answer, just…
Mic P.
  • 1
0
votes
0 answers

Google Calendar Server to Server

I use to make appointments a calendar based on FULLCALENDAR with backup of the rdv in a database mysql on my own local server. So far, so good. I wish I could synchronize the rdvs thus taken, on the google calendar and inversely be able to import…
0
votes
1 answer

Webservice between a TLS 1.0 server & TLS 1.1 server

So i think i know the answer to this but wanted to check. If i allow customers/supplier to send orders via a Webservice and/or http post and my server is running TLS 1.0 and i upgrade to TLS 1.1/1.2 and the customers/suppliers are still using TLS…
Rusty
  • 113
  • 1
  • 7
0
votes
1 answer

Remote X-Debugging PHP stuck while Server-2-Server communication

I am developing a web service using PHP, which will fetch data through a curl-call from a foreign website. For developing, I use an Apache Webserver with PHP on a raspberry pi in my local network (call it Server A). For testing purposes, I've also…
0
votes
1 answer

Transfer Files from one cloud storage to another

How to transfer files from one cloud storage to another. The files are CSV. Where is the best place to start in relation to this problem? For the time being the file just needs to transfer the files every week via manual execution. Eventually the…
Kieran Lyons
  • 47
  • 2
  • 8
0
votes
0 answers

Google Analytics / Realtime: Need Help Setting up a Server-to-Server API

I will tell you straight away that I am not very experienced with php, so I kinda need help on this one since the manuals of Google are confusing to me. What exactly do I need to create a PHP file that can just communicate server-to-server with GA…
nik1337
  • 73
  • 1
  • 6
0
votes
1 answer

set input value to file located on server

Ok im really new to amazon s3 just created my account today. im tring to upload files from my server to my S3 account via POST Proposal. i got at working form that has a input type file but i dont wanna select file form my computer. i want to create…
dlaurent86
  • 2,115
  • 3
  • 14
  • 12
0
votes
1 answer

symfony 2 oauth protected api server to server

I'd want to create a set of API secured with Oauth2 protocol in Symfony 2.8. OAuth server is implemented with FOSOAuthServerBundle and resides in the same server as API set. Client Applications should communicate with API server through…
Matteo Rossi
  • 443
  • 5
  • 12
0
votes
1 answer

How i can use cer with private key or ( PKCS#12 ) for connect with special server

I have a certificate file(cer) sent in response to my request for a certificate and my private key . How can I use it for authentication and encryption for the connection. If I do not have , you can add to it. Sorry if this is a stupid question . I…
ggoha
  • 1,996
  • 3
  • 23
  • 31
0
votes
1 answer

XMPP server-to-server routing inside a domain

I'm learning about Instant Messaging system and read about XMPP(RFC6120,6121,6122). These documents refer to client-to-server and server-to-server communication(using domain name), but they don't say about server-to-server routing in a domain. Can…
Ikarus
  • 1,169
  • 4
  • 14
  • 28
0
votes
1 answer

XMPP Server-to-Server for Gmail.com/Jabber.org

I'm in the phase of implementing the server-to-server communication part of a XMPP Server. I'm testing my implementation with Gmail.com and Jabber.org but both seem to use the dialback protocol. Does anyone know more information about this protocol…
fabiopedrosa
  • 2,521
  • 7
  • 29
  • 42
0
votes
1 answer

Fastest server to server communication solution

i want to provide my one API to other company's server which will return a unique token number generated at my end and in response to that call, i will return the token number. Should i use REST Web Service or Servlet for direct URL hit? or any…