Question:
how to write code for ups integration in php with xml?
saravanan b
2006-09-08 21:41:09 UTC
i need to know how to write the code for ups integration to send and receive the data in php with xml
Four answers:
NC
2006-09-11 09:59:52 UTC
First, you need to register with UPS and get a developer key...
macko
2016-11-26 02:38:05 UTC
first of all, i'm mainly a self taught programmer. I discovered early on to take grievance of my code writing habit as meant ... gaining expertise of. I artwork with very well knowledgeable people. a number of them with 2 PhD's. Their coding has been worse than mine after I first began programming some 20 years in the past. it is in countless languages that determination from straightforward, COBOL, FORTRAN, and the comprehensive gamut as a lot as Hypertext Preprocessor, HTML, CSS, XML, etc. i imagine that various programmers write their code questioning that "this code i'm writing now will not be touched as quickly by using the undeniable fact that's operating precise". they're regrettably incorrect. when you're doing code for sophistication, it will be checked for readability and simplicity of interpreting. In different words coding criteria, kind of like we were examined for our favourite writing skills in our before college years. As you know, spacing (both horizontal and vertical) makes code a lot more desirable readable and more desirable uncomplicated to stumble on means mistakes. in spite of everything, this C code: if(!comprehensive) { printf("I basically did somethingn"); x = x + a million; } else { printf("I basically did a thoroughly diverse ingredient because I couldn"); y = y + x; } is a lot harder to ascertain than: if ( ! comprehensive ) {    printf("I basically did somethingn");    x++; } else {    printf("I basically did a thoroughly diverse ingredient because I couldn");    y += x; }
J
2006-09-12 10:38:14 UTC
As mentioned by earlier poster, you need to register with UPS and get a developer key. You do that at http://www.ups.com/content/us/en/bussol/offering/technology/automated_shipping/online_tools.html

You will then have access to the necessary technical documents and support from UPS.
jake cigar™ is retired
2006-09-10 16:49:47 UTC
I had to write that code for perl and got back horrible mime garbage... I think they cleaned it up by now...



you should just have to do a httprequest (put on your ajax hat) and run thru the resultant xml... I bet they do soap too! even easier!


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...