Click here to Skip to main content
15,911,711 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Versioning. Pin
kubben24-Mar-07 2:42
kubben24-Mar-07 2:42 
GeneralRe: Versioning. Pin
siddisagar25-Mar-07 18:45
siddisagar25-Mar-07 18:45 
GeneralRe: Versioning. Pin
Sam.M25-Mar-07 19:00
Sam.M25-Mar-07 19:00 
Questionregarding adRotator [modified] Pin
raj@code24-Mar-07 1:49
raj@code24-Mar-07 1:49 
AnswerRe: regarding adRotator Pin
gauthee24-Mar-07 2:38
gauthee24-Mar-07 2:38 
GeneralRe: regarding adRotator Pin
raj@code24-Mar-07 2:59
raj@code24-Mar-07 2:59 
GeneralRe: regarding adRotator Pin
kubben24-Mar-07 14:08
kubben24-Mar-07 14:08 
QuestionAsynchronous web service access problem. Pin
AmitChampaneri24-Mar-07 1:30
AmitChampaneri24-Mar-07 1:30 
I have created one very simple web service say helloWorld which accepts one string and concate with "Hello" word.and its located in my localhost only.

Here is some behavour with it.
(1) i can access this web service synchronously without an issue.like

Dim webServ As New localhost.Service
Response.Write(webServ.HelloWorld(TextBox1.Text))

(2)now i am trying to call it asynchronously. Like this

Dim ar As IAsyncResult = webServ.BeginHelloWorld(TextBox1.Text, Nothing, Nothing)
While (True)
If ar.IsCompleted Then
Exit While
End If
End While
Response.Write(webServ.EndHelloWorld(ar))


(3) Now this code is executes file on the other machine i have ,but is not been able to call on my machine.I am receiving following error on the execution of above code.

The attempted operation is not supported for the type of object referenced

" at System.Net.Sockets.Socket.get_ConnectEx()
at System.Net.Sockets.Socket.BeginConnectEx(EndPoint remoteEP, Boolean flowContext, AsyncCallback callback, Object state)
at System.Net.Sockets.Socket.UnsafeBeginConnect(EndPoint remoteEP, AsyncCallback callback, Object state)
at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception)"

System.Net.WebException = {"Unable to connect to the remote server"}

(4) i done long googling but could'nt get the exact solution.

(5) I also tried by removing my framework 2.0 ,visual studio 2005 and IIS as well.

(6) Some blogs says its network error,i also tried by repairing my network drivers but problem persists as it is.

(7) Some blogs also suggested that i do have third party network protocols and that may causes the blocking of Http Request for async. call.then i also removed all such softwares from my machine,but the same result.

I am very frustated with this issue and hampered my development.
Any kind of help is most welcomed.
lots thanks in advance.


QuestionCheckbox bei Firebird + ASP.NET Pin
Terppe24-Mar-07 0:11
Terppe24-Mar-07 0:11 
AnswerRe: Checkbox bei Firebird + ASP.NET Pin
Sun Rays24-Mar-07 1:20
Sun Rays24-Mar-07 1:20 
Questioncan we write a regular expression to check string ... Pin
yogita charhate24-Mar-07 0:09
yogita charhate24-Mar-07 0:09 
AnswerRe: can we write a regular expression to check string ... Pin
Sandeep Akhare24-Mar-07 0:21
Sandeep Akhare24-Mar-07 0:21 
Questionconversion error from string "BLOB" Firebird Pin
Terppe24-Mar-07 0:01
Terppe24-Mar-07 0:01 
AnswerRe: conversion error from string "BLOB" Firebird Pin
Sun Rays24-Mar-07 1:22
Sun Rays24-Mar-07 1:22 
Questionfill data in datagrid basing on conditin Pin
K.R.Neelima23-Mar-07 22:20
K.R.Neelima23-Mar-07 22:20 
AnswerRe: fill data in datagrid basing on conditin Pin
kubben24-Mar-07 2:48
kubben24-Mar-07 2:48 
Questionhoe to implement contact import in ASP.net Pin
yogita charhate23-Mar-07 21:06
yogita charhate23-Mar-07 21:06 
AnswerRe: hoe to implement contact import in ASP.net Pin
RatanKr23-Nov-10 20:16
RatanKr23-Nov-10 20:16 
Questionhoe to implement contact import in ASP.net Pin
yogita charhate23-Mar-07 21:06
yogita charhate23-Mar-07 21:06 
Questionattempted to read or write protected memory.this is often an indication that other memory is corrupt Pin
Piyush Vardhan Singh23-Mar-07 20:25
Piyush Vardhan Singh23-Mar-07 20:25 
AnswerRe: attempted to read or write protected memory.this is often an indication that other memory is corrupt Pin
Sandeep Akhare24-Mar-07 0:37
Sandeep Akhare24-Mar-07 0:37 
Questionmemory Pin
sra2223-Mar-07 20:24
sra2223-Mar-07 20:24 
AnswerRe: memory Pin
M A A Mehedi Hasan23-Mar-07 21:08
M A A Mehedi Hasan23-Mar-07 21:08 
GeneralRe: memory Pin
sra2224-Mar-07 0:10
sra2224-Mar-07 0:10 
GeneralRe: memory Pin
Sandeep Akhare24-Mar-07 0:29
Sandeep Akhare24-Mar-07 0:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.