JimmyAndrews's Q&A profile
.NET Development SOAP/HTTP(S) Options Needed
I need my C# .NET 2.0 app to send and receive SOAP over HTTP and HTTPS, with and without keep-alive and gzip. This application is a tester that needs to stress-test the communications, and so I need to be able to do socket-level stuff like 1) not listen at times, 2) control the IP address I send from when running on a machine with multiple IPs, and 3) drop a connection after receiving a SOAP request without sending any response. For these reasons, I don't think I can use a web service or RPC for this solution, and it appears to me that .net remoting is RPC. If I have to, I'll use sockets and do the SOAP and HTTP myself, and use ...Show All
.NET Development Which Certificate do I purchase for WSE 3.0 from Verisign
I am using WSE 3.0 and the usernameToken approach to secure my public webservice. I need to purchase a X.509 certificate to install on the server and then install the public key on the client. This is all working with a certificate I created with MakeCert.exe. When I ring Verisign to purchase a certificate non of the sales reps have any ideas about webservices or WSE. All they try and sell me is SSL. I will need to purchase a "Microsoft Authenticode Code Signing Digital ID" to sign my client download for clickonce. Can anyone tell me what product I should ask for from verisign or equivalent CA. Is the x.509 certificate I am after any ...Show All
Visual Studio 2008 (Pre-release) MaxItemsInObjectGraph
I'm getting the following error. Error while trying to serialize parameter http://tempuri.org/:GetByUpdatedDateResult. Maximum number Error while trying to serialize parameter http://tempuri.org/:GetByUpdatedDateResult. Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change the object graph or increase the MaxItemsInObjectGraph quota. The method returns List<T> where there are about 1,900 items. Any ideas May this help < bindings > < netTcpBinding > < binding name = " SecureBinding " ...Show All
Windows Forms Engineering model didn't port from VB4 to VB5. Need help.
I use Visual Basic to write engineering calculations for complex problems. I don't do any database I/O or Internet interfacing - just math calcs. The models began yeas ago on TI59 programmable caclulator and have been steadily upgraded since. I recently upgraded from VB4 to VB5 and the routines seemed to come across ok at first. At about ...Show All
Windows Forms ClickOnce Deployment Error
Can anyone help with the following error It's happening when a user launches the application from IE. "Unable to install or run the application. The application requires that assembly stdole Version 7.0.3300.0 be installed in the Global Assembly Cache (GAC) first." "Unable to install or run the application. The application requires that assembly stdole Version 7.0.3300.0 be installed in the Global Assembly Cache (GAC) first." ...Show All
Visual Studio Express Editions How to retrieve month name in VB2005?
I'm trying to use this code but it generates an error: Dim thisDate1 As Date Dim thisMonth1 As String thisDate1 = DateString thisMonth1 = month(thisDate1) It generates an Error: value of type 'date' cannot be converted to 'integer' I use similar code retreive current year and it works: Dim thisDate As Date Dim thisYear As Integer thisDate = DateString thisYear = Year(thisDate) I want to retrieve current month name and assign it to string variable. How can I do that Using a Custom DateTime Format Strings try: thisMonth1 = thisDate1.ToString ...Show All
Visual Basic Why do the DEBUG (F9) breakpoints not trigger 80% of the time? How do I get it 100%?
Why do the DEBUG (F9) breakpoints not trigger 80% of the time How do I get it 100% Michael OK, so we need to make sure you are actually in the right configuration When you have the Solution in the Solution Explorer selected, go to the Property Browser window and let me know what the value is for "Active Config" thanks! Kathy PS. where are your breakpoints at btw is it in code that might be marked as either Debugger Step Through or Non User Code ...Show All
SQL Server GUID
Hello, I'm working on a smart client app that has an offline sql express store and needs to work with several types of central databases (support for multiple products - ms sql, DB2 etc) While trying to put together some offline functionality that needs the user to create records on the offline sql express data store, we've run into the need of being able to uniquely identify records so replicating the data in the offline store back into the primary database should not be a problem. The data created offline spans many tables and involves several tables with relation ships - FK etc...Clearly not a simple case of store and forward. ...Show All
Windows Forms Controls in DataGridHeaderCell
Could anyone tell me how to add a custom control inside of a DataGridHeaderCell I have created a custom control that consists of: one dropdownlist, two checkboxes, and one button. I now want to add that into the datagridview control header cell so that I can then use the custom control as a means of filtering, sorting (multiple sorts, sort orders 1-4 and ascending/descending), displaying statistics, and creating a graph onclick of the respective controls within my custom usercontrol. To do so, I need to know two things, and I'd appreciate the help if anyone is willing to share some knowledge with me. Questions: 1) - How do I add this contro ...Show All
Windows Forms what is "Interop.SIGPLUSLib"?
like subject. I have a program,refrece it!But I don't know how to use it! ************** Exception Text ************** System.Runtime.InteropServices.COMException (0x80040154): COM object with CLSID {14272504-E2BE-4976-A47C-7AEE1711C690} is either not valid or not registered. What's the Exception Text How do I solve it oh ,thanks! I find it,it's a screen catch software,he provide a 3thd&nbs ...Show All
Microsoft ISV Community Center Forums Command Buttons
Hello Friends.. There are 5 command buttons in a form... Each command button reads dat from serial port... My problem is...When we press a command button while it is been processing..mean while if the user presses other command button it should not function or activate...But I'm not able to do that... Please any one help me abt this... Bye suma Hello Suma Before the routine that starts reading data from the the port fires, set the enabled property of these buttons to False. This will disable the buttons. Once the routine that starts reading data from the the port finishes, reset the enabled ...Show All
Windows Forms How to display a form from another one
Hi all, I am developping an application in VB .Net 2003 with 4 forms. I have crated a main form with some menus. One of those menus should show another form. The problem is that when i referred to the name of this form, i can't acces the "show" method. The only way i found is to create a new instance of my form in the  ...Show All
.NET Development Async Webservice call in ASP.NET 1.1
I know while we call web service async.lly we can provide the call back function along with that. the same thing become problem in asp.net env...while i try to call back the function on asp.net page..it won't get affected. maulik soni www.spaces.msn.com/members/mauliksoni soni.maulik@gmail.com Hi, Could you please clarify what exactly your question is I don't understand what you are asking. If you are looking for information on making async calls to ASP.NET web pages please try posting your question to: http://forums.asp.net Thanks. Daniel roth ...Show All
Visual Studio Express Editions Declaring a Variable then Changing it later in a program
I'm a complete beginner at VB and programming in a general. So forgive me in this question is a no-brainer. Basically what I would like to do is have my program start with a variable with an initial value globally available then if the user chooses to a click a button have that variable changed through the input prompt and the returned new value to be carried back out to be available to the entire program. At this point I have my variable declared at the beginning and globally availabe and I have the button click set up to prompt for a new input. When the input is entered my lable change takes place and the new ...Show All
Visual Basic asp connection to godaddy mysql database
I'm trying to connect via asp to a godaddy mysql database on their server. I've created the database and added a users table. I have an opensource intranet (UAPortal) that is really plug&play, it comes with an Access database attached, so you just load it on your server and go. But I want to use it with the faster, more capable mysql server that comes with godaddy hosting. I have the connection strings given by godaddy, but when I try to incorporate that info into the common.asp file, I get this: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on 'localhost' (1006 ...Show All
