Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

7
votes
1answer
210 views

Finding the correct baseaddress

I realized that my version of getting the correct baseaddress was wrong Process[] iexp = Process.GetProcessesByName("Solitaire"); if (iexp.Length == 0) { //EXIT } Process internet = iexp[0]; uint ...
7
votes
2answers
2k views

.NET assemblies and DLL rebasing

According to this article rebasing is not necessary for .NET assemblies due to JIT compilation of the code. The article states: "JIT-compiled code does not have a rebasing problem since the ...
5
votes
3answers
2k views

DLLs, memory mapping, base address, memory usage, and .NET?

Before I start with the real question, let me just say that I might get some of the details here wrong. If so, please arrest me on those as well as, or even instead of answering my question. My ...
5
votes
3answers
12k views

Can several WCF services share a common BaseAddress?

I've got an assembly containing several WCF services, each with its own contract. It all works nicely. The service config in the app.config for the service looks like this: <services> ...
2
votes
1answer
2k views

Why does my WCF service not respond my baseAddress setting in web.config?

I'm trying to learn how to build RESTful services with WCF by recreating the project on this blog post by Anthony Steele. He uses the following XML in his config to setup the endpoint for the service. ...
1
vote
1answer
111 views

WCF Client configuration - redirect multiple services to another host

Right now, i have multiple services in my client web.config like this: <endpoint address="http://hostname/ServiceA.svc" binding="wsHttpBinding" ...
1
vote
3answers
1k views

Finding device base address to communicate via inb() and outb()

I am trying to communicate with a disk drive using inb(), inw(), outb() and outw() commands so I can find specific information about the drive. However, to use these commands, I need the correct I/O ...
0
votes
0answers
88 views

c# baseAddress with 64bit

I already know how I can get the baseAddress with 32 bit programs, but if I want to read the baseAddress from a 64 bit program I'll get the following error: A 32 bit process cannot access modules ...
0
votes
1answer
49 views

php:Mod rewrite giving me hard times finding base address.. need help

im new to Mod_rewrite but problem is it ruins all my ajax and php i use windows.location object to get current location for javascript example: var str = location.pathname; ...
0
votes
1answer
1k views

Multiple Base Addresses and Multiple Endpoints in WCF

I'm using two bindings TCP and HTTP. I want to give mex data on both bindings. What I want is that the mexHttpBinding only exposes the HTTP services while the mexTcpBinding exposes TCP services only. ...