18 06 2009

How To Run A Process in C# .Net

String cmdString = @"net use /delete " + mapdrive; // just a sample script, custom here..
ManagementClass processClass = new ManagementClass("Win32_Process");
object[] methodArgs = { cmdString, null, null, 0 };
object result = processClass.InvokeMethod("Create", methodArgs);

13 05 2009

Fix Debugging Problem On Forms 10g

If you work at shared library path and forms path has been registered in windows registry,
it unable to debug because forms path defined in \forms\server\default.env file
find and comment line  like that 
#FORMS_PATH=C:\ORA10G\forms
then restart oc4j server and forms developer , 
then it works as you see.

05 05 2009

Generate Random Alpha-Numeric Values (C#.Net)

private string GenerateRandomChars() {
Random rnd = new Random();
byte[] _byt=new byte[8];
rnd.NextBytes(_byt);
return Convert.ToBase64String(_byt);
}

01 04 2009

Adf Nedir?

Oracle ADF

Oracle'ın özellikle Forms uygulamalarını yeni nesil web tabanlı teknolojilere yükseltmek için geliştirdiği framework.

Mimari olarak MVC - Model View Controller, kullanıcı arayüzünde 11g sürümü ile birlikte RichClient library'ye geçişin gözlendiği, yazılım bileşenlerinin kendi içerisinde ajax özelliği taşıması, bileşen kütüphanesinin yaygınlaşması ve gelişebilmesi için kaynak kodlarının Apache ile paylaşıldığı ve neticesinde Apache Trinidad MyFaces Component kütüphanesine ait bileşenlerin de kullanılabildiği, Oracle 'ın uygulama geliştirme alanındaki geliştirmesine bu yönde devam etme kararı aldığı, bir java framework'üdür.

Model katmanında kullanılabilen Oracle Business Components sayesinde kod yazmadan dahi uygulama geliştirme mümkün. Öte yandan java tabanlı olduğu için platformdan bağımsız bir IDE + Uygulama Sunucusu imkanı sunuyor.

Uygulama sunucusu olarak WebLogic kullanılmakta.

Bu konu hakkında Oracle'ın resmi sitesinde pekçok kaynak bulmak mümkün, ayrıca şu blog sitelerinden yararlanılabilir;

-US- [1] -NL- [2] -TR- [adf]

01 03 2009

Samples - ADF How to

How to do page redirect in managed bean










17 01 2009

JSEXT

Server Side Javascript, jsx extension

16 01 2009

Some popular Ajax Toolkits

 Some popular Ajax Toolkits

Name

Client/Server

High/Low-level

Comments

Prototype (http://prototypejs.org)

Client

Low

Remodels and extends JavaScript following the Ruby scripting language. Many features for arrays, functions, XHR, DOM and forms.

Scriptaculous (http://script.aculo.us)

Client

High

Special effects, drag and drop, and widgets built on top of prototype.

dojo (http://dojotoolkit.org)

Client

Low-high

Comprehensive set of libraries covering everything from packaging & language features through Ajax to UI widgets.

Yahoo User Interface (YUI) (http://developer.yahoo.com/yui/)

Client

Low-high

Another comprehensive set of libraries covering many aspects of Ajax development.

Ext (http://extjs.com)

Client

High

Widget-based set of user interface components with Ajax support.

sarissa (http://sarissa.sf.net)

Client

Low

Rich library for working with XML, providing cross-browser XPath and XSLT.

Mochikit (http://mochikit.com)

Client

Low-high

General-purpose Ajax and DHTML library, inspired by Python.

jQuery (http://jquery.com)

Client

Low

Small, concise Ajax and DOM helper library.

MooTools (http://mootools.net)

Client

Low-high

Modular library covering everything from core classes to special effects. A promising newcomer.

Ruby on Rails (http://www.rubyonrails.org)

Server

Low-high

Primarily a server-side toolkit, but has first-rate support for Ajax, using Prototype and Scriptaculous. Allows large parts of the client tier to be written on the server, in Ruby.

GWT (http://code.google.com/webtoolkit)

Client

High

Java framework that allows Ajax client tier to be written in Java.

JSF (various vendors)

Server

High

Various JSF vendors have Ajax-enabled some of their components, again allowing some Ajax functionality without hand-writing JavaScript.