Wednesday, December 31, 2008
Monday, December 22, 2008
SubWeaver - Dirrectly checkout from dreamweaver to google code subversion using SVN
SubWeaver - Dirrectly checkout from dreamweaver to google code subversion
http://www.whoisdeep.com/2007/02/12/svn-for-dreamweaver/
http://www.grafxsoftware.com/product.php/SVN-for-Dreamweaver-Windows-and-Mac/135/
http://blog.tech-cats.com/2007/09/svn4dw-hard-to-find-svn-extension-for.html
http://ezcto.com/2008/05/dreamweaver-svn-ssh/
http://code.google.com/p/subweaver/
http://www.whoisdeep.com/2007/02/12/svn-for-dreamweaver/
http://www.grafxsoftware.com/product.php/SVN-for-Dreamweaver-Windows-and-Mac/135/
http://blog.tech-cats.com/2007/09/svn4dw-hard-to-find-svn-extension-for.html
http://ezcto.com/2008/05/dreamweaver-svn-ssh/
http://code.google.com/p/subweaver/
Sunday, December 21, 2008
Saturday, December 20, 2008
Super scope in coldfusion
when creating webservice like :
> #Arguments.msg#">
#Arguments.msg#">
Super scope can be used by menthods inside the class to access variables outside the method ie, class variables.
invoking the webservice can be done as shown below:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">
http://localhost/services/pub.cfc?wsdl")>
Super scope can be used by menthods inside the class to access variables outside the method ie, class variables.
invoking the webservice can be done as shown below:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">
#vReturn#
Wednesday, December 17, 2008
How to create webservice in coldfusion in WSDL
Create a CFC that uses remote functions in it.
Place the CFC in a folder anywhere in your PC.
Make that folder a Virtual Directory using IIS Mgr.
Once this is done type URl http://yourdomain.com/yourwebservicefolder/cfcservicename.cfc?wsdlin your browser. This will generate the wsdl for the webservice in xml format on the browser.
Save the output as cfcservicename.wsdl . Open the file and look for the path to the CFC. rename the path using your machines IP address.
write a client file in your wwwroot that access this webservice with the following code.
method="functionname"
returnvariable="Ret"
webservice="http://yourdomain.com/yourwebservicefolder/cfcservicename.wsdl">
Run this client file once on your coldfusion server.
This will create an entry in the webservices tab of your coldfusion administrator.
Once this entry is made in the administrator you can delete the cfcservicename.wsdl as the client page will be able to access the remote CFC from the .wsdl entry that is registered on the administrator.
Enjoy!
Place the CFC in a folder anywhere in your PC.
Make that folder a Virtual Directory using IIS Mgr.
Once this is done type URl http://yourdomain.com/yourwebservicefolder/cfcservicename.cfc?wsdlin your browser. This will generate the wsdl for the webservice in xml format on the browser.
Save the output as cfcservicename.wsdl . Open the file and look for the path to the CFC. rename the path using your machines IP address.
write a client file in your wwwroot that access this webservice with the following code.
returnvariable="Ret"
webservice="http://yourdomain.com/yourwebservicefolder/cfcservicename.wsdl">
Run this client file once on your coldfusion server.
This will create an entry in the webservices tab of your coldfusion administrator.
Once this entry is made in the administrator you can delete the cfcservicename.wsdl as the client page will be able to access the remote CFC from the .wsdl entry that is registered on the administrator.
Enjoy!
Monday, December 15, 2008
IBM SOA Sandbox
Create an SOA service based on a Java class in a personal SOA Sandbox for reuse.
XenApp Plugin
Sunday, December 14, 2008
Saturday, December 13, 2008
cfchart and cfdocument
basic cfchart, format="jpg", nested inside cfdocument tags, format="PDF", and it renders
http://www.daniweb.com/forums/thread36072.html
http://www.daniweb.com/forums/thread36072.html
Microsoft adding XML files to Office 12
Microsoft adding XML files to Office 12
http://www.builderau.com.au/news/soa/Microsoft-adding-XML-files-to-Office-12/0,339028227,339191341,00.htm?feed=pt_word
http://www.builderau.com.au/news/soa/Microsoft-adding-XML-files-to-Office-12/0,339028227,339191341,00.htm?feed=pt_word
Friday, December 12, 2008
Wednesday, December 10, 2008
My First ColdFusion Web Service, Creating a Web Service with ColdFusion: the Basics
session-management
http://www.itworld.com/UIR000908webmasteraf?page=0%2C1
Session variables
To effectively deploy session-management variables in ColdFusion, configure the application server to accept and monitor them. A tag must be added to the Applicaton.cfm page
Session variables
To effectively deploy session-management variables in ColdFusion, configure the application server to accept and monitor them. A
Monday, December 8, 2008
Comming Soon ... J-ADMIN V1.1
Dynamic Content Management System CMS
Features:
Developed in Fusebox 5.5 noxml framework for MVC architecture.
Developed in Coldfusion and MSSQL database.
Generates virtual pages implementing coldfusion code from user side.
Generate virtual links - search friendly URLs using ISAPI Rewrite.
Complete class based approach for database interactivity using Datamgr 2.2.
Class based session management using Sessionmgr.
Interactive file management using FCKEditor 2.6.3.
Its FREE! :)
Keep watching this blog!
Features:
Developed in Fusebox 5.5 noxml framework for MVC architecture.
Developed in Coldfusion and MSSQL database.
Generates virtual pages implementing coldfusion code from user side.
Generate virtual links - search friendly URLs using ISAPI Rewrite.
Complete class based approach for database interactivity using Datamgr 2.2.
Class based session management using Sessionmgr.
Interactive file management using FCKEditor 2.6.3.
Its FREE! :)
Keep watching this blog!
Friday, December 5, 2008
Recurrsive Folder listing script in coldfusion - creates link rel tag for css files in a folder
http://www.mximize.com/how-can-i-display-a-recursive-directory-listing-
#Expandpath(Application.UploadsPath&"\js\")#
--->
Rewrite Rules Example
RewriteEngine On
RewriteCompatibility2 On
RepeatLimit 200RewriteBase
RewriteRule ^/jadmin-fb5/index.htm$ /jadmin-fb5/index.cfm
RewriteRule ^/jadmin-fb5/(.*).htm$ /jadmin-fb5/index.cfm?pageName=$1
RewriteCond %{REQUEST_FILENAME}.cfm -f
RewriteRule (.*) $1.cfm
Change jadmin-fb5 to ur localhost site or url
Integrating Datamgr 2.0 and Fusebox 5.5 noxml.
Integrating Datamgr 2.0 and Fusebox 5.5 noxml.
Datamgr 2.0 - handles the MODEl
methods of datamgr 2.0 accesable inside fusebox architecture. ISAPI for SEO friendly URL rewriting and much much more.
Application prototype (J-ADMIN 1.0) CMS to be released soon...
Datamgr 2.0 - handles the MODEl
methods of datamgr 2.0 accesable inside fusebox architecture. ISAPI for SEO friendly URL rewriting and much much more.
Application prototype (J-ADMIN 1.0) CMS to be released soon...
fusebox5.Application.cfc example
FUSEBOX_CALLER_PATH = getDirectoryFromPath(getCurrentTemplatePath());
Extending Application.cfc And OnRequestStart() With SUPER / Extending Your Root Application.cfc
Extending Application.cfc And OnRequestStart() With SUPER
http://www.bennadel.com/blog/1179-Ask-Ben-Extending-Application-cfc-And-OnRequestStart-With-SUPER.htm
Extending Your Root Application.cfc
http://corfield.org/blog/index.cfm/do/blog.entry/entry/Extending_Your_Root_Applicationcfc
http://www.bennadel.com/blog/1179-Ask-Ben-Extending-Application-cfc-And-OnRequestStart-With-SUPER.htm
Extending Your Root Application.cfc
http://corfield.org/blog/index.cfm/do/blog.entry/entry/Extending_Your_Root_Applicationcfc
Subscribe to:
Posts
(
Atom
)