Questions tagged [subscription]

An arrangement to receive something, typically a publication, regularly.

An arrangement to receive something, typically a publication, regularly.

2251 questions
1
vote
0 answers

SSRS Subscription error: Message size exceeds fixed maximum but also doesn't

I have a subscription that has been setup for a long time. It sends an attachment that is approx 11mb in size to an email distribution list. The original subscription runs fine, but when I try create a new subscription on the same report, sending…
SQL_Kid
  • 79
  • 10
1
vote
1 answer

Unable to find the pricing and limit for the server to server notification

While using the server to server notification for checking the subscriber's subscription status I am unable to find the pricing and limit of the server to server notification I have gone through the documentation regarding the server to server…
1
vote
1 answer

Network operations in OPC-UA subscription - how to implement

I'm trying to implement on Python the OPC UA client for equipment, that has 4 measurement channels (pressure sensors) and data readiness flag. The measurement is asynchronous (channels are not synchronized), and fast (5ms sample time). This is why…
1
vote
1 answer

how can I make Flutter graphql subscription work with ferry package?

I have a graphql api with apollo-server. I tested all queries, mutations and subscriptions with Graphql Playground. I am developing the client app in Flutter using Ferry package as grapqhl client. All queries and mutations work fine, but…
1
vote
1 answer

Testing Stripe's trial_will_end webhook

I'm in a bit of a pickle I want to create a webhook listener to Stripe's customer.subscription.trial_will_end event to send a customer an email letting them know billing will start and giving them cancellation info, but I can't work out how to test…
Jacob Barrow
  • 631
  • 1
  • 8
  • 25
1
vote
1 answer

How to create a new database in mongoose on each new subscription to an application

I'm trying to develop an application that would allow organizations to track their inventory and margins for the products/services they sell. I've started writing the back-end using NodeJS/Express/Mongoose. However, I'm struggling with the idea of…
sgandolfo
  • 15
  • 4
1
vote
1 answer

When can a .on('changed') event occur when listening for events?

When listening for events in Web3 the listener can sometimes emit a 'changed' event. In the docs in the example code there is a comment explaining that the event should be removed from local database. When observing console.log of 'data' and…
Eternal
  • 303
  • 1
  • 2
  • 16
1
vote
0 answers

Call useSubscription after loading the state value

const {authState,loading:authLoading}=useAuthState(); const { data, loading, error } = useSubscription(USER_NOTIFICATIONS, { variables: { userId:authState.userId} }); In the above code, I am getting Cannot read property…
1
vote
1 answer

Amplify DataStore subscription does not sync when site goes back online

When there are two instances of my app running, and instance A mutates an object while in online mode (with internet connection), instance B detects this and updates accordingly as desired. However, if instance A mutates data in offline mode and…
GNG
  • 1,341
  • 2
  • 23
  • 50
1
vote
0 answers

Bold Commerce Product and Subscription Group Connection

I have an e-commerce site using React js connected with Shopify. I am trying to create a Subscription feature for Products. I am using the Bold Subscription App app. I have installed the app to the Shopify interface. But through the documentations/…
1
vote
1 answer

Mailchimp form sending to the wrong list

A freelancer put a MC signup form on my wordpress blog, but it's sending emails to the wrong audience in MC. I can't ask him to fix it - he installed malware on my site (and Upwork refused to help!) I'm hoping somewhere here can help. This is the…
AlfieLix
  • 11
  • 3
1
vote
0 answers

Why won't mosquitto_sub display my message from mosquitto_pub?

I'm trying to send out a message from mosquitto_pub to mosquitto_sub on the same computer (localhost) The connection seems to be stable, nothing showed up on the debug mode. I've also tried changing both host addresses to "localhost" and changing…
1
vote
1 answer

Subscription in SNS is present and need to use 1 subscription using cloudformation

I have a cloudformation.yaml file and I have added more than 1 subscription using the below script. If I provide all the 3 mail id's it is working as expected and if I add only 1 or 2 mail id's then stack creation is failing. I have 2 questions here…
1
vote
0 answers

Subscription payment window does not launch when trying to buy a subscription

I am using the below library. In-app products work fine in this library, but when I click on subscriptions, nothing happens. What do you think is the problem? Lib : https://github.com/android/play-billing-samples/tree/main/TrivialDriveJava Example…
Mahmut
  • 11
  • 3
1
vote
1 answer

Angular return result of Subscription as Observable

I have a component that upon button click calls a save() method from a StorageManagerService: // component.ts onSaveClick(): void { this.storageManager .save() .pipe(take(1)) .subscribe({ next: (success: boolean) =>…
Spray'n'Pray
  • 190
  • 1
  • 15