myGoogleResults

Sunday, February 22, 2009

JavaScript client for e-jabberd (Open Source chat server - chat client)

Below are open source chat server and client suitable for enterprise usage.

Chat Server : ejabberd
http://www.ejabberd.im/

Chat Client : jwchat
http://blog.jwchat.org/jwchat/

Below url explains how to configure ejabberd with jwchat.
http://www.ejabberd.im/jwchat-localserver

Saturday, February 21, 2009

Saturday, February 7, 2009

Sunday, February 1, 2009

Call a WCF Service from Classic ASP

Dim wsdl, moniker, obj

wsdl = GetWsdlFromUrl("http://localhost:8731/Design_Time_Addresses/WcfServiceLibrary1/Service1/?wsdl")

moniker = "service:wsdl=" & wsdl & ", "
moniker = moniker + "address=http://localhost:8731/Design_Time_Addresses/WcfServiceLibrary1/Service1/,"
moniker = moniker + "contract=IService1, "
moniker = moniker + "contractNamespace=http://tempuri.org/, "
moniker = moniker + "binding=WSHttpBinding_IService1, "
moniker = moniker + "bindingNamespace=http://tempuri.org/"


Set objProxy = GetObject(moniker)

Dim str
str = objProxy.GetData("2")
Response.Write(str)




Function GetWsdlFromUrl(strUrl)

Dim winHttpReq, resp

Set winHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1")
resp = winHttpReq.Open("GET", strUrl, False)
winHttpReq.Send

GetWsdlFromUrl = winHttpReq.ResponseText

End Function