DotNetNewsgroup.com  
web access to complete list of Microsoft.NET newsgroups
   home   |   control panel login   |   archive  |  
 
  carried group
academic
adonet
aspnet
aspnet.announcements
aspnet.buildingcontrols
aspnet.caching
aspnet.datagridcontrol
aspnet.mobile
aspnet.security
aspnet.webcontrols
aspnet.webservices
assignment_manager
datatools
dotnet.distributed_apps
dotnet.general
dotnet.myservices
dotnet.nternationalization
dotnet.scripting
dotnet.security
dotnet.vjsharp
dotnet.vsa
dotnet.xml
dotnetfaqs
framework
framework.clr
framework.compactframework
framework.component_services
framework.controls
framework.databinding
framework.drawing
framework.enhancements
framework.interop
framework.odbcnet
framework.performance
framework.remoting
framework.sdk
framework.setup
framework.webservices
framework.windowsforms
framework.wmi
frwk.windowsforms.designtime
lang.csharp
lang.jscript
lang.vb
lang.vb.controls
lang.vb.data
lang.vb.upgrade
lang.vc
lang.vc.libraries
  
 
Current group : microsoft.public.dotnet.framework.aspnet.webservices     1830 threads
page nr.:    1      2      3      4      5   



Schema type information provided by IXmlSerializable is invalid: Type 'string' is not declared   (2 messages)   Date: Wed, 18 Jul 2007 10:10:33 -0700
I've added the System.Xml.Serialization.XmlSchemaProvider attribute to my class to customize the schema. Some of the datatypes in my schema are strings, but I'm getting an error that string type is not declared. Can anyone ...

IXmlSerializable.GetSchema creates mutiple schema elements in my wsdl   (4 messages)   Date: Wed, 18 Jul 2007 09:29:33 -0700
I've built a class that uses the IXmlSerializable interface to do custom serialization. I"ve then used the IXmlSerializable.GetSchema() method to output the schema of my class to the wsdl in my web service. The problem ...

Good Soap Client   (3 messages)   Date: Wed, 18 Jul 2007 01:08:02 -0700
Hi guys, Do you know of any software that allows you to point to any web-service URL, paste the SOAP XML packet into a window, fire the pasted SOAP packet and see the returned XML SOAP XML in the same program? SOAP ...

MSDiscoCodegenerator Failure with VS2005 (used to work in VS2003)   (2 messages)   Date: Tue, 17 Jul 2007 14:59:10 -0700
Hi, I have a WSDL file that I am trying to use when adding a web reference to my project. I can successfully do this with Visual Studio 2003, but I get an error when trying to add the same wsdl as a web reference in Visual ...

asp.net web services deployment problem   (1 messages)   Date: Tue, 17 Jul 2007 07:52:00 -0700
This is the first project I worked in Visual Studio .NET 2005. I created a webservices by asp.net 2.0. The webservice works correctly in my development environment. When I published the webservice to the default website ...

.Net 2.0 : Soap client : reusing http connections ?   (7 messages)   Date: Tue, 17 Jul 2007 09:04:19 +0200
Hi, We have built an asp.net application that uses some web services (actually WSS web services). Because of high number of users and theirs simultaneous requests, web services are very frequently requested. Using ...

Returning Bare Type   (3 messages)   Date: Mon, 16 Jul 2007 18:29:48 -0700
Hi everyone, We have a web method which returns the following type: public class methodNameResult { public string responseCode = null; public string details = null; } Here is the ...

First Try Failing   (6 messages)   Date: Mon, 16 Jul 2007 12:58:05 -0700
Taking my first stab at creating a web service and failing when I try to add a web reference. To this point all I have done is added a web service to the application. It has the default HelloWorld method. In a separate ...

Mappoint   (1 messages)   Date: Mon, 16 Jul 2007 06:54:00 -0700
I have a requirement to display a map using lat/long coordinates on an XP Embedded machine but not using the internet. Does anyone know of a library (similar to Microsoft's Mappont product) that works locally with no ...

How to call a Web service by using a client certificate for authentication in an ASP.NET Web application   (1 messages)   Date: Fri, 13 Jul 2007 20:09:51 GMT
I created a walkthrough for "How to call a Web service by using a client certificate for authentication in an ASP.NET Web application"using makecert, certutil, WinHttpCertCfg.exe X509Certificate. You can find it here: ...

Invalid hexidecimal characters   (1 messages)   Date: Thu, 12 Jul 2007 08:53:18 -0700
I have a web service returning a class. Most of the time ther serialization and deserialization of the class works perfection. One of the properties of the class is a string which could contain characters (0x08 for example ...

Conecting web buttons to a web service   (2 messages)   Date: Thu, 12 Jul 2007 06:24:01 -0700
good day i need call a webservice when a button on a page is clicked. i am using visual web deveolper for this task ans i am guessing that i need to edit the onclick property of the button. could you help with the ...

Asynchronous Call Pattern Problem #2   (7 messages)   Date: Wed, 11 Jul 2007 11:12:21 -0400
My async web method does not seem to be truly asynchronous. My webmethod is supposed to immediately return "nothing" to a calling client while it makes its own webservice call to another remote thing. Could someone ...

login registration   (1 messages)   Date: Tue, 10 Jul 2007 13:32:56 GMT
As a user with not much experience of VS2005 I am having trouble with the membership and roles features. I am running VS2005 and have my website with an ISP who provides MS SQL2005 on another server I already have ...

WebServices and Entity   (1 messages)   Date: Mon, 9 Jul 2007 22:58:02 -0700
I have a following problem... I am looking for best and efficient solution for this problem. I have following entities ..(c#) public class Dog { .... some Properties and methods..... Dogs _friendDogs = new Dogs( ...

interfacing WS with EDI   (3 messages)   Date: Mon, 9 Jul 2007 16:45:22 -0700
I have a client that needs to interface with a vendor that uses EDI documents. for instance they use the EDI 850 purchase order document. Is there a good way to interface Web Services with EDI documents? -- Regards, Gary Blakely ...

Base WebService Page and Event?   (4 messages)   Date: Mon, 09 Jul 2007 11:15:50 -0400
I have a multiple Framework 2.0 .asmx.cs that have a string input property called "securityinput" on many WebMethods. Each .asmx.cs inherits from a base class that inherits from WebService. I would like to create a custom ...

problem sending significant whitespace in DataSets across webservice (dotnet 2.0)   (1 messages)   Date: Mon, 9 Jul 2007 17:29:49 +1000
Using VS2005, dotnet 2.0. Here's some code which reproduces the issue. Web Service code : == [WebMethod] public string SendDataSet(DataSet ds) { DataRow dr = ds.Tables[0].Rows[0]; ...

WARNING! Prosoftstore.com is a SCAM! WARNING!   (1 messages)   Date: Sun, 08 Jul 2007 03:03:51 -0700
A crowd calling themselves www.prosoftstore.com has been posting on this, and other newsgroups, offering cheap software and cracks. On NO account should you attempt to do business with them, they are a complete scam. If ...

Client side jscript issue   (3 messages)   Date: Fri, 6 Jul 2007 19:56:01 -0400
Working in Visual Studio Objective: I am trying to have my server side vb code construct a file name for use with my client side JavaScript code to then save the file to the web. My saving to the web method is working ...


page nr.:    1      2      3      4      5   
Google
 
Web dotnetnewsgroup.com


COPYRIGHT ?2005, EUROFRONT WORLDWIDE LTD., ALL RIGHT RESERVE  |   Contact us