473,699 Members | 2,838 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

The Operation has timed-out calling web service

Joe
I'm running XP and Windows 2003 servers.

These calls did work up until a certain point which we can't track back now.
There were no code changes at all to the service.

The service can be called and tested in the browser from the server and it
works fine.

Any suggestions?
Nov 19 '05 #1
4 2004
Hi,

Please give some more info maybe I or someone else can help.

So I am guessing that the timeout occurs on a client that is attempting to
consume the webservice from an application ? Give us a clue of who is the
client and some idea of your architecture (eg who is the server waht is it
running, who/where is the client (local intranet/ internet) what it is
trying to do).
Nov 19 '05 #2
Joe
The web service exposes a method which sends email. The server is remotely
located so therefore the clients are all via internet.

As of now all clients are Win XP with various service packs. The server is a
Windows 2003 standard running IIS.

The connecting client is a C# application. Any time an attempt is made to
consume the service I get the error. If I try and execute the method
directly on the server via IE the method works fine.
"D Maniatis" <d-*************** @g-m-a-i-l.com> wrote in message
news:66******** *************** *******@ureader .com...
Hi,

Please give some more info maybe I or someone else can help.

So I am guessing that the timeout occurs on a client that is attempting to
consume the webservice from an application ? Give us a clue of who is the
client and some idea of your architecture (eg who is the server waht is it
running, who/where is the client (local intranet/ internet) what it is
trying to do).

Nov 19 '05 #3
Joe
Further info - I can also access the service via IE/internet. I can see the
method but of course can't test them. And, VS.NET can create a web proxy for
the service if I give it the URL.

It only seems that a .NET app can't call it.

"D Maniatis" <d-*************** @g-m-a-i-l.com> wrote in message
news:66******** *************** *******@ureader .com...
Hi,

Please give some more info maybe I or someone else can help.

So I am guessing that the timeout occurs on a client that is attempting to
consume the webservice from an application ? Give us a clue of who is the
client and some idea of your architecture (eg who is the server waht is it
running, who/where is the client (local intranet/ internet) what it is
trying to do).

Nov 19 '05 #4
Joe
One more thing I should mention, the service is using port 8013. I don't
know if this makes a difference. Its always been on the same port.

"Joe" <J_no_spam@_no_ spam_Fishinbrai n.com> wrote in message
news:O%******** *******@TK2MSFT NGP11.phx.gbl.. .
Further info - I can also access the service via IE/internet. I can see
the method but of course can't test them. And, VS.NET can create a web
proxy for the service if I give it the URL.

It only seems that a .NET app can't call it.

"D Maniatis" <d-*************** @g-m-a-i-l.com> wrote in message
news:66******** *************** *******@ureader .com...
Hi,

Please give some more info maybe I or someone else can help.

So I am guessing that the timeout occurs on a client that is attempting
to
consume the webservice from an application ? Give us a clue of who is
the
client and some idea of your architecture (eg who is the server waht is
it
running, who/where is the client (local intranet/ internet) what it is
trying to do).


Nov 19 '05 #5

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

Similar topics

1
7018
by: David | last post by:
Hi Below is a copy of the top 5 timed events from my statspack. Don't know how to detect what enqueue waited for what. Don't understand Oracle Documentation's description on how to check V$SESSION_WAIT and V$LOCK. Can anyone help me on how to detect the enqueue wait event? Oracle just said it means waiting to get access database resources but not specifically what resources. Is that memory, freelist or mintran?
4
1433
by: Wilsoch | last post by:
Non-programmer here again because my developer stinks. I'm desperately seeking a solution to this issue: I need something in the open event on my main form that will cause all of the tables to delete after a set period of time (7 days). The database will be run locally on individual user's machines. Also, I have a date format issue because some of the users will have MM/DD/YY, others will have DD/MM/YY on their systems.
2
1630
by: Javaman59 | last post by:
I have a GUI which is monitoring a real-time device. I have several timed actions, such as periodic polling of the device, and indicators which flash for a fixed period. My first implementation of this was to replicate the way I have seen this done before - have one central timed method, which is on a timer tick, and use time variables to keep track of when events are due. I have now realized that I can avoid the timer method, and time...
6
7176
by: genojoe | last post by:
To my surprise, I could not find an easy way to show a timed message with either MessageBox() or MsgBox(). Here is some code that I tried unsuccessfully: Dim t As New Threading.Thread(New Threading.ThreadStart(AddressOf ShowMessage)) t.IsBackground = True t.Start() System.Threading.Thread.Sleep(5000) t.Abort()
2
2150
by: Daniel | last post by:
Hi How do i set a socket to wait for a reply after a set time frame? For example the following scenarios: 1) Give a user 10 seconds to respond after which time send an automatic message to the server from the client to do a default action 2) set a time limit to give the server time to respond before continuing I have a lobby as part of my project and i need the lobby data to be
1
1636
by: GabrielESandoval | last post by:
I am converting powerepoint presentations to images I want to display as slide shows. My questions is I want it so that when a link is clike the slide show opens. The slides will be initially timed but there are also controls so that if they want to go back or advance the images at their own pace. Is this too complicated?? I know how to make a slow that displays images ina times sequence, but Ive never added controls that would stop...
2
3145
by: vide | last post by:
i need help in creating a sort of timed function. my project requires that the user must enter some words in a specified time limit ,sort of a typing speed program where the pgm count how many words you entered in given time. So here i want a code suchn that my cin>> stops waiting for character after ,say 1 minute.please help me. please supply an example code if you can. i am aclass 11 student . this is my project(prestige issue)!!!! thank...
6
1679
by: Hendrik van Rooyen | last post by:
Hi, I want to do the equivalent of the after thingy in tkinter - setting up in effect a timed call back. My use case is as a "supervisory" timer - I want to set up an alarm, which I want to cancel if the expected occurrence occurs - but its not a GUI app. My googling gets a lot of stuff pointing to optparse...
2
2565
by: Thomas Ploch | last post by:
Hello folks, I am having troubles with implementing a timed queue. I am using the 'Queue' module to manage several queues. But I want a timed access, i.e. only 2 fetches per second max. I am horribly stuck on even how I actually could write it. Has somebody done that before? And when yes, how is the best way to implement it? Thanks, Thomas
12
4306
by: owestcot | last post by:
I'm working on a simple video game program that will require timed responses. The easiest example I can think of would be something like: char ans; // answer to question (can't remember the variable type) starttime; //when clock starts, I'm at work and don't have access to my C++ (same story, when I get home, I'll fix this) timer; // makes sure person does go over time limit cout<<"Press choose your answer shown on the screen...
0
9032
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8905
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
8880
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...
1
6532
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4373
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...
0
4625
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3053
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
2342
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2008
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.