473,804 Members | 3,894 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

IpEndPoint is null error

I am trying to use the ANTS Profiling service to profile a .NET web app (on
my machine). I have XP SP2 with the Firewall turned off (my company's
security policy sets this). I have talked to ANTS support, but they have no
idea. The service is running and listening on port 8087 (as expected).

I have tried connected with localhost, my machine name, my ip address, and
always get the same error. The .NET web app runs fine and is also
debuggable (all on port 80). I am using .NET 1.1 I am curious as to why
IPEndPoint address is null:

Here's my log:

Description:
Unable to start profiler - exception details System.Argument NullException:
Value cannot be null.
Parameter name: address

Server stack trace:
at System.Net.IPEn dPoint..ctor(IP Address address, Int32 port)
at System.Runtime. Remoting.Channe ls.RemoteConnec tion..ctor(Sock etCache
socketCache, String machineAndPort)
at System.Runtime. Remoting.Channe ls.SocketCache. GetSocket(Strin g
machineAndPort)
at
System.Runtime. Remoting.Channe ls.Tcp.TcpClien tTransportSink. SendRequestWith Retry(IMessage
msg, ITransportHeade rs requestHeaders, Stream requestStream)
at
System.Runtime. Remoting.Channe ls.Tcp.TcpClien tTransportSink. ProcessMessage( IMessage
msg, ITransportHeade rs requestHeaders, Stream requestStream,
ITransportHeade rs& responseHeaders , Stream& responseStream)
at
System.Runtime. Remoting.Channe ls.BinaryClient FormatterSink.S yncProcessMessa ge(IMessage
msg)

Exception rethrown at [0]:
at System.Runtime. Remoting.Proxie s.RealProxy.Han dleReturnMessag e(IMessage
reqMsg, IMessage retMsg)
at System.Runtime. Remoting.Proxie s.RealProxy.Pri vateInvoke(Mess ageData&
msgData, Int32 type)
at RedGate.Profile r.Engine.Servic eHelper.remove_ Status(StatusEv entHandler
value)
at RedGate.Profile r.Engine.Profil ingSession.Star tProfiler()
at
System.Runtime. Remoting.Messag ing.StackBuilde rSink.PrivatePr ocessMessage(Me thodBase
mb, Object[] args, Object server, Int32 methodPtr, Boolean
fExecuteInConte xt, Object[]& outArgs)
at
System.Runtime. Remoting.Messag ing.StackBuilde rSink.AsyncProc essMessage(IMes sage
msg, IMessageSink replySink)

Exception rethrown at [1]:
at System.Runtime. Remoting.Proxie s.RealProxy.End InvokeHelper(Me ssage
reqMsg, Boolean bProxyCase)
at System.Runtime. Remoting.Proxie s.RemotingProxy .Invoke(Object NotUsed,
MessageData& msgData)
at System.Windows. Forms.MethodInv oker.EndInvoke( IAsyncResult result)
at ?.?(IAsyncResul t )


Nov 16 '05 #1
0 1250

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

Similar topics

0
2367
by: Steven Hilton | last post by:
I am experiencing odd behavior, and I'm hoping someone can explain why it is behaving this way, and how to get around it... When I update a row in a table with a field's data set to NULL, but the table has a NOT NULL restriction on the field, the insert still completes successfully, but transforms the NULL value to an empty string. The preferred behavior would be for mysql to emit and error and not accept the attempt to set a NULL...
7
7058
by: Douglas Buchanan | last post by:
I cannot access certain column values of a list box using code. I have a list box 'lstPrv' populated by the query below. SELECT tblPrv.fkPrvID, lkpCat.CatNm, lkpSrv.SrvNm, lkpCat.pkCatID, lkpSrv.pkSrvID FROM (lkpCat INNER JOIN lkpSrv ON lkpCat.pkCatID = lkpSrv.fkCatID) INNER JOIN tblPrv ON lkpSrv.pkSrvID = tblPrv.fkSrvD These are the columns displayed tblPrv.fkPrvID, lkpCat.CatNm, lkpSrv.SrvNm, lkpCat.pkCatID,
35
9996
by: David Mathog | last post by:
Every so often one of my fgets() based programs encounters an input file containing embedded nulls. fgets is happy to read these but the embedded nulls subsequently cause problems elsewhere in the program. Since fgets() doesn't return the number of characters read it is pretty tough to handle the embedded nulls once they are in the buffer. So two questions: 1. Why did the folks who wrote fgets() have a successful
4
5691
by: James Proctor | last post by:
Hi there, im trying to write a application that has some socket stuff in. Ive only don socket stuff in vb 6 before. In .net i was using IPEndPoint and i want to enter an ip address and port like so: IPEndPoint = New IPEndPoint("192.0.0.01",1000) But its asking for the IPaddress to be a long. How do i convert it or put in an IP address of my choice. Hope someone can help me out.
1
4410
by: BadOmen | last post by:
Hi, This is used in a FAQ and it works fine wile connecting to my computer but I want to connect to an other... Original code: Code: Private _IpEndPoint As New IPEndPoint(Dns.GetHostByName(Dns.GetHostName).AddressList(0), 5124)
1
3505
by: Baldur Norddahl | last post by:
Hi, I just noticed that I could do this: webshop=# create table foo (bar text not null primary key); NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "foo_pkey" for table "foo" CREATE TABLE webshop=# create table foo2 (bar text not null, foreign key (bar) references foo(bar) on update cascade on delete set null);
4
3851
by: Rainer Queck | last post by:
Hi NG, what is wrong with the following code? Sender and Revceiver are of the Type IPEndPoint. //================= bool IsEqual = tlg.Receiver.Equals(aTlg.Sender); if(tlg.Receiver.Address == aTlg.Sender.Address) { if(tlg.Receiver.Port == aTlg.Sender.Port)
3
8653
by: suganya | last post by:
Hi Some professionals already has developed the project using menu. In my company, they have given me task to clear the error in that. It is a script file named as "menubarAPI4.js" which is kept inside the folder "menu_script". The following is the code in this file. var menuOffsetTop=menuOffsetLeft=submenuOffsetTop=submenuOffsetLeft=submenuOffsetRight=0; var Doc=this.document;var standards=Doc.createElement&&Doc.createTextNode?1:0;...
10
2474
by: =?Utf-8?B?R3JlZw==?= | last post by:
I have the following three files. 1. Users.aspx is a webpage that uses the <asp:ObjectDataSourcecontrol to populate a simple <asp:ListBoxcontrol. 2. The UserDetails.cs file creates a Namespace named UserComponents and creates an object named UserDetails. 3. The UserDB.cs file retrieves the actual data from the database. The code below has been condensed and only includes two fields from my datasource. I actually am also retrieving...
0
9589
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
10593
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...
0
10340
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
10329
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
10085
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
7626
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
6858
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4304
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
3
3000
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.