Monday 8 June 2015

Convert wsdl file to class file

Steps to convert wsdl file to class file

  • Find the Web Services Description Language Tool (WSDL.exe). This file comes with .net framework. So if you already install .net Framework you will get this exe in you machine. Here is a probable location of wsdl.exe "C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\x64"
  • Go to the exe file location and open command prompt and type below command. "wsdl /out:myProxyClass.cs http://soap.proofhq.com/15_6_0/soap.wsdl". Like wsdl {output class file} {wsdl file path}

Tuesday 19 May 2015

Firefox scrollbar issue based on height

There is a weird problem in firefox regarding scrollbar. If a div heights is 30px or less, then overflow-y  style will not work any more in firefox.
So the resolution is increase the div height, say for example 40px. It will work properly.