Software Development Network Logo
  • Visual J#
  • Windows Vista
  • VS Express Editions
  • Windows Live
  • Visual Studio
  • Visual C#
  • Windows Forms
  • .NET Development
  • Smart Device
  • Visual Basic
  • VS Team System
  • Architecture
  • Visual C++
  • Microsoft ISV
  • Visual FoxPro

Software Development Network >> .NET Development

.NET Development

New Question

socket.Receive() on blocking socket throwing WSAEWOULDBLOCK exception?
SSL X509Store
Dealing with an offline SAO
Accessing Web Service with SSL and Certificate problem
Killing a ThreadPool thread
SQL UPDATE - "No value given for one or more required parameters"
Update requires a valid UpdateCommand when passed DataRow collection with modified rows.
New to web services, soap client not referenced.
How to control CachePolicy when calling WS method??
Asynchronously Network Streaming Robot Servo Data

Top Answerers

luda
firehorizon
Russell Christopher
bktan
George Jodry
Hades Pta
al.grz
Luis Martinez
Messex
ieligazit
NakedFly
Only Title

Answer Questions

  • Synergy I can't send mail

    I write this code but it doesn't work. It just show "Email didn't send succesfully". I didn't know how to add UserName, Password and Port. Please help me. private void Button1_Click( object sender, System.EventArgs e) { Button1.Enabled = false ; try { System.Web.Mail.MailMessage myMessage = new System.Web.Mail.MailMessage(); myMesage.To = txtDen.Text; myMesage.From = txtTu.Text; myMesage.Subject = tx ...Show All

  • Nathan87 How to detect if a System.String containts non-ASCII characters

    TSIA... Is there a method, or some kind of quick test I can perform against a string to see if it contains anything other than ascii characters Thanks alot, Scott Thanks. That will work. ASCII characters are limited to the lowest 128 Unicode characters, from U+0000 to U+007F. so you can write a helper method to check the every single input character to verify whether or ...Show All

  • Cloned How to retrieve the Name of the DataType of a column

    Using MSSQL 2000 and VB2005. Want to get the data type of a column in a table in order to know if my insert command needs a convert statement. I Found TYPE_NAME but i can't get it to work. Any help would be appreciated Ger SqlDataReader class has GetSchemaTable method that returns metadata information. It could be what you need Thanks for your help. Thats what i needed to use. ...Show All

  • Pankaj Arora C# equiv of isdate?

    Hi, How do i check if a string contains a valid date Ex, i have a string ="jan 6 15:15", I want to set the year to 2006, but only if it's not already a valid date as is the case. so, the resulting string should be "jan 6 2006 15:15". but if the string already has a valid date, ex "jan 7 2005", I don't want to touch it. I try to use the datetime.parse inside a try/catch, but i couldn't get it to fail. It ...Show All

  • rlopez_icr WSE and Asynchronous WebMethod issue

    Hey, Does anyone know why asynchronous webmethods don't seem to work outside of ASP.NET in IIS I am trying to follow the example from the MSDN article below, and it works fine in ASP.NET under IIS but not in WSE hosted outside IIS. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconCreatingAsynchronousXMLWebServiceMethod.asp I tried the Begin/End signature and hosted it in WSE and it worked somewhat, but imme ...Show All

  • jsmans mt.exe doesn't like requireAdministrator

    Hi, In order to get my application to work as Administrator, I made a manifest file with the tags <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> </requestedPrivileges> </security> </trustinfo> and set Properties | Manifest Tool | Input and Output | ...Show All

  • Mike Harsh VS2003 : Connecting To Oracle 9I

    Hi everybody, Ok, totaly new a connecting VB.Net to Oracle using the Oracle Client.... But this comes back with "Unable to load DLL (oci.dll)." on my machine.............. Connecting with SQLplus or TOAD is not a problem..... Any clues   Code: Imports System.Data.OracleClient Imports Microsoft.VisualBasic   Public Class clOracle      Public conn As New Data.OracleClient.OracleConnection    &nb ...Show All

  • pentash Remoting Events Sample

    Hello, I have a sample project that uses remoting and events to inform clients of data changes. It works with the .NET Framework 1.1 but not with 2.0. Can someone please help I wasn't able to post the zip with the project, I can send it to you. Thanks. Reese I'll check these out. I had already read Rammer's fact but thanks. This is the error I'm getting. System.Net.Sockets.SocketException: No connection could be made be ...Show All

  • imec Registering a new user from the site does not work

    Why woould my page come back and confirm the account was created and when I look in the ASP.net configuration there is no account there that has been requested or created. THe page also gives the user the message the requerst has been sent to the administrator, me, for authorization, but I get nothing as far as a request goes. WHat am I missing Doug Hi cassman, I'm not sure I understand the context of your ...Show All

  • Gary Katz Consuming List with SOAP

    1 Hi! This is maybe OT, but I don't know where else to put it. I want to consume a Linux SOAP Web Service with C# .NET. (I wrote this web service with Perl and SOAP::Lite, so I can change the output, if necessary). The webservice returns a list of arbitary length. The message looks like this: -- < xml version="1.0" encoding="UTF-8" > <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins tance" xm ...Show All

  • staceyw .NET 2.0: XmlDocument and Validation

    Could someone give me a basic outline or point me to an article with a sufficient code sample to get me up to speed on how to validate an XmlDocument I've read from file against a schema (.xsd) file that is also on disk It seems this has been reworked in the DOM for the CLR 2.0 (the XmlValidatingReader class is now obsolete...). Here is what I worked up based on the scanty help files available with VS 2005 Beta 2: XmlSchemaSet schemaSet = ...Show All

  • Daphne.cheng representing XmlElement

    Hi,  I need to represent something like public struct MyStruct {  public string MyProp1;  public string MyProp2; } with the only intent to serialize its data into <a:MyStruct>  <a:MyProp1>...</a:MyProp1>  <a:MyProp2>...</a:MyProp2> </a:MyStruct> I can do it this way using struct or simple class, and providing something like ToString and manually create the xml string. ...Show All

  • yss Discrepancy between how Uri class parses URL and the way Internet Explroer does it?

    Here's a Google Desktop URL: " http://127.0.0.1:4664/&s=8lD6KsMwZ1Zd3ZWWqfZb327gN6g&q =". Internet Explorer properly treats everything after the last '/' as a query string (even though starting query string with '&' instead of ' ' is odd). To prove this is the case just look at the page sorce and see google desktop logo <img> has relative src=hp_logo.gif, which corresponds to http://127.0.0.1:4664/hp_logo.gif URL (ch ...Show All

  • Charles B Error in Query for Orders Table in Northwind

    Error in Query for Orders Table in Northwind I've been practicing with the queries wizard.  I think it is a great innovation.  However, either I'm doing something wrong or all the kinks haven't been worked out yet. I tried a query that should return all the orders: SELECT OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry F ...Show All

  • Bruder Hashtable and XmlSerializer

    Just a quick one for you; In Vs 2005 Beta 2 is it possible yet to serialize a hashtable property using the XmlSerializer. Thanks Graham You can always implement IXmlSerializable (now supported in .NET 2) and process the XML serialization actions yourself. Perhaps not what you'd want to do but I've used it to good effect. No, Serialize throws a NotSupportedException - "The type ...Show All

89909192939495969798990123456

©2008 Software Development Network

powered by phorum