Requesting server upgrade


Resellers of the cpwebhosting.net can also request for the upgradation of their dedicated servers, for doing the upgradation, they have to:
1. Go to the Dedicated Servers/Manage Servers menu2. Choose the server they want to upgrade

3. On the page that appears, click the Request Server Upgrade link. they will see the templates with available dedicated servers.

4. Then they can select the Get a quote for custom upgrade option and manually fill out custom server configuration. Or, they may choose from the list of available templates (to view server details, click a template name)

5. After you click Submit, their request will be sent to the H-Sphere admin. Resellers will be notified about a charge for this upgrade.

Trouble with CAS!!!!


I’m having some trouble with CAS. How can I diagnose my problem? Help!!!!

Yes Sure,caspol has a couple of options that might help. First, you can ask caspol to tell you what code group an assembly belongs to, using caspol -rsg. Similarly, you can ask what permissions are being applied to a particular assembly using caspol -rsp.

Adding extra IPs to Dedicated Servers


Hi,

When a reseller receives a dedicated server he gets only one IP address. If it is allowed by the plan he signed up with, he can always send requests for additional IPs from your cp. To send a request for an extra range of IPs reseller has to:

  1. Go to the Dedicated Servers/Manage Servers menu
  2. Choose the server he want to add IPs to
  3. On the next page, click Add Extra IP(s)
  4. Fill in the number of IPs you want to add.

What is serialization in .NET?


What is serialization in .NET?

Hi , Serialization is the process of converting an object into a stream of bytes. Deserialization is the opposite process of creating an object from a stream of bytes. Serialization/Deserialization is mostly used to transport objects (e.g. during remoting), or to persist objects (e.g. to a file or database).Serialization can be defined as the process of storing the state of an object to a storage medium.

Creating Reverse DNS Records for IPs


Hi,

As now, cpwebhosting.net is at hsphere 3.0, Resellers Once they get an additional C class network IPs range assigned to their

server, they need to create reverse DNS records (aka PTR records) for each IP from this range. This is necessary for IPs not

to be blocked by some e-mail internet servers which reject mail from IPs without such records.

To create revers DNS record for an IP, reseller have to:

  1. Go to the Dedicated Servers/Manage Servers menu
  2. Choose the server the IP belongs to
  3. Click Edit near the necessary IP range in the Extra IP addresses field
  4. Click the green arrow opposite to the IP.
  5. Type in domain name for this IP and click Submit.
  6. The newly added record will appear on the Edit IP range page.

What is Assembly manifest?


Can anybody tell what is Assembly manifest and what all details the assembly manifest will contain?

Yes ,sure, every assembly, whether static or dynamic, contains a collection of data that describes how the elements in the assembly relate to each other. The assembly manifest contains this assembly metadata. An assembly manifest contains all the metadata needed to specify the assembly’s version requirements and security identity, and all metadata needed to define the scope of the assembly and resolve references to resources and classes. The assembly manifest can be stored in either a PE file (an .exe or .dll) with Microsoft intermediate language (MSIL) code or in a standalone PE file that contains only assembly manifest information.
It contains Assembly name, Version number, Culture, Strong name information, List of all files in the assembly, Type reference information, Information on referenced assemblies.

Setting up backup service for a dedicated server


Hi,

Resellers of the cpwebhosting.net can request regular backup for their dedicated server, for that, they have to:

  1. Go to the Dedicated Servers/Manage Servers menu
  2. Choose the server they want to setup backup service for
  3. On the page that appears, they need to click on the icon in the Backup Services section
  4. Then they have to Choose a preferrable option and press Submit. Then agree to be billed for the service. Their request will be sent to and managed by the admin.
  5. After that, they will see the scheduled task on the Backup service settings page (to enter this page, press Edit for Backup services on the Dedicated server page).
  6. Now that they will be having a configured scheduled backups, they can also request a custom task. For that, they have to use the Add button and set time for additional backup.
  7. When the admin has processed (completed or cancelled) backups of their server, they can see that on the Backup service settings page.

Managed and unmanaged code


Can you tell Guys about the managed and unmanaged code in .net?

Friend,the .NET Framework provides a run-time environment called the Common Language Runtime, which manages the execution of code and provides services that make the development process easier.
Compilers and tools expose the runtime’s functionality and enable you to write code that benefits from this managed execution environment. Code that you develop with a language compiler that targets the runtime is called managed code; it benefits from features such as cross-language integration, cross-language exception handling, enhanced security, versioning and deployment support, a simplified model for component interaction, and debugging and profiling services

Requesting remote reboot of a dedicated server


Hi,

Resellers who are having dedicated servers, they can ask for free request remote reboot for that:

  1. They have to Go to the Dedicated Servers/Manage Servers menu
  2. Then, Choose the server they want to request remote reboot for
  3. On the next page, they have to click on the reboot in the Remote Reboot section
  4. Then Choose a preferrable option and press Submit to send the request to the admin. This will issue a trouble ticket to the admin with their reboot request.

Managed Execution Process


Can anybody describe the Managed Execution Process?Give in points plzzzz!!!!!!!!!!!

Hi , the managed execution process includes the following steps:
0. Choosing a compiler.
To obtain the benefits provided by the common language runtime, you must use one or more language compilers that target the runtime.
1. Compiling your code to Microsoft intermediate language (MSIL).
Compiling translates your source code into MSIL and generates the required metadata.
2. Compiling MSIL to native code.
At execution time, a just-in-time (JIT) compiler translates the MSIL into native code. During this compilation, code must pass a verification process that examines the MSIL and metadata to find out whether the code can be determined to be type safe.
3. Executing your code.
The common language runtime provides the infrastructure that enables execution to take place as well as a variety of services that can be used during execution.