tags:

views:

59

answers:

1

I'm using ruby's WSDLFactory to create an rpc driver to access the paypoint soap service and i need to see what xml request is being generated is there a way to do this code or should i try and use something like ethereal

A: 

Use wiredump_dev= and/or wiredump_file_base=.

For example, wiredump_dev = STDOUT will output the generated request to the console and wiredump_file_base = "/tmp/soap_log_" will append the generated request to a file named soap_log_method_name_called.log

Teoulas