


I am trying to publish my website from VS 2005 and I am getting the aboveerror. when I try to create the target location ashttp://localhost/locationxxx, I get"you must choose a publish location that is different from source website".Can someone throw some light in this matter. When I created the...
Is there a way to get a list of stock quotes from yahoo finance into you c#application?I looked on the yahoo finance page and cannot see a wsdl end point.Can somebody please point me in the right direction?James...
I've built an XSLT file that transforms data to SpreadsheetML format. TheXSLT uses a <xsl:call-template/to build each worksheet. For some reason,when I transform the file, it is inserting xmlns="" attributes into my<Worksheetelements which causes the worksheet not to work with Excel. I'm...
Two question,1) is there a way to edit the interface of the display for when accessing aasmx file through the browser as opposed to that default web serviceinterface.For example what if i wanted to use a dropdown list for one of theparamaters. if this is possible how html, xslt ?2) can i assign...
Hi,I have a brief question regarding the .net framework renders classdefinitions of schemas to wsdl descritions.I have observed the following:1. I have a schema with a mandatory field (in this example a string) in myschema.2. When I convert this to a class (using xsd.exe) all is well. There isno...
Hi,I have just encountered this tool called XsdObjGen and is wondering why itis needed when you have XSD.EXE?Can someone points out some of the reasons why one should use XsdObjGen overXSd.exeThanksLeon...
Hi all,I wonder has anyone seen this behaviour with XsdObjGen tool, and if so, howdid you get around it?I have the following in a schema file:<xs:attribute name="sid" type="xs:long" use="required"/Notice the use="required" attribute...this genenerates the following code:[XmlAttribute(Attribut...
Given a schema as follows:<?xml version="1.0" encoding="UTF-8"?><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"elementFormDefault="qualified" attributeFormDefault="unqualified"><xs:element name="testEnum" type="TestEnumUse"/><xs:complexType name="TestEnumUse"><x...
How will I create the xsd schema for the following example.xsd.exe test.dll /type:MyGenericListOfstring ?[WebMethod]public MyList<string> HelloWorld(){MyList<string> results = new MyList<string>();results.Add("Hello World");return results;}[XmlType("MyGenericListOf{T}")]public...
HiOne of the parameters for my webservice will be xhtml formatted text. I'dlike to check this against an XSD to ensure it is valid, does anyone knowwhere I can get a copy of the XSD file I need for xhtml strict?ThanksPete...
hi,the .net tools are not really suited for that kind of approach, which is called ContractFirst. but it is possible.first you have to generate some .net types from the schema your webservice has to conform to. use the xsd.exe tool included in the sdk with the /classes switch.use the generated c...
We are using XMLObjectGen on our webservices side to compile the XSD basedschema types (DTOs) and are using these successfully on the webservicesside. We are able to add web references to these webservices in the theASP.NET Front end and the XSD compiler is generating the Proxies and theassociat...
HiI have got two xsd files. The first file is containing some complex types(for example a product structure). The second file is containing thestructure for some messages that a web service will send. The messages arereturning the product structure. The second file has importing the secondfile.W...
Hi,This is just a general question regarding the possibility of hosting awebservice on my PC at home (Windows XP). I may upgrade to XP Professional soI can get access to IIS. I was hoping I could maybe setup a web server underIIS, and place my Web Service in there. Then I was hoping i could get...
I have a class that is being returned by several WebMethods. Ok - all isgood.Now if I have this class implement IEnumerable, the data is no longerserialized.This class does contain a private ArrayList and has an Items property (readonly).Any suggestions?...
