What is CCW (COM Callable Wrapper)


Hi forum plzzzz tell What is CCW (COM Callable Wrapper) ????????????
Hello, A proxy object generated by the common language runtime so that existing COM applications can use managed classes, including .NET Framework classes, transparently

COM objects no longer need to be registered on the server?


I heard that COM objects no longer need to be registered on the server?Is it true!!!!!!!!!!!!!!!!

Hi , Yes and No. Legacy COM objects still need to be registered on the server before they can be used. COM developed using the new .NET Framework will not need to be registered. Developers will be able to auto-register these objects just by placing them in the ‘bin’ folder of the application.

Dedicated server v/s Reseller hosting


Are Dedicated servers any better then Reseller hosting?

what u think?

Servers are better than Reseller, more ram, more disk, more bandwith.

Dedicated servers are for medium to Large Business.
A dedicate server is a single server dedicated to a single customer. Most appropriate for users that require lots of disk space or data transfer, as well as sites that are database intensive or have specific software requirements.
Dedicated servers let you control the entire server and Reseller is a part of a server.
Dedicated server is better, but if you don’t need to many space and bandwidth as with dedicated server better use Reseller or VPS as well.

Can .NET Framework components use the features of Component Services?


Can .NET Framework components use the features of Component Services?

Yes,sure, you can use the features and functions of Component Services from a .NET Framework component.

How do you create threading in .NET?


How do you create threading in .NET?is it possible!!!!!!!!!!!!!!!!!!1

Yes it is.Thread basics using followings:

How to Create thread; use System.Thread() class and create an instance.

How to Join thread; use object.Join() to join threads.

How to Suspend thread; use object.Sleep(<No of seconds>) to Suspend thread.

How to Kill thread; use object.Abort() to Suspend thread.

Using Interlocked class which uses Increment and decrement method to increment and decrement values.

Both reseller and VPS packages. Why?


I have noticed that there are a lot of companies do provides both reseller and VPS packages. Why? I think that it is actually the same in space and bandwidth.

The main thing in VPS hosting is the limit of hosting accounts on a server. In VPS hosting there are max 15-20 accounts on a server whereas in reseller hosting there are more than 100 accounts on a server

The main thing in VPS hosting is the limit of hosting accounts on a server. In VPS hosting there are max 15-20 accounts on a server whereas in reseller hosting there are more than 100 accounts on a server

With a VPS you have more freedom on usage resources.

The important point is that a VPS gives you an isolated OS environment and (potentially) guaranteed system resources at your disposal. These factors mean that you’re far less likely to be affected by rouge scripts, IP blacklisting etc. caused by other accounts on the physical server; a reseller account is just as bad as any other shared hosting in these aspects.

I beg to differ – their VPS plans are all completely unmanaged, and therefore there’s a good chance they’re not suitable for the needs of many resellers since it would theoretically require the reseller to have 24/7 staffing to correct any problems which may occur (including the appropriate technical knowledge too!).

What are ADSI Directories?


hi forum,
What are ADSI Directories? please give details!

hello member giving you details…
Active Directory Service Interfaces (ADSI) is a programmatic interface for Microsoft Windows Active Directory. It enables your applications to interact with diverse directories on a network, using a single interface. Visual Studio .NET and the .NET Framework make it easy to add ADSI functionality with the DirectoryEntry and DirectorySearcher components.
Using ADSI, you can create applications that perform common administrative tasks, such as backing up databases, accessing printers, and administering user accounts. ADSI makes it possible for you to:
• Log on once to work with diverse directories. The DirectoryEntry component class provides username and password properties that can be entered at runtime and communicated to the Active Directory object you are binding to.
•Use a single application programming interface (API) to perform tasks on multiple directory systems by offering the user a variety of protocols to use. The DirectoryServices namespace provides the classes to perform most administrative functions.
•Perform “rich querying” on directory systems. ADSI technology allows for searching for an object by specifying two query dialects: SQL and LDAP.
•Access and use a single, hierarchical structure for administering and maintaining diverse and complicated network configurations by accessing an Active Directory tree.
•Integrate directory information with databases such as SQL Server. The DirectoryEntry path may be used as an ADO.NET connection string provided that it is using the LDAP provider.

application domain


What is Application Domain?

 hello giving you a bit of info think it might be useful…
The primary purpose of the App.Domain is to isolate an application from other applications. Win32 processes provide isolation by having distinct memory address spaces. This is effective, but it is expensive and doesn’t scale well. The .NET runtime enforces AppDomain isolation by keeping control over the use of memory – all memory in the AppDomain is managed by the .NET runtime, so the runtime can ensure that AppDomains do not access each other’s memory.
Objects in different application domains communicate either by transporting copies of objects across application domain boundaries, or by using a proxy to exchange messages.
MarshalByRefObject is the base class for objects that communicate across application domain boundaries by exchanging messages using a proxy. Objects that do not inherit from MarshalByRefObject are implicitly marshal by value. When a remote application references a marshal by value object, a copy of the object is passed across application domain boundaries.

Benefits of Reseller web hosting


Hi,
I m a web designer and have a lots of website. Now i want to online these all website, so I m looking for a Reseller web hosting account. can anyone tell me What are the benefits of reseller program?

In a Reseller web hosting account, u can host unlimited domain.

A reseller program provides opportunity to start and maintain a business with a less starting cost. It means as you are a reseller, you can get additional income from your website.

There are many benefits to be a reseller. Some are as follows:-

• Minimal Initial Investment
• No need to maintain equipment
• Can set your own prices
• Can offer other services in conjunction with reselling
• Have access to hosting small, medium and large sites
• Do not need to update/upgrade at will
• Not need to have a large scale of technical knowledge
• Increased flexibility
• Saving on overall hosting costs

Re:AppDomain get created


How does an AppDomain get created?

AppDomains are usually created by hosts. Examples of hosts are the Windows Shell, ASP.NET and IE. When you run a .NET application from the command-line, the host is the Shell. The Shell creates a new AppDomain for every application.
AppDomains can also be explicitly created by .NET applications