Questions tagged [replay]
124 questions
0
votes
1 answer
kubernetes event replay orchestration
I have an event-sourced CQRS architecture hosted in kubernetes. I have a single writer (the "denormalizer service") that listens to events and writes the denormalized views to a datastore. These views are then served by a separate view service. When…

Marty Young
- 167
- 10
0
votes
1 answer
Preventing Replay Attacks in Google Apigee
We are working on a payment service where we want to make sure that a request to the service is not being replayed, whether on purpose or accidentally. We are going to be using Google Apigee as our API gateway. Is there some policy or configuration…

Westy
- 169
- 2
- 15
0
votes
1 answer
SAML Replay Detection
We have a Java based web application which uses SAML 2.0 for SSO. As part of the SSO we have also implemented Single Logout. Can anyone please share info on how to fix the below issue
User logs into IDP(app1)
User clicks on the link to the…

user1839702
- 33
- 5
0
votes
1 answer
Get number of items in a ReplaySubject with Array Element
I have to use ReplaySubject in my project like that:
let myVariable = ReplaySubject<[MyItems]>.create(bufferSize: myBufferSize)
How can I get the number of items in the array of "MyItems"?

Marjan Basiri
- 184
- 1
- 10
0
votes
1 answer
webview play again btn
I'm using here imageView , when i click on it should show me a video in (linear10) this video is about 4 sec , i need a code that when i click again on the imageView the video should start playing again , every time i clicked on the imageView i need…

amiine
- 3
- 4
0
votes
1 answer
How to record and replay one multicast frame ? attack ACN E1.17
I have been using https://github.com/ottomata/multicast-tester to configure one host to listen to multicast traffic, so that I can capture it with tcpdump. This was the easy part:
ip route add 224.0.0.0/4 dev eth0
multicast-receiver -g 239.255.0.2…

Benoit-Pierre DEMAINE
- 180
- 1
- 9
0
votes
1 answer
How do I make it so the player reactivates on replay?
I am making a really short C# Unity game for a college class I am in and I have created a script for a trap that deactivates my player on contact that also includes a replay button. It all works except when I replay, the player remains inactive.
How…

Cepheron Kalle
- 41
- 3
0
votes
1 answer
Kafka: Republish 24 hours of messages at the time they were initially published
I have logged 24 hours of messages published on kafka (from midnight to midnight).
There are about 1.2 million messages.
Now, for testing purpose, I would like to use these logs to "replay" the messages (i.e., starting at midnight, read the logs…

david
- 309
- 1
- 4
- 15
0
votes
2 answers
iPhone how to stop MPMoviePlayerController is closing at the end?
In my iPhone app, I'm using MPMoviePlayerController to play a movie. I'm hiding all the controls that are by default visible on the movie player. But I placed a "Replay" button over the player control.
At the end of movie, the player is being…

Satyam
- 15,493
- 31
- 131
- 244
0
votes
1 answer
Need Sample code to capture audio in mp3 format and play it using Java
I need to capture audio in mp3 format using Java and was looking for any sample code. Any code that converts wave file into mp3 would also work. The code should work on Windows and Mac. I looked at JLayer but could not find any sample code. I used…

Mona
- 1
- 1
0
votes
1 answer
OpenCL: writing a program to capture API calls (or draw calls)
I was wondering what is the best way to get started to code a middleware that will capture all OpenCL apicalls. I could then write a program to replay the trace on a different system.
I'm assuming this will not need any special hooks in the driver.…

user5555754
- 11
- 2
0
votes
1 answer
Does Oracle's Application Continuity Works only with RAC implementations?
Does Oracle's Application Continuity Works only with RAC implementations or can Also Work for single oracle instance.
I am trying to implement Application continuity for an Oracle db based application which does not have RAC, there is only one…

learner
- 906
- 2
- 10
- 39
0
votes
1 answer
Is reversing debugging possible on OS X
I know on Linux gdb is able to record and replay where a executable stepped to, but till now on OS X the feature hasn't been implemented in gdb (7.10), neither the lldb.
I'm wondering if any tools or projects with similar function are there?

Easton Lee
- 30
- 1
- 5
0
votes
1 answer
Storing and retrieving voice alerts
I want to store a voice messages in voice-table (MySQL) and users should be able to dial a number and get back the stored messages
can you help me with voice recording and playing it back in Twilio?
Is there any limitations on how much recording…

Tapan sarkar
- 47
- 7
0
votes
1 answer
RxScala Observables with replay
I'm trying to understand replay in RxScala. I create an observable like this:
lazy val toyObservable : Observable[Int] = {
val coldObservable : Observable[Int] = intPerSecond
val hotObservable : ConnectableObservable[Int] =…

thund
- 1,842
- 2
- 21
- 31