MB Software Solutions wrote:

> I had mentioned how I've successfully used SQLSTRINGCONNECT and SQLEXEC 
> to add a simple audit record from my apps to a web database.  My 
> coworker asked about firewalls and how this might get defeated by them.  
> I concurred, noting that I've seen how ZoneAlarmPro asks the user if he 
> wants to allow the process to communicate with the web (and thus, the 
> user could prevent it).
> 
> He mentioned that web services use the http protocol so they probably 
> had a better chance of getting through the firewalls.  I told him that 
> if that was the case, then the malware folks would probably be writing 
> more and more for web services.
> 
> Your comments appreciated.  The goal is to get a simple audit of 
> software usage amongst our clients spread out through the nation (and 
> Canada).  Like I said, my way is older, but may be prone to firewall 
> blockage.

Use your way, but do it over port 80 or 443. Only the most restrictive 
firewalls out there would block http or https. https is better if you 
want to protect your transmissions from prying eyes.

I do the same thing in my app. There are actually a dozen or so server 
commands that the client can issue, for validating the license, checking 
for updates, checking for messages, etc.

The client uses Python's urllib2.urlretrieve() with an https:// url that 
hits our Apache web server. It then passes control over to our 
mod_python handler to process and return data.

I guess now that you mention it, this is a web service. But I didn't use 
any special tools or XML or SOAP or anything like that.

Paul

-- 
http://paulmcnett.com


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to