I am triying to use node-red contrib soap library but there isnt enough example to understand.I want to use WSDL service as a local file from pc directory.I couldnt extract methods.What am I supposed to do?
at least search for it...on their github page are documented steps to go
Related
So I'm trying to deploy a Laravel app to azure and it worked fine at the start. In this project, I need to use SOAP so I included the SoapWrapper package in my Laravel app. When however I try to deploy it to Azure after adding SoapWrapper, I get the following message:
This says that the soap module and the PHP version are not compatible. However, when I ssh into my Linux server and grab the PHP API I get the same one as the one of the modules:
I am kind of lost on how to fix this and why this happens.
Also, the path
/opt/php/7.3.27/ini/php.ini
which is stated on the first picture doesn't exist in my linux server.
Any help or suggestions?
I got it working from here https://github.com/paytm/paytm-pg-node-sdk-sample/blob/master/javascript/DemoApp.js I used this in express and it is working but now I want do it from react and payment has to be done from frontend.
I was also wondering how I can do that, then I tried the youtube video mentioned by Robokishan, But I found that things were not that good. As we use Reactjs we don't want to redirect our user to another page. So I contacted the Paytm dev support team and they suggested js checkout solution.
Let me go through the steps you can use to implement it in your react app
You have to create a transaction token in your backend. This link will help you with that: https://developer.paytm.com/docs/api/initiate-transaction-api/
Then go to this GitHub repo https://github.com/paytm/paytm-blink-checkout-react just download it and extract it here you will find two folders 1st named lib and 2nd example. You don't need the lib folder as you can install that package from npm so just ignore it.
Now install the package mentioned above in your react project https://www.npmjs.com/package/paytm-blink-checkout-react
Now to go that download repo go to example/src/component/app.js here you will find all the codes you need to implement Paytm gateway in your code just copy it and modify it as your need
Please feel free to suggest some improvement or if you have any other better solution
You can use paytm blink checkout solution as you already integrated node sdk for backend.
Please refer the link blink checkout available on developer section of paytm.
Sample code for react is available on github for blink checkout.
https://github.com/paytm/paytm-blink-checkout-react
I have a question on NodeJs. I am developing a customer application that needs to send some SMS notifications to my clients. Now I am looking for an open source NodeJs SMS server that will allow my application to send SMSs to my customers. Please suggest any working open source SMS server that supports NodeJs. Please I have tried to search around I have heard of RapidSMS and Kannel while Kannel have a very long documentation which is hard to understand. I need one that supports NodeJs and works on windows server/ but it can be Linux if thats the case. Thanks in advance.
As long as you are using npm you should be able to use any of the following providers: (Does not matter whether you run it on Windows Server or Linux)
https://www.nexmo.com/
A free option to try out: https://www.codementor.io/nicks/send-a-tex-sms-using-node-js-a084719np
I want to use web push notification using onesignal. I create account on onsignal.com and i follow the steps (I choose chrome web push). But on step six is "Upload OneSignal SDK file". I download the files and i read the documentations but i couldn't understand it. I am using web app created on node js. Bellow I put the link of step 6 from OneSignal documentations.
https://documentation.onesignal.com/docs/web-push-typical-setup#section--span-class-step-step-6-span-upload-onesignal-sdk
Any help please. Thank you.
Actually it was simple, I was just confused and forgot some terms on node js. After some fight i fix it.
I just need to put the Unzipped file in my working directory (main root). Then make it publicly available. Simply like this, then it works.
app.use(express.static(path.("foldername")));
I am working on a project, where my application need to generate a report. So I searched for the library that generate report for me and I got "JSreport". Then I started to dig that to get dirt with that.
Now, my requirement is that the application which I'm gonna develop has to be stand alone, but as per my understanding with JSreport, it needs a server to generate a report(i.e. my application has to communicate with the server of JSreport to generate the report), but my application has to work offline. So I am worried about it.
Is there a way to make it work offline without any server? If so, please help me to come-out of this. Or please suggest me a good report generating library that will satisfy my requirements.
Note: My application gonna be with nodejs and electronjs, so please suggest the libraries related to those languages.
Thanks in advance!
You can try set up a local JSReport server from you application.
You should be able to communicate with it sending requests to localhost:${port}. It doesn't require to have internet connection.
See https://jsreport.net/on-prem