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 7041131
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:00:05+00:00 2026-05-28T02:00:05+00:00

I call QueryJourneys that makes an asynchronous call to d2 but then it fails

  • 0

I call QueryJourneys that makes an asynchronous call to d2 but then it fails when attempting to download some content (XML) with the WebClient, also asynchronously.

I get the exception InvalidOperationException with the string “Task_Start_NullAction” as the only message.

What is wrong?

The calling code:

    autoCompleteBox.ItemsSource = await OpenAPI.QueryStation(e.Parameter);

The code behind throwing the exception:

    public static Task<IEnumerable<Journey>> QueryJourneys(
                                                 Point from, 
                                                 Point to, 
                                                 DateTime lastStart)
    {
        string str = cs_requestResultPage(from, to, lastStart);

        Task<IEnumerable<Journey>> t = d2(str);
        t.Start();
        return t;
    }

    private static async Task<IEnumerable<Journey>> d2(string str)
    {
        var webClient = new WebClient();
        webClient.Encoding = Encoding.UTF8;

        string t = await webClient.DownloadStringTaskAsync(new Uri(str));
        var view = new ResultPageView(XDocument.Parse(t));

        return view.Journeys;
  • 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-28T02:00:06+00:00Added an answer on May 28, 2026 at 2:00 am

    The problem is the call to Task.Start(). The task returned by an async method can’t explicitly be started – it’s already effectively in progress when the method returns. You can return it directly from the QueryJourneys method:

    public static Task<IEnumerable<Journey>> QueryJourneys(Point from, Point to,
                                                           DateTime lastStart)
    {
        string str = cs_requestResultPage(from, to, lastStart);
        return d2(str);
    }
    

    As an aside, I’d strongly recommend that you start giving methods more meaningful names, following .NET naming conventions.

    (As another aside, it’s always worth saying which method threw an exception – in this case it’s presumably Task.Start.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i call a web service that returns some HTML which enclosed in an XML
Call me crazy, but I'm the type of guy that likes constructors with parameters
Every call to the server gets the Accept-Language value, but can I get that
Call me a 'n00b', but I am new to creating Script Controls. I want
I call the following function with a mouseover event but it's not working. My
I call this a flash meeting, but maybe there is another more appropriate name.
I call addNotify() method in class that I posted here. The problem is, that
A call to getLocationOnScreen() or getLocationInWindow() both give me a top/Y coordinate that is
call = https://aaa@api.twilio.com/2010-04-01/Accounts/sasa/Calls.xml fields = { To : +12321434, From : req.body.from } request.post
Call me lame, but I'm tired of my subconscious C-x C-s nervous twitch. I

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.