Reputation: 127
I have a query string parameter with various value lengths varying between 56 and 378 characters with the data it may currently hold. I have to limit it to 64 characters but keep the data on two apps. I have no control over app 2. Values should be passed to get parameters in urls to make the two apps communicate on certain events. I believe it should work like this:
What is the best method to achieve this?
Upvotes: 0
Views: 354
Reputation: 22
I know i may not directly address your question but communication between two application using GET is not the best way to approach the problem. far from it. You could be interesting in a tool like message broker, like http://www.rabbitmq.com/tutorials/tutorial-one-php.html
Upvotes: 1