| .net client + Axis 1.1 server + wrapped param: null result (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I have used the following settings in our web services: .net framework 1.1 web services client Axis 1.1 server (in wsdd file, set style "wrapped") Using axis client calls the server, it works fine. However, .net client always returns null, even though the soap message has the result, for example, for the simple function string getSession(string username, string password); The SOAP messages in the ... |
|
| .NET Consumer sending SOAP request to a Web Serivce on Axis/Apache returns only the first tag (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| If I hit the web service hosted on Axis/Apache server from .NET by the usual route; get WSDL, create proxy, call from a ASP.NET. A method of the WS is supposed to return a XML with data, however, the string the Web Method is returning is only the value of first element HRMErrorText in the SOAP response. However, if I hit the WS using a standalone tool that can send SOAP request, it returns all the... |
|
| Binding a WSDL file to a web service class (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I started developing an ASP.NET web service by explicitly designing the WSDL and separating the data type definitions into XSD files. I followed the steps described in the following MSDN article to enlist the help of VS.NET in doing this through the use of separate namespaces and the [WebServiceBindingAttribute]. See : http://msdn.microsoft.com/library/default.asp?url /library/en us/dnservice/html... |
|
| Calling a web service with nillable Value Types (VIP replies) |
| microsoft.public.dotnet.framework.webservices |
| Hi! I'm calling a web service using C# and a wrapper class generated by wsdl tool. The web service specification contains some nillable parameters which types are Value Types in .NET (long, int, Decimal, ....) and I must to send them as null, and not their default value. It is possible? Is there any trick to succeed it? Thanks in advance, Marc. |
|
| Customize WSDL Files Generated By VS.NET (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I want to tailor the xml schema in the SOAP request portion of aWSDL file because the one auto generated by Visual Studio.NET is not specific enough for my web service. Does anyone know how to either customize the auto generated WSDL file, or if that's not possible, to change the link on the asmx page to a WSDL file I've created manually. Or do you have any suggestions for a better way to achieve ... |
|
| Fw:Compiler Error Message: Need Help On trying to get BabelFish web service to run (VIP replies) |
| ASPFriends.com 'aspngfreeforall' list |
| Original Message From: Dennis West To: aspngxml Sent: Thursday, November 15, 2001 8:13 AM Subject: Nedd Help On trying to get BabelFish web service to run I am at this point now with this error occuring Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. C... |
|
| HTTP Authentication for web services (VIP replies) |
| microsoft.public.dotnet.framework.webservices |
| Hi, I have to use a Java web service that requires HTTP authentication, so I have to send username and password in the HTTP headers. My C# application has a client implementation that looks like this: [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Web.Services.WebServiceBindingAttribute(Name "MyServiceSoapBinding", Namespace "h... |
|
| Nedd Help On trying to get BabelFish web service to run (VIP replies) |
| ASPFriends.com 'aspngxml' list |
| I am at this point now with this error occuring Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0246: The type or namespace name 'BabelFish' could not be found (are you missing a using directive or an assembly reference?) Sour... |
|
| Properly returning a collection through a web service (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| What am I doing wrong? I have been working on this for many days, and I am almost there. I have a collection of structures, that work great when working directly with a Winform Application. They even work great in a web service, it is when I try to get the returned collection into a proper collection. I am not sure how much sense that makes. Here is the code I have: Dim objWS As New BBSStructuresW... |
|
| Proxy class not reading data returned in SOAP response (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I'm trying to create a .NET client to consume a Java web service. The company that owns the web service does not publish a WSDL, but they do publish an API document with examples of each supported request and its corresponding response. I've manually created a WSDL file based on their examples, and generated a proxy class using WSDL.EXE. The proxy class appears to send a valid request because I ca... |
|
| Receive and return bare XML in C#/ASP.NET Web Service (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| All I wanted to do was implement a web service where I'd receive an XML document and return one in response. I'd already figured out how to use XmlReader and XmlWriter classes to do the XML work I need to do. And all that fancy ASP.NET serialization really got in my way. Reading articles by Yasser Shohoud, Tim Ewald, and Matt Powell led me down many promising paths, along the way writing an XSD sc... |
|
| WSDL file produces useless class when imported with WSDL.exe (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I am having a problem with a WSDL file supplied by a client. When WSDL.exe is used, the WSDL file (shown later) produces the following output class. As you can see there are no methods. WSDL.exe does not raise any errors. There either something wrong with the WSDL file or WSDL.exe. Anyone know what may be wrong???? The class generated with WSDL.exe............................. // // autogenerated ... |
|
| wsdl.exe and Nillable Value Types (VIP replies) |
| microsoft.public.dotnet.framework.webservices |
| I am attempting to use wsdl.exe to generate a Web Service Client in C# from a valid WSDL file generated by Apache Axis. My application requires the ability to distinguish between an unspecified value and a specified value. For that reason, the WSDL that is generated by Apache Axis utilizes 'nillable "true"' to permit Web Services Clients to indicate a value or specify 'nil'. The problem I am havin... |
|
| C# Client (SoapHttpClientProtocol) and Secure Web Service |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I am having trouble coding this simple soap client to submit a soap package over https to the desitnation URL. What do I need to do in my class in order to support client server soap exchange over secure sockets? Shouldn't this class SoapHttpClientProtocol handle the SSL stuff for me? Does it? What is supposed to be a simple test of the akamai purge api (there end is written in java I believe) has... |
|
| consuming webservice with namespace |
| 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... |
|
| DIME help |
| microsoft.public.dotnet.framework.webservices.enhancements |
| Hi, when I run wsdl.exe on a wsdl file, this is the cs file generated. //////////////CS/////////////////// // // autogenerated // This code was generated by a tool. // Runtime Version: 1.1.4322.342 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // /autogenerated // // // This source code was auto generated by wsdl, Version 1.1.4322.342. // u... |
|
| error creating proxy class |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I'm going through the Web Service Proxy examples in the WROX Prof. ASP.NET book but am stuck on this error when the proxy class is instantiated (please see error messages pasted below). It says that the WebServiceBinding Attribute is required on proxy classes, but I cannot find any documentation explaining why or how to include it. My entire proxy class is pasted below the error messages. Thoughts... |
|
| how 2 call someone ELSE's webservice |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I've created my own webservices in .NET for my web application. I don't know all the innards of how they work, but i can do it w/ the gui. Now someone has a service they want me to call. I have a WSDL file and a location the guy sent me, where the service is located. Well I'm not sure what to do from here. I'm used to having an asmx file where all my code is :) And I can call a function in the asm... |
|
| How to dinamically change WebService namespace? |
| microsoft.public.dotnet.framework.webservices.enhancements |
| Hi all I'm developing a client server application which use WebServices, this application will be installed in more than a intranet network, so I'm using dynamic behaviour and it seem to work fine, but this way it uses a fixed namespace (actually my machine) I know I can put this on our company's web site, but this way customers needs a permanent internet connection which I don't like. What I'd li... |
|
| How To dynamically create proxy object from WSDL |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi, How can I dynamically create a proxy or call a web service from a WSDL URL. I need to call a variable number of web services which all implement a known method. I can call the services by creating one proxy and changing the URL property. This fails though because the parameters to WebServiceBindingAttribute and SoapRpcMethodAttribute are not correct. Is it possible to change these attributes a... |
|
| InvalidOperationException when executing a web service |
| microsoft.public.dotnet.framework.webservices |
| I am getting a terribly vexing error from a .Net generated SOAP client. Here it is: System.InvalidOperationException: Method ServiceRequest.customService can not be reflected. System.InvalidOperationException: The XML element name 'service' references a method and a type. Change the method's message name using WebMethodAttribute or change the type's root element using the XmlRootAttribute. I've mu... |
|
| Invoke Method Returning Nothing |
| microsoft.public.dotnet.framework.webservices |
| I have had a working application using .NET 1.0 where I am calling an internet web service (Webshere hosted). The web service proxy classes were generated from a wsdl file using wsdl.exe. I have migrated my app to VS2003, and hence to .NET framework 1.1, however when I call the web service, the result (Result()) returned by the Invoke method is nothing, even though I can see the web service return... |
|
| NET CLient working with Apache SOAP server |
| microsoft.public.dotnet.framework.aspnet.webservices |
| 1) How do you get .NET Web Service Client to send the 'Authorization: Basic' Header? 2) How do you get .NET Web Service Client to send SOAP Headers? I tried to send a SOAP header following MS example but it didn't work. The example was for a WEB Service NOT a Web Service Client. The doc says it should work for both but I didn't see it work (No SOAP headers were sent to Apache I used Apache's TCP T... |
|
| object returned but properties stay empty... |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hey everybody, My Delphi SOAP Server returns an Object of type TTypeObject (home made ; ) The object has just 1 property, and it's a STRING. That doesn't sound too hard I think. However, when I call the function that returns the object, the app. receives the object alright, but the property (STRING) stays empty. I created the client with C# out of Visual Studio.NET and the importing and creation o... |
|
| Providing custom schema |
| microsoft.public.dotnet.framework.aspnet.webservices |
| If you build your web services as ASP.NET C# classes, the .NET Framework generates wsdl on the fly in response to a ?wsdl http get. The resulting type information in the generated wsdl is lacking things such as min and max occurs, min and max length etc. since there is no way to get that from introspecting the classes and methods. Is there a way to provide more robust schema and still make use of ... |
|