473,656 Members | 2,921 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SOAP Toolkit 3.0 client not using timeout

I am using MS SOAP client provided with SOAP Toolkit 3.0. I have set the
timeout for this application to 20 seconds.
On some occasions, when there are network problems and the call to the
webservice is not able to complete succesfully, the client waits for 50
seconds before returning an error.

I include an example of the code I am using to set this timeout:

dim SOAPClient
dim par_WSDLFile, par_ServiceName , par_Port
dim strParam1, strParam2
dim objResp

par_WSDLFile = "c:\webservice. wsdl"

set SOAPClient = createobject("M SSOAP.SOAPClien t30")
par_ServiceName = "pinService "
par_Port = "PinServicePort "

strError = SOAPClient.msso apinit(par_WSDL File, par_ServiceName , par_Port)

SOAPClient.conn ectionproperty( "timeOut") = 20000

strParam1 = "param1"
strParam2 = "param2"

set objResp = SOAPClient.pinv irtualtrans(str Lote, strBill, strCodTarjeta,
strCodOperacion , strEntidad, strPosition)


Nov 23 '05 #1
2 8232
I am sorry for teh mistake, but the last line of code should be

set objResp = SOAPClient.pint rans(strParam1, strParam2)
"Jose Maestro" wrote:
I am using MS SOAP client provided with SOAP Toolkit 3.0. I have set the
timeout for this application to 20 seconds.
On some occasions, when there are network problems and the call to the
webservice is not able to complete succesfully, the client waits for 50
seconds before returning an error.

I include an example of the code I am using to set this timeout:

dim SOAPClient
dim par_WSDLFile, par_ServiceName , par_Port
dim strParam1, strParam2
dim objResp

par_WSDLFile = "c:\webservice. wsdl"

set SOAPClient = createobject("M SSOAP.SOAPClien t30")
par_ServiceName = "pinService "
par_Port = "PinServicePort "

strError = SOAPClient.msso apinit(par_WSDL File, par_ServiceName , par_Port)

SOAPClient.conn ectionproperty( "timeOut") = 20000

strParam1 = "param1"
strParam2 = "param2"

set objResp = SOAPClient.pinv irtualtrans(str Lote, strBill, strCodTarjeta,
strCodOperacion , strEntidad, strPosition)

Nov 23 '05 #2
I am sorry for teh mistake, but the last line of code should be

set objResp = SOAPClient.pint rans(strParam1, strParam2)
"Jose Maestro" wrote:
I am using MS SOAP client provided with SOAP Toolkit 3.0. I have set the
timeout for this application to 20 seconds.
On some occasions, when there are network problems and the call to the
webservice is not able to complete succesfully, the client waits for 50
seconds before returning an error.

I include an example of the code I am using to set this timeout:

dim SOAPClient
dim par_WSDLFile, par_ServiceName , par_Port
dim strParam1, strParam2
dim objResp

par_WSDLFile = "c:\webservice. wsdl"

set SOAPClient = createobject("M SSOAP.SOAPClien t30")
par_ServiceName = "pinService "
par_Port = "PinServicePort "

strError = SOAPClient.msso apinit(par_WSDL File, par_ServiceName , par_Port)

SOAPClient.conn ectionproperty( "timeOut") = 20000

strParam1 = "param1"
strParam2 = "param2"

set objResp = SOAPClient.pinv irtualtrans(str Lote, strBill, strCodTarjeta,
strCodOperacion , strEntidad, strPosition)

Nov 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
9554
by: mkosca01 | last post by:
Hello, I have recently downloaded and installed the Soap Toolkit 3.0 from microsoft. I have successfully created the example web service DocSample1 and am able to run this from the command line using the following .vbs file. Option Explicit Dim soapClient3
0
2235
by: EagleRed | last post by:
I have written a Web service that I must access from a modified VC++ 6.0 console application. I am using the SOAP Toolkit version 2.0. I am using the HttpConnector, and the SoapSerializer to construct the SOAP envelope for the request. I am able to connect to the Web service and to invoke the call. In the ASP.NET (C# code) I can see the call be made from the client. However, all the input parameters are null. All the calls in the client to...
5
6850
by: mark kurten | last post by:
i have a requirement to send a soap message to a web service. i'm familiar with the soap toolkit using vb. i need to generate a xml document which i think i can do, but i don't know how to send it to this service. i've accessed other web services in .net and usually there are functions i can reference which do the processing and then return some result.
4
7879
by: Mark | last post by:
i have a very simple web servive Imports System.Web.Services <System.Web.Services.WebService(Namespace:="urn:Example1")> _ Public Class Example1 Inherits System.Web.Services.WebService
0
1607
by: Sham Ramakrishnan | last post by:
guys... I have a SOAP service at my clients that I have to use to call the exposed methods... well... there are supposedly 3 ways in which I can look at doing it... 1. Create a proxy for the SOAP service using the WSDL.exe utility and use the proxy directly by creating instances of the proxy class like a SOAP Client. 2. Create a proxy for the SOAP service using the WSDL.exe utility, compile it into an assembly and use the resulting...
0
405
by: Jose Maestro | last post by:
I am using MS SOAP client provided with SOAP Toolkit 3.0. I have set the timeout for this application to 20 seconds. On some occasions, when there are network problems and the call to the webservice is not able to complete succesfully, the client waits for 50 seconds before returning an error. I include an example of the code I am using to set this timeout: dim SOAPClient dim par_WSDLFile, par_ServiceName, par_Port
1
16740
by: LP | last post by:
Hello, I am really hoping someone can help me here. I have a web service running on Win 2003 IIS 6.0, and VB6 client connecting to it with the use of Soap Toolkit. Everything worked fine until I needed to enable Basic Authentication. Now according to this msdn source: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsoap/html/soapsecurity.asp ...
0
4581
by: jimmyfishbean | last post by:
Hi, I have a successful VB6 web service client that uses the SOAP Toolkit 3 to make calls to a web service written in ASP.Net (VB.Net). However, due to Microsoft not recommending the use of SOAP Toolkit 3 on a Windows 2003 server, I must scrap the use of the toolkit and look to develop the client in VB.Net instead. I have upgraded the VB6 application to VB.Net using the built-in upgrade tool that comes with Visual Studio .Net 2003. ...
2
8167
by: Karthik Chavan | last post by:
We have developed a webservice client in C++ using SOAP toolkit. Different requests are sent to the web service sequentially in a loop. Problem is that if one request fails for genuine “TIMEOUT”, all successive request fails with “TIMEOUT”. We have 1,2,3,4 and 5 request in a loop. Request 3 fails for genuine TIME OUT 1,2,3,4,5 - 1,2 - Success 3,4,5 - Failed
0
8380
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8296
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8816
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8497
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8598
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2721
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1928
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1598
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.