English 中文(简体)
如何从网络服务方法代码中获得 WS URL
原标题:How to get the WS URL from the Web Service Method code

I ve inherited from a another team a WCF Web Service devloped on .net framework 3.5. When installed on a Sandbox, the WS URL looks like this:

網址: https://< environmentName somesomeWebserviceName 。

执行 WS 时( 运行时间 ), 我被要求从 Web Service 方法代码中获取 URL 。 您知道吗?

我倾向于认为应该有一个环境变量,可以很容易地用来获取 URL。任何贡献都将感激不尽。

谢谢!

问题回答

《操作文稿》已经提供,应当提供你所要查找的内容,特别是:

OperationContext.Current.EndpointDispatcher.EndpointAddress.Uri
var context = OperationContext.Current;
var requestedUrl =  context.IncomingMessageHeaders.To.PathAndQuery;

在 @Michelz的帮助下, 我得以回答我的问题。 这里的代码是:

var context = OperationContext.Current;
string requestedUrl = context.EndpointDispatcher.EndpointAddress.Uri.ToString();

谢谢大家!





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...