Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7063801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:45:24+00:00 2026-05-28T04:45:24+00:00

I have a long db networking call and I want to populate my model

  • 0

I have a long db networking call and I want to populate my model in chunks. We are talking about asp.net MVC.
I have a vague idea that each time a new chunk is available I should trigger the model.Bind()
but I don’t know how to do the plumbing between

a) the service which is providing the data in chunks- it’s implemented using the event pattern- each time a new chunk is available an event is triggered, but which event ? It should hold a reference to the model?

b) the data which will be bound to the model ( i suppose it should not be an bind(), but an addition to some collection)

c) if everything is ok in steps a and b, then the changes will be propagated to the view without further a do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T04:45:25+00:00Added an answer on May 28, 2026 at 4:45 am

    You could use long polling with a hidden iframe and chunked transfer encoding from the server which will spit <script> tags as data becomes available. In this script tag you could invoke a custom callback javascript function that will take care to format the results.


    UPDATE:

    As requested in the comments section here’s a sample implementation of a long polling technique using a hidden iframe.

    Let’s suppose that you have some model:

    public class MyViewModel
    {
        public string Foo { get; set; }
    }
    

    and that you have a service that returns this model in chunks and notifies the caller that a chunk is available using events:

    public class MyService
    {
        public void GetModels(Action<MyViewModel, object> onModelAvailable, object state, Action onComplete)
        {
            Task.Factory.StartNew(x =>
            {
                try
                {
                    for (int i = 0; i < 10; i++)
                    {
                        onModelAvailable(new MyViewModel
                        {
                            Foo = "foo " + i
                        }, x);
                        Thread.Sleep(1000);
                    }
                }
                finally
                {
                    onComplete();
                }
            }, state);
        }
    }
    

    Now, we could have the following controller:

    public class HomeController : AsyncController
    {
        public ActionResult Index()
        {
            return View();
        }
    
        public ActionResult LongPoll()
        {
            var service = new MyService();
            return new MyActionResult(service);
        }
    }
    

    and the following view:

    <script type="text/javascript">
        // we define a callback function which will be invoked
        // when a chunk is available from the server
        var callback = function (model) {
            // the model variable passed here will represent the chunk
            $($('<div/>', {
                html: model.Foo
            })).appendTo('#result');
        };
    </script>
    
    <iframe style="display:none;" src="@Url.Action("longpoll")"></iframe>
    <div id="result"></div>
    

    Now the last part of course is the implementation of the custom action result which will do the chunked transfer:

    public class MyActionResult : ActionResult
    {
        private readonly MyService _service;
        public MyActionResult(MyService service)
        {
            _service = service;
        }
    
        public override void ExecuteResult(ControllerContext context)
        {
            var response = context.HttpContext.Response;
            response.BufferOutput = true;
            response.ContentType = "text/html";
            var wait = new ManualResetEvent(false);
            _service.GetModels((model, state) =>
            {
                var httpResponse = (HttpResponseBase)state;
                httpResponse.BufferOutput = true;
                httpResponse.ContentType = "text/html";
                var serializer = new JavaScriptSerializer();
                var script = string.Format(
                    "<script type=\"text/javascript\">window.parent.callback({0});</script>",
                    serializer.Serialize(model)
                );
                httpResponse.Write(script);
                httpResponse.Flush();
            },
            response,
            () =>
            {
                wait.Set();
            });
            wait.WaitOne();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have long HTTP request ( generating large Excel file - about 60K records
I have long text that I want to put in a few, but not
I have a Networking service that i want to use as a Service. It's
I have a .NET 3.5 server application that usually has about 8 clients. I'm
I have long cycles of GC. from checks I saw there are too many
Apple have long blocked mobile Safari from playing sounds – the usual JavaScript commands
I have long file with the following list: /drivers/isdn/hardware/eicon/message.c//add_b1() /drivers/media/video/saa7134/saa7134-dvb.c//dvb_init() /sound/pci/ac97/ac97_codec.c//snd_ac97_mixer_build() /drivers/s390/char/tape_34xx.c//tape_34xx_unit_check() (PROBLEM)/drivers/video/sis/init301.c//SiS_GetCRT2Data301() /drivers/scsi/sg.c//sg_ioctl()
I have long-lasting TCP connection between two computers (second not under my control). Second
Currently I have Long Pres Gesture Recognizers on four different TableViews (two in each
One thing with which I have long had problems, within the CakePHP framework, is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.