Help: how does a container process requests?

I am reading the specification of servlet, but it just confuse me a lot.
Some one know any of the following please help me. thanx.
how does a container process requests?
does it process one request per thread?
or one request one time?
a new request can only be accepted after the current request responsed?
thanks in advance.

paulxue wrote:
and most important finding is that container execute the doGet or doPost method in different threads for requests.That is, a single HTTP request is entirely executed in a single thread.
does this mean it may be Dangerous to have fields in a servlet? since they may be accessed by many thread at a particular time.The general principles of Java Concurrency hold true for Java servlet as well. Main point is understanding what you are doing.
finally,when will the instance be destroyed?The instance will be destroyed when web application lifecycle ends. For eg: when the servlet engine is stopped or restarted

Similar Messages

  • How does the GR processing time affect the scheduling of the process order & the latest start date in the operation.

    Hi
    Can anyone explain  how does the GR processing time affect the scheduling of the process order & the latest start date in the operation overview.

    Hi
    GR processing time means number of workdays required after receiving the material in storage.
    Check this link:GR Processing time
    Regards,
    Anupam Sharma

  • TRFC internals - how does the async processing happen?

    tRFC internals - how does the async processing happen?
    Dear all,
    With the document "[https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f078394a-4469-2910-c4bf-853c75674694|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f078394a-4469-2910-c4bf-853c75674694]" there is an excellent place to read about SAP RFCs (remote function calls).
    Pages 94 to 96 describe in detail how tFRC (transactional RFC) works.
    However, there is still something unclear for me with the following sentence on page 94:
    "The truly exciting part happens when the program
    issues a COMMIT WORK command. The recorded calls
    are executed asynchronously in a special set of tRFC
    processing sessions created for each transaction ID..."
    Maybe someone can answer the following questions:
    a) what does exactly trigger and execute the tRFC?
    b) is it the ABAP runtime system itself, spawning the additional task in DIA?
    c) if multiple tRFC LUWs have been recorded, they are all executed in parallel by this procedure!?
    d) does the execution try to utilize all available DIA processes?
    e) how do the rdisp/rfc_... parameter come into the game?
       are they evaluated? We have seen all DIA occupied by the tRFCs executed!
    Best regards,
    Peter
    P.S.: if someone has answers to these ones, more related to error handling, would be great as well
    f) the jobs ARFC*, do they also use parallel processing?
       or is every ARFC* job responsible only for one single LUW?
       (note https://service.sap.com/sap/support/notes/366807 did not give a perfect answer)
    g) and how does the report RSARFCEX work compared to immediate execution?

    That's the problem, it won't.
    internal static string GetAvailabilityGroupFromConnection(SPDatabase db)
    if (!UsesAvailabilityConnection(db))
    return null;
    string dataSource = db.ConnectionString.DataSource;
    string cmdText = string.Format(CultureInfo.InvariantCulture, "\r\n SELECT name FROM sys.availability_groups g\r\n JOIN sys.availability_group_listeners l ON g.group_id = l.group_id\r\n WHERE dns_name = '{0}'\r\n ", new object[] { dataSource });
    string str3 = null;
    using (SqlCommand command = new SqlCommand(cmdText))
    ULS.SendTraceTag(0x302263, ULSCat.msoulscat_WSS_Database, ULSTraceLevel.Medium, "Looking up availability group for listener: {0}", new object[] { cmdText });
    using (SqlDataReader reader = GetSessionFromDatabase(db).ExecuteReader(command))
    while (reader.Read())
    str3 = reader.GetString(0);
    ULS.SendTraceTag(0x302280, ULSCat.msoulscat_WSS_Database, ULSTraceLevel.Medium, "Found group {0} for listener {1}", new object[] { str3, dataSource });
    This piece of code looks at the SPDatabase's connection string (the SQL alias, for example) and executes a T-SQL query looking for that name within SQL Server. Since the SQL alias does not exist within the SQL Server's configuration, it will return a null
    value, and you won't be able to set up the AG config using the AG cmdlets.
    Also, since mobility exists by the very nature of using an AG Listener, using a SQL Alias is redundant.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How does the sync process work?

    Hello all,
    I want to know what will happen if both the local and network homes have been modified for a period of two weeks and then the user chooses to synch? Will the sync process ask which 'home' is the most recent or will it replace older files with newer files?
    How does the sync process manage the task of keeping both sides the same?
    Thanks,
    -Andrew G

    If a file exists on both the local and the network directory it will pop up with a conflict and ask how to resolve it.
    If the file is only on the local machine and in a place you have not excluded from syncing it just syncs.
    If the file has been previously synced but there has been no change to the file since last sync I think it just rewrites the file to the server homedir... (Don't quote me on this one... it might not even bother with it, I'm not sure how smart the sync service is)
    You can set automatic conflict resolution within WGM but as far as I know you have to do it by clicking on preferences then switching to the details tab, then click on Home Sync....com.apple.homesync. Click on the Always drop down and click the add new key button then change the new key to either Login or Logout Non-Preference sync conflict resolution and or Background sync conflict resolution and decide if MobileHome or NetworkHome Wins...or copy. In most cases I would think that you would want the MobileHome to Win.. of course there is always potential for someone to make a huge mistake on a file and pray its still fine on the server but... your call.

  • How does the repair process work

    how does the repair process work, currently broke my iPhone, water damage, and still have a warranty until july 30.

    http://www.apple.com/support/iphone/repair/other/

  • Help Solving: Does not contain a definition for 'Select'.....

    Hi,
    Need help solving a Task that returns a Task<IEnumerable<Writing>> so I can fill ObservableCollection<ViewModels.IWritingItemViewModel> Writings for my
    Design Time Data Page:
    <d:Page.DataContext>
    <designTimeData:MainPageViewModel />
    </d:Page.DataContext>
    My constructor does this:
    public MainPageViewModel()
    var writings = this.GetGroupsAsync();
    this.Writings = new ObservableCollection<ViewModels.IWritingItemViewModel>();
    var viewmodels = writings.Select((x, i) => new WritingItemViewModel
    Writing = x,
    VariableItemSize = (i == 0) ? Common.VariableItemSizes.Writings : Common.VariableItemSizes.Normal,
    My var writings = this.GetGroupsAsync(); is:
    public async Task<IEnumerable<Writing>> GetGroupsAsync()
    await this.GetMenuDataAsync();
    return this.Groups;
    which in turn gets data from:
    private async Task GetMenuDataAsync()
    Uri dataUri = new Uri("ms-appx:///DesignTimeData/MenuData.json");
    StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(dataUri);
    string jsonText = await FileIO.ReadTextAsync(file);
    JsonObject jsonObject = JsonObject.Parse(jsonText);
    JsonArray jsonArray = jsonObject["Groups"].GetArray();
    foreach (JsonValue groupValue in jsonArray)
    JsonObject groupObject = groupValue.GetObject();
    Writing group = new Writing(
    groupObject["UniqueId"].GetString(),
    groupObject["IsHeaderInteractive"].GetBoolean(),
    groupObject["ViewType"].GetString(),
    groupObject["ModelType"].GetString(),
    groupObject["Page"].GetString(),
    groupObject["Title"].GetString(),
    groupObject["Subtitle"].GetString(),
    groupObject["ImagePath"].GetString(),
    groupObject["Description"].GetString(),
    groupObject["GroupId"].GetString()
    foreach (JsonValue itemValue in groupObject["WritingMenus"].GetArray())
    JsonObject itemObject = itemValue.GetObject();
    group.WritingMenus.Add(new WritingMenu(
    itemObject["UniqueId"].GetString(),
    itemObject["Page"].GetString(),
    itemObject["Title"].GetString(),
    itemObject["Subtitle"].GetString(),
    itemObject["ImagePath"].GetString(),
    itemObject["Description"].GetString(),
    itemObject["Content"].GetString(),
    itemObject["WritingsId"].GetString(),
    itemObject["GroupId"].GetString(),
    Convert.ToInt32(itemObject["Item"].ValueType)
    this.Groups.Add(group);
    and I get this Error:
    Error 5 'System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<App1.DesignTimeData.Writing>>'
    does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type
    'System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<App1.DesignTimeData.Writing>>'
    could be found (are you missing a using directive or an assembly reference?)
    I'm creating collections of:
    public interface IWritingItemViewModel : Common.IVariableSizedItem
    Models.Writing Writing { get; set; }
    and my class for creating data is:
    public class Writing
    public Writing(
    string uniqueId,
    bool isHeaderInteractive,
    string templateType,
    string viewModelType,
    string page,
    string title,
    string subtitle,
    string imagePath,
    string description,
    string groupId
    this.UniqueId = uniqueId;
    this.IsHeaderInteractive = isHeaderInteractive;
    this.TemplateType = templateType;
    this.ViewModelType = viewModelType;
    this.Page = page;
    this.Title = title;
    this.Subtitle = subtitle;
    this.ImagePath = imagePath;
    this.Description = description;
    this.GroupId = groupId;
    this.WritingMenus = new ObservableCollection<WritingMenu>();
    public string UniqueId { get; private set; }
    public bool IsHeaderInteractive { get; private set; }
    public string TemplateType { get; private set; }
    public string ViewModelType { get; private set; }
    public string Page { get; private set; }
    public string Title { get; private set; }
    public string Subtitle { get; private set; }
    public string ImagePath { get; private set; }
    public string Description { get; private set; }
    public string GroupId { get; private set; }
    public virtual ObservableCollection<WritingMenu> WritingMenus { get; private set; }
    How can I solve or successfully complete this code?
    Thanks!...
    Code is like a box of chocolates!...

    I looked into your error message again, I found something interesting:
    Error 5
    'System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<App1.DesignTimeData.Writing>>'
      does not contain a definition
    for 'Select'
    and no extension method
    'Select' accepting a first argument of type
      'System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<App1.DesignTimeData.Writing>>'
      could be found (are you missing a
    using directive or an assembly reference?)
    That means: Task does not contain the definition for Select. This was reasonable, Task does not inherit IEnumerable interface.
    var viewmodels = writings.Select((x, i) => new WritingItemViewModel
    Writing = x,
    VariableItemSize = (i == 0) ? Common.VariableItemSizes.Writings : Common.VariableItemSizes.Normal,
    public async Task<IEnumerable<Writing>> GetGroupsAsync()
    You need get the IEnumerable<Writing> for Select use. See this for more information:
    How to: Return a Value from a Task
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How does the purchase process of SAP C4C work?

    Hello,
    we need some information about the purchase process of the SAP C4C System.
    Now we have access to our own C4C System and we are trying to configure it.  But what are the next steps? How do we get the productive system? How does SAP transfer the test data to the productive system? where do we get our development system? ....
    Does anybody have any experience with the first C4C implementation?
    The information we get from SAP confused even more than helped.
    Thanks and regards
    Suita

    HI Suita
    If you are still looking for help, we specialise in Cloud for Customer implementations and have been through this process. You can contact me at [email protected]
    There are a number of assets available on the service marketplace. While you may need advice, I do not believe that consulting services are a mandatory part of the C4C setup, having said that SAP ideally will have discussed some options during the software selection process.
    Are you implementing SAP C4C standalone or with integration to any other system?
    Regards
    James.

  • Help - Editor does not contain a main type error (Eclipse)

    Hello,
    I'm trying to run a Text input program out of the Eclipse program and I keep getting this Editor does not contain a main type error - can someone help me
    here's the code
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.text.DecimalFormat;
    import java.util.Scanner;
    import uwcse.io.Input;
    public class FileInputExample {
         public static void main(String[] args) {
              // Create a Scanner to read the input file
              String fileName = new Input().readString("Input file name? ");
              System.out.println();
              Scanner scan;
              try {
                   scan = new Scanner(new File(fileName));
              } catch (FileNotFoundException e) {
                   System.out.println(fileName + " doesn't exist!");
                   return;
              // Read the file and count the number of occurences of A, B, ...
              int[] count = new int[26];
              while (scan.hasNextLine()) {
                   String line = scan.nextLine();
                   line = line.toLowerCase();
                   for (int i = 0; i < line.length(); i++) {
                        char c = line.charAt(i);
                        if (c >= 'a' && c <= 'z') {
                             count[c - 'a']++;
              scan.close();
              int length = 0;
              for (int i = 0; i < count.length; i++) {
                   length += count;
              // Display the statistics (as an histogram)
              DecimalFormat df = new DecimalFormat("0.00");
              for (int i = 0; i < count.length && length > 0; i++) {
                   double percent = count[i] * 100.0 / length;
                   String display = "" + (char) ('a' + i);
                   display += "(" + df.format(percent) + "%):\t";
                   for (int j = 1; j <= Math.round(percent); j++) {
                        display += "X";
                   System.out.println(display);
    }Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    First, note that your program uses a non-standard class, "uwcse.io.Input" which is not available to us. Normally that is a show stopper - in this case, it's not, as I was able to eliminate its use.
    Your program runs fine, so the error is an Eclipse error unrelated to Java.
    You need to ask for help at an Eclipse support site, not here, as these forums are Java language forums.

  • How does the boot-process assemble the raid?

    Hi everyone,
    I just switched from Debian and CentOS to archlinux on all my machines and I really love it so far!
    Now I feel that I can really customize my OS the way I want.
    But I was thinking about one thing that I don't really understand yet, and of what I have
    read on this forum I'm certain that someone knows the answer.
    On my primary machine I have an mdadm-raid.
    And the partitions looks like this:
    /dev/sda                          /dev/sdb
    Disk1                              Disk2
    /dev/sda1                        /dev/sdb1
    100mb ext2 (boot)            100mb empty (I did empty partition so that the disks looks the same.)
    /dev/sda2  <- RAID0 ->   /dev/sdb2            /dev/md0
    2500MB ext3 (root)          2500MB ext3
    /dev/sda3  <- RAID0 ->   /dev/sdb3            /dev/md1
    2250MB (swap)                2250MB swap
    /dev/sda4  <- RAID0 ->   /dev/sdb4            /dev/md2
    245150MB ext3 (home)    245150MB ext3
    So there was a little tricky to get it installed and assemble the raid at boot, but now it's working like a dream again.
    And what I did what except loading mdadm-hook of course I used the kernel parameter: ro root=/dev/md0 md=0,/dev/sda2,/dev/sdb2 a.s.o. to
    tell the initrd how to assemble the raid at boot.
    But before archlinux i've done this setup in the installer, and after I've installed for example Debian, the system boots correctly and
    assemble the raid at boot, but without the kernel-parameters, how does the system know how the raid should be assembled?
    I've tried to include the mdadm.conf but with no success, does the initrd contain the raid information is some way?

    To obtain that file, run:
    abs
    This will provide the abs tree of core,extra, and community in /var/abs.
    Then you can get the file:
    # vim: set ft=sh:
    run_hook ()
        input="$(cat /proc/cmdline)"
        mdconfig="/etc/mdadm.conf"
        # for partitionable raid, we need to load md_mod first!
        modprobe md_mod 2>/dev/null
        # if no config file is present create one from command line parameters
        if ! [ -e $mdconfig ]; then
            #Create initial mdadm.conf
            # scan all devices in /proc/partitions
            echo DEVICE partitions > $mdconfig
            for i in $input; do
            case $i in
                    # raid
                    md=[0-9]*,/*)
                        device="$(/bin/replace -s,/ "$i" "=" "")"
                        array="$(/bin/replace -s/ "$device" "," " devices=")"
                        echo "ARRAY /dev/$array" >> $mdconfig
                        RAID_FOUND=1
                    # partitionable raid
                    md=d[0-9]*,/*)
                        device="$(/bin/replace -s=d "$i" "md=" "md_")"
                        array="$(/bin/replace -s/ "$device" "," " devices=")"
                        echo "ARRAY /dev/$array" >> $mdconfig
                        RAID_FOUND=1
                    # raid UUID
                    md=[0-9]*,[0-9,a-z]*)
                        device="$(/bin/replace -s,/ "$i" "=" "")"
                        array="$(/bin/replace -s/ "$device" "," " uuid=")"
                        echo "ARRAY /dev/$array" >> $mdconfig
                        RAID_FOUND=1
                    # partitionable raid UUID
                    md=d[0-9]*,[0-9,a-z]*)
                        device="$(/bin/replace -s=d "$i" "md=" "md_")"
                        array="$(/bin/replace -s/ "$device" "," " uuid=")"
                        echo "ARRAY /dev/$array" >> $mdconfig
                        RAID_FOUND=1
                esac
            done
        else
            RAID_FOUND=1
        fi
        if [ "$RAID_FOUND" = 1 ]; then
            # assemble everything
            /sbin/mdassemble.static
        fi
    The above is what is provided in mine............

  • How does Outlook send Task Requests?

    I have been working with EWS and have frequently come across posts for Assign Task or Task Request creation is not supported by EWS.
    But we can create Task Requests from Outlook. How does Outlook do that? What API does it use in the back to achieve this?
    Is there a way to use the same API that Outlook uses to achieve this functionality?

    Outlook use MAPI to access and create Items in Exchange Store so if you use the Outlook Object Model
    http://msdn.microsoft.com/en-us/library/office/ff184639.aspx or a Third Party Library like Redemption
    http://www.dimastr.com/redemption/RDOTaskItem.htm these both use MAPI and will allow you to assign a task programmatically. The Raw rops that the Mapi client does to do this are also documented
    in the following protocol document
    http://msdn.microsoft.com/en-us/library/cc463886(v=exchg.80).aspx .
    Cheers
    Glen

  • How does the login process works with a bind to AD?

    Hi there,
    I am trying to bind our mac to our Active Directory. Before doing I'd like to understand well how the login process works. Is there any reference I could look up to?
    For what I've understood until now with an example user "testAccount" and no automount and no AD extension and the ADplugin set as:
    a) if mobile is set, then a /Users/testAccount is created and if UNC is set then a smbHome is mounted "on desktop". If UNC is not set, do nothing more
    b) if force is set, then a /Users/testAccount is created and if UNC is set then a smbHome is mounted "on desktop". If UNC is not set, do nothing more
    c) if force is NOT set:
    --c1) if UNC is not set and cannot map NFSHomedirectory at all, then login the user with such a temporary home
    --c2) if UNC is set mount SMBhome and use it as mounted home folder (NFSHomeDirectory-->SMBhome "/Network/Servers/my.server.com/users/testAccount")
    --c3) if UNC is not set then retrieve the homeDirectory-NIS's attribute in AD (NFSHomeDirectory--> "/homes/testAccount") and create /homes/testAccount
    my doubt now is point c2) after I login in with a "#mount" I get:
    trigger on /Network/Servers/my.server.com/users (autofs, automounted)
    //[email protected]/users on /Network/Servers/my.server.com/users (smbfs, nodev, nosuid, automounted, mounted by testaccount)
    but my SMBhome is not correctly mounted on remote server (but the Library folder and MCX files are created!) and I get home errors because the system is looking for "/homes/testAccount", which I don't know where it is coming out from given that a
    #dscl /Active\ Directory/my.server.com -read /Users/testaccount |grep homes gives only out dsAttrTypeNative:unixHomeDirectory: /homes/testAccount
    thanks,
    a.

    Is there any reference I could look up to?
    http://www.macwindows.com

  • PLEASE HELP-HOW DOES A LOADED IPOD GET INTRODUCED TO A DIFFERENT COMPUTER

    without losing the music on it? What has to happen, how, and when does it have to happen. I sold my IPOD and the new owner does not want to lose any of the music. People have written in that it can be done and it cant be done? please help. Jeff

    I have found that the format that the ipod is originally introduced to is the only format that will recognize the ipod. So if you format your ipod on a mac when you first get it, only other mac computers will recognize it and not windows computers. However, if you introduced it to a windows computer first, the ipod can be recognized by any machine. This is what my previous experiences shows. If you want the ipod to be recognized by any computer, you must restore the ipod and format it to windows or whichever computer the owner has (this will result in the loss of music and other files). Sorry.
    Hope this Helps!

  • How does the Approvals process work in Oracle Hyperion Planning v 11.1.2

    Hi,
    I have recently upgraded to Oracle Hyperion Planning v 11.1.2 and the way that the application handles budget / Forecast approvals appears to have changed.
    Is anyone able to direct me to a user manual or provide me with some guidance on how to set up the approvals process in the upgrade Oracle Hyperion Planning v 11.1.2.
    Currently I have the approvals hierarchy set to allow all approvals and have the approvals template set to bottom up, I have not put any values on the hierarchy and sub hierarchy tab as I want to drive approvals by entity only. I have set the correct Scenario and assigned the owners/approvers however when I start the approvals process the current owner is let sitting at no owner? Should this not pull though the owner set up under assign owners.
    When I log in as the owner of the planning unit I do get the option to promote the unit as set out in the assign owner hierarchy however when I attempt to do this I get the following error:
    Failed: Unauthorized New Owner
    I am relatively new to planning so any help you can provide me with would be much appreciated.
    Edited by: Bestie 279 on Aug 9, 2011 4:16 PM

    You might want to have a look at "Hyperion Planning Process Management Features explained By Example [Document 1226783.1]" in MOS.
    HTH-
    Jasmine.

  • How does the Login process work?

    Hello,
    How exactly does the default 'Login' process on the login page work?
    When the following code is executed:
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P1_USERNAME,
    P_PASSWORD => :P1_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':2'
    Does the execution continue to the code below or is it halted and the user is redirected to the flow page?
    I need to set the username and the user id (from SQL query WHERE username = :P1_USERNAME) ONLY IF the authentication has been successful, otherwise NULL them. What's the best way to do this?
    After the wwv_flow_custom_auth_std.login(...), how can I check if the user has been authenticated?
    Thanks :)
    Pavel

    hi pavel--
    wwv_flow_custom_auth_std.login sets :APP_USER and then redirects to p_flow_page upon successful login. when you say, "I need to set the username and the user id (from SQL query WHERE username = :P1_USERNAME) *ONLY IF* the authentication has been successful, otherwise NULL them" i'm guessing that you really want your user to not be logged in upon unsuccessful credential verification. if so, that would already be handled by wwv_flow_custom_auth_std. a good way to see this in action is to examine how the Sample Application handles authentication. the login page 101 does call wwv_flow_custom_auth_std with the supplied credentials, but if you don't pass the Authentication Function check specified in the Sample Application's custom authentication scheme, the session is still invalid, and the user is still on page 101. i'm pretty sure that's the behavior you want, but please clarify if not.
    thanks,
    raj

  • Does Replication agent process requests sequentially or parallely?

    I would like to know if the replication process is carried out by the agent in a sequential manner or parallel. My focus is on understanding when a replication agent queue is Blocked..?
    If for some reason, a page that is activated fails to get replicated does this cause a queue block situation and the requests made further remain pending in the queue?
    Thanks

    Yes. The queue is processed in first in first out order - if the replication of the first one fails it is put into the queue and retried endless till it succeeds with a time delay of 60000 milliseconds between retries.     The log of the agent queue will provide information why the replication fails.  More details about sling event and jobs at
    http://sling.apache.org/site/eventing-and-jobs.html

Maybe you are looking for

  • Is the macbook compatible with PC's programs and documents and etc?

    I am switching from a PC to a macbook very soon, and my mom is worried that I will have this macbook and if I'm in a project or something with someone who has a PC, and i need something to be switched from my computer to theirs, or vice versa, that i

  • How do I set up the email on the my new MacBook Pro to receive "me" email

    how do I set up the email on the my new MacBook Pro to receive "me" email on my Mac. I would like to use Entourage if possible but anything would be good. I am not sure this is the right place but I could not figure out where else to post an email (

  • How to make vtable read only

    Hi , I have a problem where our tests are panicing due to a corrupted vtable. The corresponding object is always the same and the corruption pattern is also the same. It is not reproducible on demand and the complexity of the code makes it difficult

  • CRM survey suite - Test URL - Blank Screen

    Hi All,     I generated the URL for a survey but when when I try to test it gives a blank screen. The system I am testing is a system copy of another system. In the source system the URL works fine. I have made changes in the xml file to point to the

  • System requirements e-commerce in ECC 6.0

    Can anybody give more info about system requirements for implementation of e-commerce webshop in ECC 6.0 (without CRM)? Many thanks in advance!