sethur4linux.blogspot.com
World is open now, who needs gates and windows..: September 2009
http://sethur4linux.blogspot.com/2009_09_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Friday, September 25, 2009. Prepare url dynamically in Javascript. String url = window.location.protocol ":/ " window.location.hostname "/". Posted by Suresh Raja Bollipo. Wednesday, September 23, 2009. Creating Cookie in a Session. Http:/ publib.boulder.ibm.com/infocenter/wchelp/v6r0m0/index.jsp? If ( commandContext instanceof com.ibm.commerce.command.ViewCo...Posted by Sur...
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: June 2009
http://sethur4linux.blogspot.com/2009_06_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Sunday, June 14, 2009. Deleting all objects in a Schema. CREATE OR REPLACE PROCEDURE DROP OBJECTS(P Owners varchar2) IS. Cursor obj crs is. Select owner, object name, object type. Where owner = upper(P Owners) AND object name. Obj REC obj CRS%ROWTYPE;. L grants objects varchar2(500);. Dbms output.put line('Begining to drop all objects');. FOR obj REC IN obj CRS LOOP. WHEN 'I...
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: May 2011
http://sethur4linux.blogspot.com/2011_05_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Saturday, May 14, 2011. IBM Learning video, audio and pdf available for free. This is a free site, any body can access and go through the learning sessions provided by them. For WebSphere Commerce Suite learning, please visit the following url. Http:/ publib.boulder.ibm.com/infocenter/ieduasst/v1r1m0/index.jsp? Topic=/com.ibm.iea.wcs/plugin coverpage.html. Private String get...
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: November 2011
http://sethur4linux.blogspot.com/2011_11_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Tuesday, November 22, 2011. Facebook Like/Share button in your site. Reference page http:/ developers.facebook.com/docs/reference/plugins/like/. Include the JavaScript SDK on your page once, ideally right after the opening body tag. Place the code for your plugin wherever you want the plugin to appear on your page. Posted by Suresh Raja Bollipo. Thursday, November 17, 2011.
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: March 2010
http://sethur4linux.blogspot.com/2010_03_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Monday, March 22, 2010. Enabling cross-site scripting protection. Http:/ publib.boulder.ibm.com/infocenter/wchelp/v7r0m0/index.jsp? Topic=/com.ibm.commerce.admin.doc/tasks/tsecsssp.htm. Posted by Suresh Raja Bollipo. Subscribe to: Posts (Atom). Enabling cross-site scripting protection. Links for nice sites. King of WCS: Bipin. Venki the great DBA.
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: Converting special Characters in properties file to UTF8 using native2ascii
http://sethur4linux.blogspot.com/2011/04/converting-special-characters-in.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Tuesday, April 26, 2011. Converting special Characters in properties file to UTF8 using native2ascii. Eg: Converting poland special charectres to native language. 1 Rename the file provided by the customer (i.e., storetext.properties) to storetext.nta. 3 Target properties file is your converted file. Posted by Suresh Raja Bollipo. Subscribe to: Post Comments (Atom).
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: Changing ORACLE LISTENER port number
http://sethur4linux.blogspot.com/2009/11/changing-oracle-listener-port-number.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Thursday, November 12, 2009. Changing ORACLE LISTENER port number. Change the port number in the following path:. D: oracle product 10.1.0 Db 1 NETWORK ADMIN listener.ora. Change the port number to desired port number and save. Run the following statement in the SQL prompt as sys dba. Check the status of listener, it should pick up your service name. Links for nice sites.
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: Configuring proxy settings in Java
http://sethur4linux.blogspot.com/2011/11/configuring-proxy-settings-in-java.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Thursday, November 17, 2011. Configuring proxy settings in Java. System.getProperties().put("http.proxyPort", "someProxyPort");. System.getProperties().put("http.proxyUser", "someUserName");. System.getProperties().put("http.proxyPassword", "somePassword");. System.getProperties().put("http.proxyHost", "someProxyURL");. Posted by Suresh Raja Bollipo. Links for nice sites.
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: September 2012
http://sethur4linux.blogspot.com/2012_09_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Friday, September 28, 2012. Function for accessing URL variables in HTML. Function for accessing URL variables in HTML:. Var result = new RegExp(key "=([ &]*)", "i").exec(window.location.search);. Return result & unescape(result[1]) " ;. URL: http:/ blog.com? You have to use the function like this getUrlVal('name') you will get the result as 'suresh'. Links for nice sites.
sethur4linux.blogspot.com
World is open now, who needs gates and windows..: December 2009
http://sethur4linux.blogspot.com/2009_12_01_archive.html
World is open now, who needs gates and windows. WebSphere Commerce Suite, WebSphere Application server, IBM HTTP Server and Oracle. Wednesday, December 2, 2009. Delete the Web server definition in a standalone application server. The uninstaller program for the Web server plug-ins for WebSphere Application Server does not delete Web server definitions. However, you can delete a Web server definition from admin console OR by using the following wsadmin commands:. Posted by Suresh Raja Bollipo. Delete the ...