I've the following problem,
In server page updateresults.asp, i'm instantiating an SoapClient
Object wich permits invoke seach method of an Object located at Server.
Sometimes all process executes with no problem, but other times I get the
following error message.
Error Type:
SOAP-ENV:Server (0x80070057)
WSDLOperation: Instantiating the dispatch object for method search failed
/Azul/pesquisas/updateresults.asp, line 160
I discover the following error message in IIS logfile. This message was
written by ASP Soap Listener.
SOAP+ERROR: SoapServer.SoapInvoke failed. 006~ASP 0156~Header Error~The HTTP
headers are already written to the client browser. Any HTTP header
modifications must be made before writing page content.SoapSerializer
failed. 200 2869 4611
The ASP listener, .WSML and .WSDL files have been generated using Soap
Toolkit SP2.
My client code is something like that:
dim soapclient, sxml_outFulcrum
set soapclient = Server.CreateObject("MSSOAP.SoapClient")
soapclient.mssoapinit "C:\Azul\SoapSearch.wsdl"
if Err.number <> 0 then
Response.AppendToLog "UpdadeResults -> Init Soap Error -> Description:" &
err.description
end if
sxml_outFulcrum = soapclient.search(oxml_inFulcrum.xml)
if Err.number <> 0 then
Response.AppendToLog "UpdadeResults -> Erro de Soap -> Description:" &
err.description
Response.AppendToLog "UpdadeResults -> Erro de Soap -> FaultCode:" &
soapclient2.faultcode
Response.AppendToLog "UpdadeResults -> Erro de Soap -> FaultString:" &
soapclient2.faultstring
Response.AppendToLog "UpdadeResults -> Erro de Soap -> FaultActor:" &
soapclient2.faultactor
Response.AppendToLog "UpdadeResults -> Erro de Soap -> Details:" &
soapclient2.detail
end if
set soapclient=nothing
set oxml_inFulcrum=nothing
Thanks in Advance
1) Create the SoapClient object
2) Initialize the SoapClient with he WSDL file for the COM component
3) Call a method in the component
It is giving the following error message
----------------------------Error
Start-------------------------------------------
Run-time Error '-2147024891 (80070005)':
WSDLOperation: Instantiating the dispatch object for method ReceiveFileData
failed
----------------------------Error
End---------------------------------------------
NOTE:- This was working perfectly couple of days ago. The only change went
into this was the rebuilding
of the component and the corresponding WSDL and related files.
When I try to do the same stuff through an ASP page, I am getting the
following error message
-----------------------------Error
Start------------------------------------------
Error Type:
SOAP-ENV:Server (0x800A13BA)
Connector - Bad request to the server.
/Xpediator/TDS/Pages/PostMessage/TDS_UIPostMsg.asp, line 810
Browser Type:
Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Page:
POST 22699 bytes to /Xpediator/TDS/Pages/PostMessage/TDS_UIPostMsg.asp
POST Data:
error '80020009'
Exception occurred.
/iisHelp/common/500-100.asp, line 192
----------------------------Error
End----------------------------------------------
Please let me know what to do. Thanks Raj
"Sérgio Silva" <sergio...@novabase.pt> wrote in message
news:uM7xhGoGBHA.2092@tkmsftngp03...