![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi all: I'm running D3NT 7.3.4 with Accuterm 2K clients. I'm looking into some address verification utilities. Several vendors offer some spendy solutions. Our US Postal Service offers a web-based API address verification solution that uses XML. From what I can find in the documentation it appears that they only want me to register for use of their 'http connection dll'. It seems to me that I can build the XML scripts in Pick and launch them through Accuterm. They designed this for use on a business website but I don't need it on our website. I'd like to try to build this connection between D3, the Accuterm client, and the client's web connection out to the USPS's servers. Has anyone done anything like this before? Am I dreamin'? This is where I'm getting my info: http://www.usps.com/webtools/technic....usps.com/web- tools/technical.htm[/url] |
#3
| |||
| |||
|
|
If the post office specs are essentially XML-RPC, go to http://curl.haxx.se/ and download a windows version of Curl. You will probably need the SSL version. You then from pick write out your XML stream to a dos file. Example OPEN "DOS:C:/TMP" TO TMP FILE ELSE STOP ID=SYSTEM(19) XML='<XML>' XML<-1>='<REQUEST>XXX</REQUEST>' XML<-1>='</XML>' WRITE XML ON TMP.FILE, UNIQUE.ID:'.XML' CMND='!curl -d "@c:\tmp\':UNIQUE.ID:'.XML" http://required url' EXECUTE CMND CAPTURING RESULT This is really simple and I wrote it on the fly. But I use Curl all the time to access both normal web sites and XML-RPC based functions. In fact I currently use Curl and just post directly against the USPC web page instead of using the API since when I was looking the API did not support Address correction yet. - Patrick wdavidhicks <member10309 (AT) dbforums (DOT) com> wrote Hi all: I'm running D3NT 7.3.4 with Accuterm 2K clients. I'm looking into some address verification utilities. Several vendors offer some spendy solutions. Our US Postal Service offers a web-based API address verification solution that uses XML. From what I can find in the documentation it appears that they only want me to register for use of their 'http connection dll'. It seems to me that I can build the XML scripts in Pick and launch them through Accuterm. They designed this for use on a business website but I don't need it on our website. I'd like to try to build this connection between D3, the Accuterm client, and the client's web connection out to the USPS's servers. Has anyone done anything like this before? Am I dreamin'? This is where I'm getting my info: http://www.usps.com/webtools/technic....usps.com/web- tools/technical.htm[/url] |
#4
| |||
| |||
|
#5
| |||
| |||
|
|
That is really cool, Patrick. Is there a Linux equivalent of curl? Jeff |
#6
| |||
| |||
|
|
That is really cool, Patrick. Is there a Linux equivalent of curl? Jeff -- Jeffrey Kaufman Key Data Systems Group www.keydata.us 559-432-3832 559-432-4657 fax Western Pacific Supply www.westpacsupply.com 888-WestPac "Patrick Payne" <patrickpayne (AT) yahoo (DOT) com> wrote in message news:b6da8ff0.0310290833.6b4f475 (AT) posting (DOT) google.com... If the post office specs are essentially XML-RPC, go to http://curl.haxx.se/ and download a windows version of Curl. You will probably need the SSL version. You then from pick write out your XML stream to a dos file. Example OPEN "DOS:C:/TMP" TO TMP FILE ELSE STOP ID=SYSTEM(19) XML='<XML>' XML<-1>='<REQUEST>XXX</REQUEST>' XML<-1>='</XML>' WRITE XML ON TMP.FILE, UNIQUE.ID:'.XML' CMND='!curl -d "@c:\tmp\':UNIQUE.ID:'.XML" http://required url' EXECUTE CMND CAPTURING RESULT This is really simple and I wrote it on the fly. But I use Curl all the time to access both normal web sites and XML-RPC based functions. In fact I currently use Curl and just post directly against the USPC web page instead of using the API since when I was looking the API did not support Address correction yet. - Patrick wdavidhicks <member10309 (AT) dbforums (DOT) com> wrote in message news:<3534304.1067392305 (AT) dbforums (DOT) com>... Hi all: I'm running D3NT 7.3.4 with Accuterm 2K clients. I'm looking into some address verification utilities. Several vendors offer some spendy solutions. Our US Postal Service offers a web-based API address verification solution that uses XML. From what I can find in the documentation it appears that they only want me to register for use of their 'http connection dll'. It seems to me that I can build the XML scripts in Pick and launch them through Accuterm. They designed this for use on a business website but I don't need it on our website. I'd like to try to build this connection between D3, the Accuterm client, and the client's web connection out to the USPS's servers. Has anyone done anything like this before? Am I dreamin'? This is where I'm getting my info: http://www.usps.com/webtools/technic....usps.com/web- tools/technical.htm[/url] |
#7
| |||
| |||
|
#8
| |||
| |||
|
|
There are versions for most platforms (linux, aix, freebsd, mac, etc). In fact redhat 7.3 and above have it installed be default (I believe). - Patrick "Jeffrey Kaufman" <jeffreykaufman (AT) sbcglobal (DOT) net> wrote That is really cool, Patrick. Is there a Linux equivalent of curl? Jeff -- Jeffrey Kaufman Key Data Systems Group www.keydata.us 559-432-3832 559-432-4657 fax Western Pacific Supply www.westpacsupply.com 888-WestPac "Patrick Payne" <patrickpayne (AT) yahoo (DOT) com> wrote in message news:b6da8ff0.0310290833.6b4f475 (AT) posting (DOT) google.com... If the post office specs are essentially XML-RPC, go to http://curl.haxx.se/ and download a windows version of Curl. You will probably need the SSL version. You then from pick write out your XML stream to a dos file. Example OPEN "DOS:C:/TMP" TO TMP FILE ELSE STOP ID=SYSTEM(19) XML='<XML>' XML<-1>='<REQUEST>XXX</REQUEST>' XML<-1>='</XML>' WRITE XML ON TMP.FILE, UNIQUE.ID:'.XML' CMND='!curl -d "@c:\tmp\':UNIQUE.ID:'.XML" http://required url' EXECUTE CMND CAPTURING RESULT This is really simple and I wrote it on the fly. But I use Curl all the time to access both normal web sites and XML-RPC based functions. In fact I currently use Curl and just post directly against the USPC web page instead of using the API since when I was looking the API did not support Address correction yet. - Patrick wdavidhicks <member10309 (AT) dbforums (DOT) com> wrote in message news:<3534304.1067392305 (AT) dbforums (DOT) com>... Hi all: I'm running D3NT 7.3.4 with Accuterm 2K clients. I'm looking into some address verification utilities. Several vendors offer some spendy solutions. Our US Postal Service offers a web-based API address verification solution that uses XML. From what I can find in the documentation it appears that they only want me to register for use of their 'http connection dll'. It seems to me that I can build the XML scripts in Pick and launch them through Accuterm. They designed this for use on a business website but I don't need it on our website. I'd like to try to build this connection between D3, the Accuterm client, and the client's web connection out to the USPS's servers. Has anyone done anything like this before? Am I dreamin'? This is where I'm getting my info: http://www.usps.com/webtools/technic....usps.com/web- tools/technical.htm[/url] |
#9
| |||
| |||
|
#10
| |||
| |||
|
|
"TG" <g6q3x9lu53001 (AT) sneakemail (DOT) com.invalid> wrote [stuff] You mis-spelled sneakermail. |
|
And "TG" -- how am I to zoom to your CDP posts each day if you keep changing your From: name? |
![]() |
| Thread Tools | |
| Display Modes | |
| |