December 5th, 2006 12:13 PM
I realized that I had "Enable Anonymous Access" turned ON in IIS mgr. This was allowing any Tom, ****, and Harry to run my asmx via the anonymous IUSR_MACHINENAME acct.
After doing that I realized...
December 4th, 2006 11:46 PM
I have a webservice that I developed using VS2005. I then created a front end application that will make calls to the asmx page.
The webservice (asmx file) has many functions that are proprietary...
November 22nd, 2006 01:48 PM
I found out that you can't pass a multi-dimensional array to a webservice. So I just passed 2 single dimensional arrays. Messy, but it works.
November 22nd, 2006 01:08 PM
Getting an error...
string [,] aryKeys = new string[10, 2];
int nKeysGenerated = 0;
//error: CS0022: Wrong number of indices inside [], expected '2'
aryKeys[nKeysGenerated][0] = "key1 first...
November 22nd, 2006 12:03 PM
I need to create an array that will hold an uknown (at compile time) number of string pairs.
[0] = "pair1 first string", "pair1 second string"
[1] = "pair2 first string", "pair2 second string"...
August 18th, 2006 06:36 PM
August 15th, 2006 03:06 PM
My client (consumer) application is making a call to a webservice that in turn downloads a file back to the consumer. This file transfer can take a long time and i want to provide the user a way to...