开发者

WCF REST Does Not Contain All of the Relative File Path

开发者 https://www.devze.com 2022-12-28 19:48 出处:网络
I have a RESTful WCF 3.5 endpoint as such: System.Security.User.svc This is supposed to represent the namespace of the User class and is desired behavior by our client.

I have a RESTful WCF 3.5 endpoint as such:

System.Security.User.svc

This is supposed to represent the namespace of the User class and is desired behavior by our client.

I have another endpoint I created for testing called:

Echo.svc

I am writing an overridden IHttpModule and in my module, I follow what almost everyone does by doing:

string path = HttpContext.Current.Request.AppRelativeCurrentExecutionFilePath;

If I make a call to:

http://localhost/services/Echo/test

My path variable has a value of '~/echo/test'

However, when I make a call to:

http://localhost/services/System.Security.User/test

My path variable has a value of '~/system.security.user'

In my 2nd situation, it is stripping off the '/test' on the end of any endpoint that contains multiple periods. This is undesired behavior and the only solution I have found to fixing this i开发者_C百科s some ugly string manipulation using the property which does contain the complete URL path:

string rawPath = HttpContext.Current.Request.RawUrl;

This returns '/services/system.security.user/test'.

Does anyone know why my first situation does not return the rest of the URL path for endpoints that contain multiple periods in the name?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号