Re: Cannot Retrieve Request Parameter

2006-11-09 Thread Robert Harrison
Chris, Thanks for your generosity. I'll give your suggestions a whirl. Bob On 11/9/06, Christopher Schultz <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Robert, Robert Harrison wrote: > Here is a truncated version of makeparms. > >String separator = new St

Re: Cannot Retrieve Request Parameter

2006-11-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Robert, Robert Harrison wrote: > Here is a truncated version of makeparms. > >String separator = new String("&"); >StringBuffer parms = new StringBuffer(); >String desc = props.getString("credit.card.description"); >St

Re: Cannot Retrieve Request Parameter

2006-11-09 Thread Robert Harrison
Chris, Thanks for your suggestions/questions. Here is a truncated version of makeparms. private StringBuffer makeParms(UserVO userVO, CreditCardForm creditCardForm, ResourceBundle props) { // variables for cc vendor String separator = new String("&"); StringBuffer parms = ne

Re: Cannot Retrieve Request Parameter

2006-11-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Robert, Robert Harrison wrote: > CreditCardPaymentAction >StringBuffer parms = makeParms(userVO, creditCardForm, props); >sendRequest(conn, parms); > private void sendRequest(HttpURLConnection conn, StringBuffer parms) >{ >

Cannot Retrieve Request Parameter

2006-11-08 Thread Robert Harrison
I am trying to post a payment to a vendor and receive a response from the vendor that the payment has been received. Servlet "CreditCardPaymentAction" posts the payment information to the vendor and returns null. The postback url is "http://xxx/CreateUser.do"; which maps to the "CreateUserAction"