Although it is not the most common use of it, it is possible to host a Windows Form Control in a Web Page and run it from within Internet Explorer. This allows to build powerful client side functionality with all the advantages of using the .Net framework and executing the control in the client side. Of course there are some restrictions that cannot be left aside. At least the .Net framework must be installed on the client for the control to run. In addition, it is possible that some permission must be granted to the control, too, depending on the actions the control will take on the client machine.
for the sample code and the rest of this article , follow the next link
Hosting a Windows Form Control in a web page
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
Saturday, August 9, 2008
Accessing server side from client side via XMLHTTP
I find out a very good article , with sample included .
That shows how to access server side from client side, via XMLHTTP object.
This sample with asp page.
Enjoy
XMLHTTP ActiveX objects offer alternative to accessing ASP session variables
That shows how to access server side from client side, via XMLHTTP object.
This sample with asp page.
Enjoy
XMLHTTP ActiveX objects offer alternative to accessing ASP session variables
Monday, August 4, 2008
Find open ports on windows
open DOS command
- Find all open ports -> netstat
- All listening ports -> netstat -an | find /i "listening"
- see what ports your computer actually communicates with -> netstat -an |find /i "established"
- find specified open port -> netstat -an | find /i "8989"
- find open ports and their process ID -> netstat -ao | find /i "listening"
Sunday, August 3, 2008
Add definition to web sphere JVM
Adding params (-D) to the jvm run time done via admin console
go to :
Application servers > server1 > Process Definition > Java Virtual Machine > Custom Properties
and add your parameter .
go to :
Application servers > server1 > Process Definition > Java Virtual Machine > Custom Properties
and add your parameter .
Web services links
some links about creating and consuming web services , that i used tham recently.
http://www.artima.com/lejava/articles/threeminutes2.html
http://www.inf.fu-berlin.de/lehre/SS03/19560-P/Docs/JWSDP/tutorial/doc/JAXRPC3.html
http://www.ibm.com/developerworks/webservices/library/ws-javaclient/index.html
http://edocs.bea.com/wls/docs70/webserv/client.html#1024463
http://edocs.bea.com/wls/docs92/webserv/client.html#1024463
http://www.ibm.com/developerworks/library/x-tipjaxrpc/index.html
http://www.xmethods.net/ve2/index.po
http://www.artima.com/lejava/articles/threeminutes2.html
http://www.inf.fu-berlin.de/lehre/SS03/19560-P/Docs/JWSDP/tutorial/doc/JAXRPC3.html
http://www.ibm.com/developerworks/webservices/library/ws-javaclient/index.html
http://edocs.bea.com/wls/docs70/webserv/client.html#1024463
http://edocs.bea.com/wls/docs92/webserv/client.html#1024463
http://www.ibm.com/developerworks/library/x-tipjaxrpc/index.html
http://www.xmethods.net/ve2/index.po
Subscribe to:
Posts (Atom)