Tuesday, June 12, 2007 8:00:35 PM
Mashup, Popfly
What is Popfly? There's a lot of talk about Popfly now. It's a new web application to create Mashups. Mashups is a fusion of information and application based on various web-based sources. A Mashup may for instance link new, video, photo, maps etc together in an integrated application. In Popfly You can easily build and share mashups, gadgets, Web pages, and applications. Popfly consists of two parts:
1. Popfly Creator is a set of online visual tools for building Web pages and mashups.
2. Popfly Space is an online community of creators where you can host, share, rate, comment and even remix creations from other Popfly users.
Popfly builds of the new Microsoft technology Silverlight, which is a crossplatform browser plug-in. It Similar Flash Technology with 3D Impac.
Wednesday, May 9, 2007 2:57:12 PM
.Net 2.0, WSE 3.0, WebService, ASP.NET
...
Hello,
I spent 2 days to get working Webservice .Net 2.0 & WSE 3.0 on IIS5.1 on windows xp, Call from Win Forms.
Tips:
1. IIS5.1 add isapi support for ASP.NET using following Syntax.
1.1 Goto to <Windows>/Microsoft.Net/Framework/V2..../aspnet_regiis.exe -iru.
2. Select on your virtual directory Integration Windows Authentication Propertry on Directory
Security/Edit.
3. In Proxy Class ws.PreAuthenticate=true
e.g
ws = new WebService();
ws.Credentials = System.Net.CredentialCache.DefaultCredentials;
ws.PreAuthenticate = true;
ws.CookieContainer = cookies;
It will get set , You able access webservice from winform.
Monday, April 16, 2007 9:13:10 PM
Tomcat 5.5.20, Jdk6, Appfuse
SEVERE Error Reading Tld Listeners Java Lang Nullpointerexc
SEVERE: Error reading tld listeners java.lang.NullPointerException, the error appears to come from log4j.
I came across this error when reloading a context in Tomcat 5.5.20.
The solution appeared to be to remove commons-logging from WEB-INF/lib of my web app. I'd only added it because Jakarta's HttpClient insisted on it.
Once again, when in doubt, blame commons-logging.