| Discussion: Elison says . . . . (4 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Hi lads/lasses, I recieved this link in an e mail today and thought it might help spark some discussion here. http://searchnd.jobnet.com.au/jobtools/ne customnews.newsMgt?in neit id 37188&in type EmailDetail&in organId 353 Mitch Denny http://www.warbyte.com mitch.denny@warbyte.com 61 (414) 610 141 |
|
| consume xml webservice (3 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Hello List, I create a web service in project A. I want to use it in project B. In project B (it is Not a VS.NET version of .NET project, it is a SDK version of .NET project) So I can not use vs.net to add web reference to project A's Web Service. I run wsdl.exe, specify namespace as myWebService ( /n:myWebService ) In project B, WebServiceClient.aspx, I wrote, %@ Import Namespace "myWebService" %... |
|
| Web services poll (5 replies) |
| ASPFriends.com 'aspngwebservices' list |
| I hope this list is an acceptable forum for such questions. If not I'm sure Charles or one of the moderators will let me know : ) Just wanted to get your opinions on some things: 1. I see a need for VB 6 and classic ASP clients to access Web services built with .NET, Java and others. I see this as the primary role of the SOAP toolkit more than building new Web services. Do you agree? 2. Are there ... |
|
| Something similar to tcpTrace? (4 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Hello all: I have been working quite closely with various aspects of XML Web Services lately. In the documentation from VS.NET and in other places, there is always the mention of using tcpTrace from http://www.pocketsoap.com as a great way to watch the SOAP packets that are sent and received, which I agree is a good tool. Though I am wondering first of all, why a similar tool was not anticipated t... |
|
| returning xmlnode from webservice (8 replies, VIP) |
| ASPFriends.com 'aspngwebservices' list |
| I have a webservice that returns an XmlNode. The consumer is a .net client and what I want to do is take the innerXML and load it into a dataset so that web controls can be bound. Here is an extract of what I have so far which is not very efficient: oNodeResult oWebService.GetStockQuote(oXML.InnerXml) oDocResult.LoadXml(oNodeResult.InnerXml) oDocResult.Save(Request.MapPath("\stockresult.xml")) oDa... |
|
| result of webservice in not dotnet plateform (2 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Copied from [aspngfreeforall] to [aspngwebservices] by G. Andrew Duthie (Moderator) graymad@att.net This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. NextPart 001 01C178F5.A9C3E896 Content Type: text/plain; charset "iso 8859 1" Hello: I am writing a webservice which will return a dataset as a result. It work fine... |
|
| consuming webservice with namespace (6 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Can anyone tell me what action I need to take on consuming clients to invoke a web service that has a namespace? My web service is set up as follows: WebService(Namespace: "http://testserver.com/getstockquote") Public Class GetStockQuote When my client invokes it I receive the following error which is telling me I have not passed in the correct namespace. Can someone point me in the right directio... |
|
| Delegates in web services (4 replies) |
| ASPFriends.com 'aspngwebservices' list |
| I am building a WebService that will need to cated for client callbacks (ie. certain updates and error status messages). I am wandering how Microsoft has resolved this issue and whether this is as easy as passing an appropriate delegate and calling Invoke on it from within the WebService object. Any help would be appreciated. Thanks. |
|
| vb6 and vb.net clients interpreting xmlnode from webservice (6 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Now that I've got my web service up and running I return an XmlNode as follows: Public Function GetStockQuote(ByVal sXML As String) As XmlNode When a .net client consumes this service there are no problems (as you would expect). When my vb6 client calls the service I get a type mismatch when trying to assign an IXMLDOMNode to the result: vb code Dim oWS As New MSSOAPLib.SoapClient Dim sXML As Stri... |
|
| Serializable classes in a WebService (13 replies) |
| ASPFriends.com 'aspngwebservices' list |
| I have a WebService with Serializable classes but when I add this WebService to a project it makes the reference to the objects without the Serializable Attribute, whether I use it through command line wsdl or through Add Web Reference in Visual Studio. I can change the reference class to reflect the Serializable attribute but whenever we change the WebService it overwrites it (which is the normal... |
|
| ReadOnly properties not being serialized to SOAP (3 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Hi, I have a webservice, that returns a object, one of the properties on the object is readonly. This readonly property is not getting serialized when the object is returned via a webservice. Is there anyway to force the serialization to include this property ?, i tried adding the XmlElement attribute, but this made no difference. On a similar note, is it possible to write custom serializer classe... |
|
| xml payloads and webservices (3 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Is XmlNode / XmlElement the only way to work with XML in ASP.NET web services ?, I want to do document/literal web services, and to generate the payload on the fly from a custom data source. It seems my options are to convert to my data to a bunch of classes that can be serialized, or to build a DOM and return an XmlElement. Can i cut the intermediate step out, i really want to build my payload wi... |
|
| Help! SqlDataReader in WebServices (4 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Dear all, I have a question upon web services data access. My scenario is I need to create a label (For example the label id Title) and the text within the label should called by database. I've check the ibuyspy example and found that ibuyspy use the SqlDataReader to call it from the database. I copy and amended the code as following Test.cs ..... public SqlDataReader GetTitle(){ SqlConnection myC... |
|
| Weather Data (6 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Does anyone know where I can get raw weather data based on zip in something like an XML format? I like Yasser Shohoud's web service, but I have found it not very reliable. Also, if anyone knows anything about traffic data, that would be appreciated as well. Thanks Devin |
|
| proxy class (5 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Hi all, I have w web service with two methods. One of them returns DataSet and the other one returns "my class". When I create proxy in the client program the DataSet remains DataSet, however "my class" is represented by a different proxy class. How can I tell Visual Studio to use the same "my class" both in server and client? TIA Kuba |
|
| Custom WSDL (3 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Hello all: I have a question for you. Let's say that I have an XML Web Service that I want to implement and I have created a custom WSDL file for this XML Web Service. I know how to create a WSDL file just fine, but how do I implement a custom WSDL file and associate it with my Web Service? By doing this, I would be bypassing the standard (auto generated) WSDL file at ?WSDL. Any help would be appr... |
|
| Web Services SECURITY? (3 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Anybody have good document on WS Security!! Has anybody seen any flaws in WS Security? It's a point I'm trying to prove to one of my client !! Thanks, Frederic Gaudet |
|
| how to redistribute webservice to windows nt 4.0 (7 replies) |
| ASPFriends.com 'aspngwebservices' list |
| hello all i developped one web service using vb.net and i tested it in windows 2000. it is working fine. i created the installation program for the web service and i was able to install it on windows nt4.0 machine(i didn't install .net on this windows nt4.0 machine). but when i access this webservice like(http://windowsnt4.0machine name/virtualdirectoryname/webservicefilename.asmx) it is displayin... |
|
| How to change default xml encoding? (2 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Our web service when generates the xml output includes the following encoding: ?xml version "1.0" encoding "utf 8" ? We would like to change the generated encoding to "iso 8859 2" but were not yet able to do so. Would appreciate your suggestions, Gabor |
|
| "The underlying connection was closed" error (5 replies) |
| ASPFriends.com 'aspngwebservices' list |
| Here is the situation : Webservices hosted by an intranet web server and published at proxy outside web server accessing those webservices one aspx page accessing twice the same webservice like this : Dim myws as new MyWebService myws.Method1() myws.Method1() Since a few days, I get the following error "The Underlying Connection was closed", after I refresh the page. (the first Load is OK, but the... |
|
| RE : Re: Web service (2 replies) |
| ASPFriends.com 'aspngwebservices' list |
| I have the same problem at home but not at work... What is RCO ??? | Mathieu Clerte | DBA & Development , MCP Message d'origine De : Kollen Glynn [mailto:kollen glynn@hotmail.com] Envoyé : jeudi 27 décembre 2001 08:03 À : aspngwebservices Objet : [aspngwebservices] Re: Web service Paul, are you using RC0? If so, I have noticed a bug of some sort with this build to the effect that yo... |
|
| best book on Web Services? (2 replies, VIP) |
| ASPFriends.com 'aspngwebservices' list |
| I need to choose one of the books below to start studying Web Services. Which should I get for the best intro to C#/XML .NET Web Services? I am an intermediate advanced web developer with 5 years experience in ASP/ADO/VB, and 1 month experience in .NET/C#. Any recommendations...? Microsoft .NET Web Services by Robert Tabor Applied SOAP: Implementing .NET Web Services by Kennard Scribner, Ken Scrib... |
|