I have a console app which connects to a service reference that allows it to send SOAP calls to a service, which updates information in a separate program that I do not own or control. The console app works fine, and here is a bit of code just to give you an idea of what I'm doing.

public static void PlaceOrders(wsCHRUtilsSoapClient client)
    {
        //identifying vars for patient/provider (not part of orders)
        string patientID = "1234";
        string csn = "123456789";
        string orderingUser = "98765";
        string authProvider = "98765";
        string departmentID = "123456";
        string projectKey = "eProj-CDS";
        string messages;

        //Create order samples
        Order oOne = CreateOrder("LAB", "CBCD", "1", "yay its friday", null, null, null, null, null, null, null, "4",
            "13", null, null, null, null, null, null, null, ", , , ", null, null, null, null, null, null, null, null, null);

        ArrayOfOrderOrder orders = new ArrayOfOrderOrder();
        orders.Add(oOne);

        client.PlaceOrders(patientID, csn, orderingUser, authProvider, departmentID, projectKey, orders, out messages);
    }

CreateOrder method just returns an Order object, which is basically a glorified struct containing strings and enums based on strings (suggested by Intellisense so I know they're correct from the service reference). It works splendidly and I can immediately view the posted information on the host program.

Here's the same method in my web app:

public void PlaceOrders(object sender, EventArgs e)
    {
        wsCHRUtilsSoapClient client = new wsCHRUtilsSoapClient("wsCHRUtilsSoap");
        string messages;
        string orderPatID = this.orderPatID.Text;
        string orderCSN = this.orderCSN.Text;
        string orderOrderingUser = this.orderOrderingUser.Text;
        string orderAuthProvider = this.orderAuthProvider.Text;
        string orderDeptID = this.orderDeptID.Text;
        string orderProjKey = this.orderProjKey.Text;

        string strOrderType = this.orderType.Text;
        string orderCode = this.orderCode.Text;
        string strQuantity = this.quantity.Text;
        string comment = this.comment.Text;
        // ...Like 25 more strings that call their respective ASP textboxes...
        string rflPriority = this.rflPriority.Text;
        string processingInstructions = this.processingInstructions.Text;

        ArrayOfOrderOrder orders = new ArrayOfOrderOrder();
        Order order = CreateOrder(strOrderType, orderCode, strQuantity, comment, strFutureStanding, strStandingCount, standingInterval, 
            expirationDate, strAutoRelease, futureExpectedDate, strFutureApproximate, priority, orderClass, strPatientTaking, route, strDaw, 
            strDispenseQuantity, dispenseUnit, strRefill, sig, modifiers, rflFromProviderID, rflToProviderID, rflToFacility, rflToSpecialty, 
            rflType, rflReason, strRflNumVisits, rflPriority, processingInstructions);

        orders.Add(order);

        client.PlaceOrders(orderPatID, orderCSN, orderOrderingUser, orderAuthProvider, orderDeptID, orderProjKey, orders, out messages);
        client.Close();

The web app seems to sporadically update the program. I can't figure out a debug pattern or anything significant for when it works as opposed to when it doesn't. When it does update, it's usually not instantaneous. Can anybody offer any help?? I'm pretty new to C# and ASP.NET so there's a possibility I missed one of the nuances of correctly setting up the web app service reference (though I'm pretty sure I did it the same way for both applications).

Something I forgot that may be worth mentioning: The console app has a Main that just creates a client and runs the service, then exits. The web app runs and executes the function after I finish filling out the forms and click an ASP button.

link|improve this question

feedback

3 Answers

You should make sure that web.config contains the same configuration of your console app's app.config for the service.

And you should verify that you bound the method "PlaceOrders" to some event handler (Button click or any thing else)

link|improve this answer
I have PlaceOrders bound to OnCommand (and CommandName) for the ASP button. It's always hitting inside the function during a debug so I know it's always at least calling it. I found a big chunk of preloaded commented XML in the web.config file and deleted it, but that didn't really make a difference. Would the fact that I'm running from localhost make a huge difference when it comes to service references? – rownage Oct 7 '11 at 15:14
feedback

I don't see any obvious problems, but I didn't look all that carefully either...because your most obvious mistake is that your console method and your web method should in fact be identical. It's only the prep for calling it that should be different. You should refctor it so they are the same, and then retest.

link|improve this answer
The only reason they're not identical is because I don't have any variables in the console app. It's all hard-coded into the function call, whereas the web app takes values from the text boxes. – rownage Oct 7 '11 at 16:52
@rownage: I understand that, but if you make them identical you will know your process works. I would work with the console app first, extracting the hard coding out to either parameters or an object that is passed in, once that is done and is working, copy it over to your web app, verify that it works, then working on setting the values from your various text boxes. If you make it an object, you can have the object verify that all of othe correct properties have been set. Most likely your problem is an incorrect value from one of the text boxes, this lets you identify that. – jmoreno Oct 7 '11 at 17:55
feedback
up vote 0 down vote accepted

As it turns out, it was a problem on the service reference provider's side (though they initially insisted it wasn't). Thanks for all of you input everyone!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.