chsab420 0 Newbie Poster

hello guyz,

i am new here thought might be helpful to post here. so here it goes

i have classic asp page who will call web services and display results

now the problem is that
i can login into the web service and logout as well which does not give or i dont have to process any kind of output

but if i call any other methods they are executed but the result which came, i cant see
i mean i assign it to a variable
when i check its typeName it says "Object()"
when i check that whether its array or not then it says "Is Array"
but the problem is that i cant use any of results

it is soap enveloped xml or something like that
i am newbie to web services, so please help me in this
code is as follows

Set oSOAP = Server.CreateObject("MSSOAP.SoapClient30")
    oSOAP.ClientProperty("ServerHTTPRequest") = True
    'Initaialize the Web Service
    oSOAP.mssoapinit("http://buergerserviceschul.niedersachsen.de/modules/id/public/webservice/V4_00/rpc_enc/?wsdl")
	'str = oSOAP.getAnliegenkategorien("mySesionId here","",true,"BS",NOW())
	res = oSoap.getGebietsTypen(session("id"))
	str = ubound(res)
	response.Write(str & "<BR>")

gives upper bound

but i cant use
res(0) or res(1)
neither two dimentional
res(1,1)

please help me
thanks in advance