mount.cifs Centos5 and Windows Server 2003
We were trying to mount a remote directory shared by Windows Server 2003 SP2 machine using CIFS, or Common internet filesystem, from a Linux CentOS5 machine and we couldn’t get it going. So then I went on and scoured info from the net, until finally I stumbled upon all this info. In many post/pages on the net, [...]
Generic Python XML-RPC CLI Client (With apache extension support)
This code snippet is a generic python xml-rpc client that supports custom extensions. This is tested with pytnon 2.6 – usage is as follow: Interactive mode # run the client like so: python client.py –url=http://serverUrl:port/path/to/serverPoint # in interactive mode, you see the CLI interface like so: [timestamp] http://serverUrl:port/path/to/serverPoint xmlrpc >> helloWorld("hello zen") hello zen [...]
apache xml-rpc handling null/nil
If you have used xml-rpc extensively, you will know that one of the most annoying aspect of XML-RPC is the fact that NULL values are not supported as part of the core spec. This is an issue, because NULL is such a key concept in the mainstream languages such as Python, Java and .NET – [...]
Classic ASP: cross domain json-rpc proxy controller
A controller written in classic ASP / VBScript to proxy json-rpc request to a remote service point.
Install/backsync between source and installation directory
Have this script in my collection since few years back, I thought I should share it. #@ #@ ======================================================================================= #@ SYNCINSTALL.SH #@ Zen Sugiarto 25-03-2009 #@ ======================================================================================= #@ This is a simple script to assist in syncing SOURCE DIR TARGET INSTALL DIR: #@ #@ SYNC PUSH – pushes source file INTO installation dir #@ SYNC [...]