vote up -1 vote down star

Hi guys, I would like to ask you for your opinion. It's about solution for our new project. see the details below.

Problem summary - our webapp integrated into client website, as simple as possible integration - need technology independent on environment, possibly only xml, html, javascripts - most of data provided by web services on our side (we are using Net 2.0 or 3.5) - keep security on high level,it includes payments (we are using https as minimum) - no data saved on client side (saved on our side in db), except some config data

So what you think... - Is good idea that we use only web services? - Should we use some kind of remoting (e.g CSLA objects)? then we depends on technology (Net, csla), don't we? - Can we assure enough security as we deal with online payments (e.g. PayPal)?

Any constructive comments most welcome and appreciated.

Cheers, X.

flag

78% accept rate
Please rephrase your post as a question that can be answered. StackOverflow does not welcome open discussions. Its a place for asking questions that can be answered. See site [FAQ][stackoverflow.com/faq] for details – Tahir Akhtar Oct 13 '08 at 19:46

2 Answers

vote up 1 vote down

I would not use REST since is not as secure, unless you're not transmitting sensitive data. I would use SOAP based web-services over SSL for the payment processing.

link|flag
Can you elaborate a bit on what makes SOAP more secure than REST. SSL can be used with both REST and SOAP alike. – Tahir Akhtar Oct 13 '08 at 19:43
vordel.com/downloads/rsa_conf_2006.pdf – Ricardo Villamil Nov 5 '08 at 21:11
vote up 1 vote down

Use XML/JSON for data interchange to avoid platform lock-in of RPC/Remoting.

Consider using REST web-services instead of SOAP to keep read-only operations as simple as possible.

Keep the payments processes separate to be able to offer basic services without SSL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.