Muchas gracias Andres por tu respuesta, estoy leyendo tu aporte, mientras tanto, aca te dejo el código ejemplo del metodo POST.
Estos son en XML Request Código PHP:
POST /indicadoreseconomicos/WebServices/wsIndicadoresEconomicos.asmx/ObtenerIndicadoresEconomicosXML HTTP/1.1
Host: indicadoreseconomicos.bccr.fi.cr
Content-Type: application/x-www-form-urlencoded
Content-Length: tcIndicador=string&tcFechaInicio=string&tcFechaFinal=string&tcNombre=string&tnSubNiveles=string
Respond Código PHP:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://ws.sdde.bccr.fi.cr">string</string>
Ejemplo con los datos reales (XML) Código PHP:
POST /indicadoreseconomicos/WebServices/wsIndicadoresEconomicos.asmx/ObtenerIndicadoresEconomicosXML HTTP/1.1
Host: indicadoreseconomicos.bccr.fi.cr
Content-Type: application/x-www-form-urlencoded
Content-Length: tcIndicador=317&tcFechaInicio=27/09/2011&tcFechaFinal=27/09/2011&tcNombre=A&tnSubNiveles=N
Estos son en data set Request Código PHP:
POST /indicadoreseconomicos/WebServices/wsIndicadoresEconomicos.asmx/ObtenerIndicadoresEconomicos HTTP/1.1
Host: indicadoreseconomicos.bccr.fi.cr
Content-Type: application/x-www-form-urlencoded
Content-Length: tcIndicador=string&tcFechaInicio=string&tcFechaFinal=string&tcNombre=string&tnSubNiveles=string
Respond Código PHP:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<DataSet xmlns="http://ws.sdde.bccr.fi.cr">
<schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>
Ejemplo con los datos reales (Dataset) Código PHP:
POST /indicadoreseconomicos/WebServices/wsIndicadoresEconomicos.asmx/ObtenerIndicadoresEconomicos HTTP/1.1
Host: indicadoreseconomicos.bccr.fi.cr
Content-Type: application/x-www-form-urlencoded
Content-Length: tcIndicador=317&tcFechaInicio=27/09/2011&tcFechaFinal=27/09/2011&tcNombre=A&tnSubNiveles=N
Mientras sigo investigando.
Cualquier ayuda es bienvenida