Ask a Question related to ASP.NET General, Design and Development.
-
Marty McDonald #1
BUG - web service proxy generation
Using Visual Studio.Net...
I have two classes, one derives from the other.
My web service accepts the base class as input, it returns the derived class
as the return value.
When I set a web reference to that web service, the web service proxy is
incorrect! It creates its own version of the base class fine, but when it
creates its own version of the derived class, it shows it as simply deriving
from the base, but its own members are not there.
Here are my classes, then I'll show the web proxy portion...
using System;
///TODO: write comments.
namespace FunHouse.Business
{
/// <summary>
/// This class serves as input parameters for the Fun.
/// </summary>
public class FunParameters
{
private string _transId = "";
private string _refereeYYYYMMDD = "";
private float _arm = 0f;
private float _srmp = 0f;
private string _rahYYYYMMDD = "";
public string TransId
{
get{return _transId;}
set{_transId = value;}
}
public string RefereeYYYYMMDD
{
get{return _refereeYYYYMMDD;}
set{_refereeYYYYMMDD = value;}
}
public System.Single ARM
{
get{return _arm;}
set{_arm = value;}
}
public System.Single SRMP
{
get{return _srmp;}
set{_srmp = value;}
}
public string RahYYYYMMDD
{
get{return _rahYYYYMMDD;}
set{_rahYYYYMMDD = value;}
}
}//end class
/// <summary>
/// Serves as Fun output parameters. Extends FunParameters.
/// </summary>
public class FunParametersOut : FunParameters
{
private string _testingYYYYMMDD = "";
private Int32 _calculationReturnCode = 0;
private string _calculationReturnMessage = "";
public FunParametersOut()
{
_testingYYYYMMDD = "";
_calculationReturnCode = 0;
_calculationReturnMessage = "";
}
public string testingYYYYMMDD
{
get
{
return _testingYYYYMMDD;
}
}
public Int32 CalculationReturnCode
{
get{return _calculationReturnCode;}
}
public string CalculationReturnMessage
{
get{return _calculationReturnMessage;}
}
protected internal void SettestingYYYYMMDD(string realignmentDate)
{
_testingYYYYMMDD = realignmentDate;
}
protected internal void SetCalculationReturnCode(Int32 returnCode)
{
_calculationReturnCode = returnCode;
}
protected internal void SetCalculationReturnMessage(string returnMessage)
{
_calculationReturnMessage = returnMessage;
}
}
}//end namespace
Here is the proxy generated by Visual Studio.Net...
//--------------------------------------------------------------------------
----
// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.0.3705.288
//
// 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 Microsoft.VSDesigner, Version
1.0.3705.288.
//
namespace Fun33.localhost {
using System.Diagnostics;
using System.Xml.Serialization;
using System;
using System.Web.Services.Protocols;
using System.ComponentModel;
using System.Web.Services;
/// <remarks/>
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("c ode")]
[System.Web.Services.WebServiceBindingAttribute(Nam e="Service1Soap",
Namespace="http://tempuri.org/")]
public class Service1 :
System.Web.Services.Protocols.SoapHttpClientProtoc ol {
/// <remarks/>
public Service1() {
this.Url = "http://localhost/websvc1/service1.asmx";
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAt tribute("http://tempuri.o
rg/HaveFun", RequestNamespace="http://tempuri.org/",
ResponseNamespace="http://tempuri.org/",
Use=System.Web.Services.Description.SoapBindingUse .Literal,
ParameterStyle=System.Web.Services.Protocols.SoapP arameterStyle.Wrapped)]
public FunParametersOut HaveFun(FunParameters input) {
object[] results = this.Invoke("HaveFun", new object[] {
input});
return ((FunParametersOut)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginHaveFun(FunParameters input,
System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("HaveFun", new object[] {
input}, callback, asyncState);
}
/// <remarks/>
public FunParametersOut EndHaveFun(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((FunParametersOut)(results[0]));
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://tempuri.org/")]
[System.Xml.Serialization.XmlIncludeAttribute(typeo f(FunParametersOut))]
public class FunParameters {
/// <remarks/>
public string TransId;
/// <remarks/>
public string RefereeYYYYMMDD;
/// <remarks/>
public System.Single ARM;
/// <remarks/>
public System.Single SRMP;
/// <remarks/>
public string RahYYYYMMDD;
}
/// <remarks/>
HERE IS THE ERROR, THE DERIVED CLASS IS INCOMPLETE
[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://tempuri.org/")]
public class FunParametersOut : FunParameters {
}
}
-- Marty
Marty McDonald Guest
-
web service proxy
I'm trying to use the ServiceDescriptionImporter for generating proxies on the fly. I understand that this class does essentially the same thing as... -
WSE 1.0 proxy class generation
Per the msdn documentation, in order to use WSE 1.0 from a client app, "you need to change the base class of each of your proxies to... -
web service client i/o class generation
Hi, I am using Visual Studio .NET 2003 and am adding a web reference to a web service. One of the fields in a web service method output classes... -
Web Service Proxy Generation
Hi All, Got an annoying problem, hope you can help. I have created a .NET COM+ application using .NET Serviced Components. The problem I have is... -
Strange behaviour in WS-Proxy generation
Hi, I am trying to return an ArrayList from a Web Service: public ArrayList GetYearList() { int RangeStart =... -
Kevin Cunningham #2
Re: BUG - web service proxy generation
Actually it is not incomplete. In FunParametersOut your other properties
are read-only (no set) or protected. As for the other fields off
FunParametersOut (the ones inherited from FunParameters), they are handled
through the base class.
--
Kevin Cunningham
Software Architects, Inc.
"Marty McDonald" <mcdonama@wsdot.wa.gov> wrote in message
news:Oe%23PTSTXDHA.1888@TK2MSFTNGP10.phx.gbl...class> Using Visual Studio.Net...
> I have two classes, one derives from the other.
> My web service accepts the base class as input, it returns the derivedderiving> as the return value.
> When I set a web reference to that web service, the web service proxy is
> incorrect! It creates its own version of the base class fine, but when it
> creates its own version of the derived class, it shows it as simplyreturnMessage)> from the base, but its own members are not there.
> Here are my classes, then I'll show the web proxy portion...
> using System;
>
> ///TODO: write comments.
> namespace FunHouse.Business
> {
> /// <summary>
> /// This class serves as input parameters for the Fun.
> /// </summary>
> public class FunParameters
> {
> private string _transId = "";
> private string _refereeYYYYMMDD = "";
> private float _arm = 0f;
> private float _srmp = 0f;
> private string _rahYYYYMMDD = "";
>
> public string TransId
> {
> get{return _transId;}
> set{_transId = value;}
> }
>
> public string RefereeYYYYMMDD
> {
> get{return _refereeYYYYMMDD;}
> set{_refereeYYYYMMDD = value;}
> }
>
> public System.Single ARM
> {
> get{return _arm;}
> set{_arm = value;}
> }
>
> public System.Single SRMP
> {
> get{return _srmp;}
> set{_srmp = value;}
> }
>
> public string RahYYYYMMDD
> {
> get{return _rahYYYYMMDD;}
> set{_rahYYYYMMDD = value;}
> }
>
> }//end class
>
>
> /// <summary>
> /// Serves as Fun output parameters. Extends FunParameters.
> /// </summary>
> public class FunParametersOut : FunParameters
> {
> private string _testingYYYYMMDD = "";
>
> private Int32 _calculationReturnCode = 0;
>
> private string _calculationReturnMessage = "";
>
> public FunParametersOut()
> {
> _testingYYYYMMDD = "";
> _calculationReturnCode = 0;
> _calculationReturnMessage = "";
>
> }
>
> public string testingYYYYMMDD
> {
> get
> {
> return _testingYYYYMMDD;
> }
> }
>
>
> public Int32 CalculationReturnCode
> {
> get{return _calculationReturnCode;}
> }
>
> public string CalculationReturnMessage
> {
> get{return _calculationReturnMessage;}
> }
>
> protected internal void SettestingYYYYMMDD(string realignmentDate)
> {
> _testingYYYYMMDD = realignmentDate;
> }
>
> protected internal void SetCalculationReturnCode(Int32 returnCode)
> {
> _calculationReturnCode = returnCode;
> }
>
> protected internal void SetCalculationReturnMessage(string//--------------------------------------------------------------------------> {
> _calculationReturnMessage = returnMessage;
> }
> }
>
>
> }//end namespace
>
> Here is the proxy generated by Visual Studio.Net...
>if> ----
> // <autogenerated>
> // This code was generated by a tool.
> // Runtime Version: 1.0.3705.288
> //
> // Changes to this file may cause incorrect behavior and will be lost//--------------------------------------------------------------------------> // the code is regenerated.
> // </autogenerated>
>[System.Web.Services.Protocols.SoapDocumentMethodAt tribute("http://tempuri.o> ----
>
> //
> // This source code was auto-generated by Microsoft.VSDesigner, Version
> 1.0.3705.288.
> //
> namespace Fun33.localhost {
> using System.Diagnostics;
> using System.Xml.Serialization;
> using System;
> using System.Web.Services.Protocols;
> using System.ComponentModel;
> using System.Web.Services;
>
>
> /// <remarks/>
> [System.Diagnostics.DebuggerStepThroughAttribute()]
> [System.ComponentModel.DesignerCategoryAttribute("c ode")]
> [System.Web.Services.WebServiceBindingAttribute(Nam e="Service1Soap",
> Namespace="http://tempuri.org/")]
> public class Service1 :
> System.Web.Services.Protocols.SoapHttpClientProtoc ol {
>
> /// <remarks/>
> public Service1() {
> this.Url = "http://localhost/websvc1/service1.asmx";
> }
>
> /// <remarks/>
>
>asyncResult)> rg/HaveFun", RequestNamespace="http://tempuri.org/",
> ResponseNamespace="http://tempuri.org/",
> Use=System.Web.Services.Description.SoapBindingUse .Literal,
> ParameterStyle=System.Web.Services.Protocols.SoapP arameterStyle.Wrapped)]
> public FunParametersOut HaveFun(FunParameters input) {
> object[] results = this.Invoke("HaveFun", new object[] {
> input});
> return ((FunParametersOut)(results[0]));
> }
>
> /// <remarks/>
> public System.IAsyncResult BeginHaveFun(FunParameters input,
> System.AsyncCallback callback, object asyncState) {
> return this.BeginInvoke("HaveFun", new object[] {
> input}, callback, asyncState);
> }
>
> /// <remarks/>
> public FunParametersOut EndHaveFun(System.IAsyncResult[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://tempuri.org/")]> {
> object[] results = this.EndInvoke(asyncResult);
> return ((FunParametersOut)(results[0]));
> }
> }
>
> /// <remarks/>
>
>[System.Xml.Serialization.XmlIncludeAttribute(typeo f(FunParametersOut))]>[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://tempuri.org/")]> public class FunParameters {
>
> /// <remarks/>
> public string TransId;
>
> /// <remarks/>
> public string RefereeYYYYMMDD;
>
> /// <remarks/>
> public System.Single ARM;
>
> /// <remarks/>
> public System.Single SRMP;
>
> /// <remarks/>
> public string RahYYYYMMDD;
> }
>
> /// <remarks/>
> HERE IS THE ERROR, THE DERIVED CLASS IS INCOMPLETE
>
>> public class FunParametersOut : FunParameters {
> }
> }
> -- Marty
>
>
Kevin Cunningham Guest
-
Marty McDonald #3
Re: BUG - web service proxy generation
But FunParametersOut does have three properties (testingYYYYMMDD,
CalculationReturnCode, CalculationReturnMessage) that should be available,
but they are not. Isn't that still an error? It would seem that a consumer
of the web service should have access to those properties.
Marty McDonald Guest
-
Yan-Hong Huang[MSFT] #4
RE: BUG - web service proxy generation
Hello Marty,
I will look into it and reply you with my finding here. Thanks.
Best regards,
Yanhong Huang
Microsoft Online Partner Support
Get Secure! - [url]www.microsoft.com/security[/url]
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
!From: "Marty McDonald" <mcdonama@wsdot.wa.gov>
!Subject: BUG - web service proxy generation
!Date: Thu, 7 Aug 2003 15:38:06 -0700
!Lines: 214
!X-Priority: 3
!X-MSMail-Priority: Normal
!X-Newsreader: Microsoft Outlook Express 6.00.2600.0000
!X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
!Message-ID: <Oe#PTSTXDHA.1888@TK2MSFTNGP10.phx.gbl>
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!NNTP-Posting-Host: 164.110.202.164
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:165959
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!Using Visual Studio.Net...
!I have two classes, one derives from the other.
!My web service accepts the base class as input, it returns the derived
class
!as the return value.
!When I set a web reference to that web service, the web service proxy is
!incorrect! It creates its own version of the base class fine, but when it
!creates its own version of the derived class, it shows it as simply
deriving
!from the base, but its own members are not there.
!Here are my classes, then I'll show the web proxy portion...
!using System;
!
!///TODO: write comments.
!namespace FunHouse.Business
!{
! /// <summary>
! /// This class serves as input parameters for the Fun.
! /// </summary>
! public class FunParameters
! {
! private string _transId = "";
! private string _refereeYYYYMMDD = "";
! private float _arm = 0f;
! private float _srmp = 0f;
! private string _rahYYYYMMDD = "";
!
! public string TransId
! {
! get{return _transId;}
! set{_transId = value;}
! }
!
! public string RefereeYYYYMMDD
! {
! get{return _refereeYYYYMMDD;}
! set{_refereeYYYYMMDD = value;}
! }
!
! public System.Single ARM
! {
! get{return _arm;}
! set{_arm = value;}
! }
!
! public System.Single SRMP
! {
! get{return _srmp;}
! set{_srmp = value;}
! }
!
! public string RahYYYYMMDD
! {
! get{return _rahYYYYMMDD;}
! set{_rahYYYYMMDD = value;}
! }
!
! }//end class
!
!
! /// <summary>
! /// Serves as Fun output parameters. Extends FunParameters.
! /// </summary>
! public class FunParametersOut : FunParameters
! {
! private string _testingYYYYMMDD = "";
!
! private Int32 _calculationReturnCode = 0;
!
! private string _calculationReturnMessage = "";
!
! public FunParametersOut()
! {
! _testingYYYYMMDD = "";
! _calculationReturnCode = 0;
! _calculationReturnMessage = "";
!
! }
!
! public string testingYYYYMMDD
! {
! get
! {
! return _testingYYYYMMDD;
! }
! }
!
!
! public Int32 CalculationReturnCode
! {
! get{return _calculationReturnCode;}
! }
!
! public string CalculationReturnMessage
! {
! get{return _calculationReturnMessage;}
! }
!
! protected internal void SettestingYYYYMMDD(string realignmentDate)
! {
! _testingYYYYMMDD = realignmentDate;
! }
!
! protected internal void SetCalculationReturnCode(Int32 returnCode)
! {
! _calculationReturnCode = returnCode;
! }
!
! protected internal void SetCalculationReturnMessage(string returnMessage)
! {
! _calculationReturnMessage = returnMessage;
! }
! }
!
!
!}//end namespace
!
!Here is the proxy generated by Visual Studio.Net...
!//-------------------------------------------------------------------------
-
!----
!// <autogenerated>
!// This code was generated by a tool.
!// Runtime Version: 1.0.3705.288
!//
!// 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 Microsoft.VSDesigner, Version
!1.0.3705.288.
!//
!namespace Fun33.localhost {
! using System.Diagnostics;
! using System.Xml.Serialization;
! using System;
! using System.Web.Services.Protocols;
! using System.ComponentModel;
! using System.Web.Services;
!
!
! /// <remarks/>
! [System.Diagnostics.DebuggerStepThroughAttribute()]
! [System.ComponentModel.DesignerCategoryAttribute("c ode")]
! [System.Web.Services.WebServiceBindingAttribute(Nam e="Service1Soap",
!Namespace="http://tempuri.org/")]
! public class Service1 :
!System.Web.Services.Protocols.SoapHttpClientProto col {
!
! /// <remarks/>
! public Service1() {
! this.Url = "http://localhost/websvc1/service1.asmx";
! }
!
! /// <remarks/>
!
![System.Web.Services.Protocols.SoapDocumentMethodAt tribute("http://tempuri.
o
!rg/HaveFun", RequestNamespace="http://tempuri.org/",
!ResponseNamespace="http://tempuri.org/",
!Use=System.Web.Services.Description.SoapBindingUs e.Literal,
!ParameterStyle=System.Web.Services.Protocols.Soap ParameterStyle.Wrapped)]
! public FunParametersOut HaveFun(FunParameters input) {
! object[] results = this.Invoke("HaveFun", new object[] {
! input});
! return ((FunParametersOut)(results[0]));
! }
!
! /// <remarks/>
! public System.IAsyncResult BeginHaveFun(FunParameters input,
!System.AsyncCallback callback, object asyncState) {
! return this.BeginInvoke("HaveFun", new object[] {
! input}, callback, asyncState);
! }
!
! /// <remarks/>
! public FunParametersOut EndHaveFun(System.IAsyncResult asyncResult)
!{
! object[] results = this.EndInvoke(asyncResult);
! return ((FunParametersOut)(results[0]));
! }
! }
!
! /// <remarks/>
!
![System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://tempuri.org/")
]
!
[System.Xml.Serialization.XmlIncludeAttribute(typeo f(FunParametersOut))]
! public class FunParameters {
!
! /// <remarks/>
! public string TransId;
!
! /// <remarks/>
! public string RefereeYYYYMMDD;
!
! /// <remarks/>
! public System.Single ARM;
!
! /// <remarks/>
! public System.Single SRMP;
!
! /// <remarks/>
! public string RahYYYYMMDD;
! }
!
! /// <remarks/>
!HERE IS THE ERROR, THE DERIVED CLASS IS INCOMPLETE
!
![System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://tempuri.org/")
]
! public class FunParametersOut : FunParameters {
! }
!}
!-- Marty
!
!
!
Yan-Hong Huang[MSFT] Guest



Reply With Quote

