This Blog is first of all memos for me!! From time to time I get exposed to new and cool stuff for developers and architects ,most of the time its a solution for a problem or tips or tricks, so, I would like to track my memos and share it with you, it can save your time and nervous, I hope you will enjoy it - by Yaniv Tzanany.
Search This Blog
Sunday, June 16, 2013
Saturday, June 8, 2013
IIS Express - access from android while debugging
i am working on end to end project , need to build the android UI and the web services.
while building the webservice via .NET i wanted to test them via my device connected to my usb.
i noticed i failed to access the IISEXpress ,only localhost works.
i couldn't use localhost on my url , i get an error.
one of the solution is to use my ip (in the local domain 10.0.0.5),
but i get access error HTTP/1.1 400 Bad Request
i follow this link
http://stackoverflow.com/questions/5433786/configure-iis-express-for-external-access-to-vs2010-project/5438322#5438322
and this
http://stackoverflow.com/questions/7877523/how-to-allow-iisexpress-to-listen-internet
and i decided to change the next file (win 7)
%userprofile%\documents\iisexpress\config\applicationhost.config
i change the next line - under my project (replace localhost with 10.0.0.5)
<binding protocol="https" bindingInformation="*:44300:10.0.0.5" />
and my android managed to consume the service
enjoy
yaniv tzanany
while building the webservice via .NET i wanted to test them via my device connected to my usb.
i noticed i failed to access the IISEXpress ,only localhost works.
i couldn't use localhost on my url , i get an error.
one of the solution is to use my ip (in the local domain 10.0.0.5),
but i get access error HTTP/1.1 400 Bad Request
i follow this link
http://stackoverflow.com/questions/5433786/configure-iis-express-for-external-access-to-vs2010-project/5438322#5438322
and this
http://stackoverflow.com/questions/7877523/how-to-allow-iisexpress-to-listen-internet
and i decided to change the next file (win 7)
%userprofile%\documents\iisexpress\config\applicationhost.config
i change the next line - under my project (replace localhost with 10.0.0.5)
<binding protocol="https" bindingInformation="*:44300:10.0.0.5" />
and my android managed to consume the service
enjoy
yaniv tzanany
Thursday, June 6, 2013
Wednesday, June 5, 2013
Microsoft Visual C++ Tips and Tricks
Microsoft Visual C++ Tips and Tricks:
"0xCDCDCDCD Allocated in heap, but not initialized
0xDDDDDDDD Released heap memory.
0xFDFDFDFD "NoMansLand" fences automatically placed at boundary of heap memory. Should never be overwritten. If you do overwrite one, you're probably walking off the end of an array.
0xCCCCCCCC Allocated on stack, but not initialized"
"0xCDCDCDCD Allocated in heap, but not initialized
0xDDDDDDDD Released heap memory.
0xFDFDFDFD "NoMansLand" fences automatically placed at boundary of heap memory. Should never be overwritten. If you do overwrite one, you're probably walking off the end of an array.
0xCCCCCCCC Allocated on stack, but not initialized"
Subscribe to:
Posts (Atom)