Search found 690 matches
- Thu Mar 24, 2016 9:15 am
- Forum: Questions & Answers
- Topic: How to get response from Integrator HTTP POST
- Replies: 8
- Views: 4613
Re: How to get response from Integrator HTTP POST
I think I figured it out. :D I kept reading http://docs.lansa.com/140/EN/LANSA015/#lansa/jsmx_command.htm and was really hung up on the 3rd optional argument about the field definitions. I added the response list to the receive command with_args and it worked! So my lists are defined like this * WOR...
- Thu Mar 24, 2016 8:06 am
- Forum: Questions & Answers
- Topic: How to get response from Integrator HTTP POST
- Replies: 8
- Views: 4613
Re: How to get response from Integrator HTTP POST
Attached are the trace files. I had to sanitize the HTTP_CONTENT and SERVICE files as they have ids and passwords to the remote service. This is the latest version of the code. * ==================================================== * Process ........: DSTCPS * Function .......: DSTC001 * Created on ...
- Thu Mar 24, 2016 6:55 am
- Forum: Questions & Answers
- Topic: How to get response from Integrator HTTP POST
- Replies: 8
- Views: 4613
Re: How to get response from Integrator HTTP POST
Thanks for pointing out the trace stuff. I got the send to give me back a response, when I look at the trace files, I have a HTTP_RESPONSE_CONTENT.html that has the response, in this a transaction id. I am still getting an error on the receive though. Here is a chunk of the service trace log. Create...
- Wed Mar 23, 2016 9:08 am
- Forum: Questions & Answers
- Topic: How to get response from Integrator HTTP POST
- Replies: 8
- Views: 4613
How to get response from Integrator HTTP POST
I am trying to make a HTTP POST request with Integrator and I need to get the response back. The POST is a name value pair and the response is plain text. So I am using the HttpService OutboundNameValue handler. When I am debugging, after I make the call to the JSM command, I can see the response ha...
- Mon Mar 21, 2016 11:58 pm
- Forum: Questions & Answers
- Topic: Using a standard HTML form
- Replies: 9
- Views: 7933
Re: Using a standard HTML form
Hi Danny, Its got to be visual as I have to collect the credit card data from the user then post it to the processor. I can create the form dynamically, via RDMLX or JavaScript. My current thought is to try JQuery for input validation, Handlebars for the form template and a sprinkling of CSS to make...
- Sun Mar 20, 2016 11:14 am
- Forum: Questions & Answers
- Topic: Using a standard HTML form
- Replies: 9
- Views: 7933
Using a standard HTML form
I have a unique use case where I need to POST a html form to a third party, in this case a credit card processor. The form itself must be POSTed to the processor in order to reduce our PCI compliance, so I cannot that data (credit card numbers) up to a server module, then post to the processor. I am...
- Wed Feb 24, 2016 2:03 am
- Forum: Questions & Answers
- Topic: Using Web History for Panel Navigation
- Replies: 4
- Views: 3379
Re: Using Web History for Panel Navigation
Ok, I see what you did there.
I gotta remember about those demo apps, lots of good information in there if you remember to go look for it.
Thanks for the help.
I gotta remember about those demo apps, lots of good information in there if you remember to go look for it.

Thanks for the help.
- Tue Feb 23, 2016 6:43 am
- Forum: Questions & Answers
- Topic: Using Web History for Panel Navigation
- Replies: 4
- Views: 3379
Using Web History for Panel Navigation
Hi, I am spiking out a solution that can use web history to maintain back button support when user "transitions" between panels. TL;DR When adding history, the first "click" of the back button works as expected, but subsequent clicks require two clicks of the back button. I have a web page that is c...
- Tue Jan 26, 2016 2:19 am
- Forum: Questions & Answers
- Topic: Displaying web based images
- Replies: 2
- Views: 3054
Re: Displaying web based images
Ahh, did not realize I could set the FileName to a url.
So that #Image1.FileName := "http://placehold.it/350x150" works just fine.
Thanks.
So that #Image1.FileName := "http://placehold.it/350x150" works just fine.
Thanks.
- Thu Jan 21, 2016 7:48 am
- Forum: Questions & Answers
- Topic: Displaying web based images
- Replies: 2
- Views: 3054
Displaying web based images
On a webpage, what is the best way to display an image on the web? HTML wise I would use the href <img href="http://placehold.it/350x150"/> With the Image control, I don't see anything to specify an URL or HREF. What I have done is use the HTML Container control and write in the image html. Is this ...