473,750 Members | 2,529 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Add Web Reference does not generate all classes in proxy

Hi,

I have the wsdl below, for an Axis web service, and when I select Add Web
Refernce in Visual Studio the proxy is missing a class representing the
returnedElement sType (see reference.cs below the wsdl). This complex type is
a collection of another complex type(elementTyp e), and the Reference.cs has
an array of these rather than the single returnedElement sType. If If I want
to be able to obtain these elements from the SOAP response I have to manually
edit the Reference.cs and insert the returnedElement sType so that the proxy
matches the SOAP message from the server.

So the question is why is this class not generated, and what is there
anything I can do to ensure it is generated.

Thanks,

Richard.

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitio ns xmlns="http://schemas.xmlsoap .org/wsdl/"
xmlns:apachesoa p="http://xml.apache.org/xml-soap"
xmlns:sess="htt p://xml.apache.org/axis/session"
xmlns:soap="htt p://schemas.xmlsoap .org/wsdl/soap/"
xmlns:soapenc=" http://schemas.xmlsoap .org/soap/encoding/"
xmlns:tns="urn: wsdl.advancedqu ery.ws.biors.bi omax.de"
xmlns:types="ur n:advancedquery .ws.biors.bioma x.de"
xmlns:wsdl="htt p://schemas.xmlsoap .org/wsdl/"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
targetNamespace ="urn:wsdl.adva ncedquery.ws.bi ors.biomax.de">
<wsdl:types/>
<wsdl:types/>
<wsdl:types>
<schema targetNamespace ="http://xml.apache.org/axis/session"
xmlns="http://www.w3.org/2001/XMLSchema">
<simpleType name="sessID">
<restriction base="xsd:long"/>
</simpleType>
<element name="sessionID " type="sess:sess ID"/>
</schema>
<xsd:schema targetNamespace ="urn:advancedq uery.ws.biors.b iomax.de"
xmlns="urn:adva ncedquery.ws.bi ors.biomax.de"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema">
<!-- Input message elements -->
<xsd:simpleTy pe name="formatTyp e">
<xsd:annotation >
<xsd:documentat ion> Enumeration type giving the possible data
formats in which entries can be retrieved from the BioRS server. FASTA -
FASTA format. ENTRY - Complete entries in source formatting.
XML_ENTRY - Complete entry in BioRS internal XML markup. XML_ELEMENTS -
Entry separated into BioRS elements, formatted in BioRS internal XML.
ELEMENTS - Entry separated into BioRS elements, no additional formatting.
</xsd:documentati on>
</xsd:annotation>
<xsd:restrictio n base="xsd:strin g">
<xsd:enumeratio n value="FASTA"/>
<xsd:enumeratio n value="ENTRY"/>
<xsd:enumeratio n value="XML_ENTR Y"/>
<xsd:enumeratio n value="XML_ELEM ENTS"/>
<xsd:enumeratio n value="ELEMENTS "/>
</xsd:restriction >
</xsd:simpleType>
<xsd:complexTyp e name="requiredE lementsType">
<xsd:annotation >
<xsd:documentat ion> The requiredElement sType contains a list of
the names of the elements required when ELEMENTS or XML_ELEMENTS formatType
are specified, and only a subset of all elements are required. For other
result formats, or when all elements are required null can be provided for
this parameter. </xsd:documentati on>
</xsd:annotation>
<xsd:sequence >
<xsd:element maxOccurs="999" minOccurs="1" name="elementNa me"
type="xsd:strin g"/>
</xsd:sequence>
</xsd:complexType >
<!-- Return message elements -->
<xsd:complexTyp e name="returnedE lementsType">
<xsd:annotation >
<xsd:documentat ion> The returnedElement sType type represents a
collection ofl BioRS elements returned by a query. Each instance of this type
consists of one or more instance of elementType, each representing an
individual element. </xsd:documentati on>
</xsd:annotation>
<xsd:sequence >
<xsd:element maxOccurs="999" minOccurs="1" name="element"
type="elementTy pe"/>
</xsd:sequence>
</xsd:complexType >
<xsd:complexTyp e name="elementTy pe">
<xsd:annotation >
<xsd:documentat ion> The elementType type represents an individual
BioRS element returned by a query. Each instance of this type contains the
name of the element and the element content. </xsd:documentati on>
</xsd:annotation>
<xsd:sequence >
<xsd:element maxOccurs="1" minOccurs="1" name="elementNa me"
type="xsd:strin g"/>
<xsd:element maxOccurs="1" minOccurs="1" name="elementCo ntent"
type="xsd:strin g"/>
</xsd:sequence>
</xsd:complexType >
<xsd:element name="result">
<xsd:annotation >
<xsd:documentat ion> The result type contains a single result
returned by a BioRS query. Each results consists of the total number of
results for the query, the numer of this result, the databank the result is
from and either a complete result in the specified format, a collection of
elements, if the ELEMENTS result format was specified, or a message
indicating that no results matched the given query. </xsd:documentati on>
</xsd:annotation>
<xsd:complexTyp e>
<xsd:sequence >
<xsd:element maxOccurs="1" minOccurs="0" name="resultNum ber"
type="xsd:int"/>
<xsd:element maxOccurs="1" minOccurs="1" name="totalResu lts"
type="xsd:int"/>
<xsd:element maxOccurs="1" minOccurs="0" name="databank"
type="xsd:strin g"/>
<xsd:choice>
<xsd:element name="entry" type="xsd:strin g"/>
<xsd:element name="returnedE lements" type="returnedE lementsType"/>
<xsd:element name="noMatches Message" type="xsd:strin g"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType >
</xsd:element>
<!-- Methods signatures -->
<xsd:element name="getBiorsE ntry">
<xsd:annotation >
<xsd:documentat ion> Required parameters: username - username
to be used to connect to the BioRS server used by the service. password
- password matching the username provided. queryString - the query in
BioRS query language. returnFormat - the format in which results should
be returned (FASTA, ENTRY, XML_ENTRY, ELEMENTS, XML_ELEMENTS).
requiredElement s - an instance of type requiredElement sType containing the
names of the elements to be returned (or null). If you do not have a
username/password, set these as null to login as a guest.
</xsd:documentati on>
</xsd:annotation>
<xsd:complexTyp e>
<xsd:sequence >
<xsd:element maxOccurs="1" name="username" nillable="true"
type="xsd:strin g"/>
<xsd:element maxOccurs="1" name="password" nillable="true"
type="xsd:strin g"/>
<xsd:element maxOccurs="1" minOccurs="1" name="queryStri ng"
type="xsd:strin g"/>
<xsd:element maxOccurs="1" minOccurs="1" name="returnFor mat"
type="formatTyp e"/>
<xsd:element maxOccurs="1" minOccurs="0" name="requiredE lements"
type="requiredE lementsType"/>
</xsd:sequence>
</xsd:complexType >
</xsd:element>
<xsd:element name="getBiorsE ntryResponse">
<xsd:complexTyp e>
<xsd:sequence >
<xsd:element ref="result"/>
</xsd:sequence>
</xsd:complexType >
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="getBiorsE ntryResp">
<wsdl:part name="parameter s" element="types: getBiorsEntryRe sponse"/>
</wsdl:message>
<wsdl:message name="soapHeade r">
<wsdl:part name="sessID" element="sess:s essionID"/>
</wsdl:message>
<wsdl:message name="getBiorsE ntryReq">
<wsdl:part name="parameter s" element="types: getBiorsEntry"/>
</wsdl:message>
<wsdl:portTyp e name="BiorsAdva ncedQueryPortTy pe">
<wsdl:operati on name="getBiorsE ntry">
<wsdl:input message="tns:ge tBiorsEntryReq"/>
<wsdl:output message="tns:ge tBiorsEntryResp "/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="BiorsAdva ncedQuerySOAPBi nding"
type="tns:Biors AdvancedQueryPo rtType">
<soap:binding style="document "
transport="http ://schemas.xmlsoap .org/soap/http"/>
<wsdl:operati on name="getBiorsE ntry">
<soap:operati on soapAction="get BiorsEntry" style="document "/>
<wsdl:input>
<soap:header message="tns:so apHeader" part="sessID" use="literal"/>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:header message="tns:so apHeader" part="sessID" use="literal"/>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="BiorsAdva ncedQueryServic e">
<wsdl:port name="BiorsAdva ncedQuery"
binding="tns:Bi orsAdvancedQuer ySOAPBinding">
<soap:address
location="http://mips.gsf.de/ws/biorsws/services/BiorsAdvancedQu ery"/>
</wsdl:port>
</wsdl:service>
<wsdl:documenta tion xmlns:wsdl="htt p://schemas.xmlsoap .org/wsdl/">Web
Service providing the facility to query a BioRS server using the BioRS query
language. Clients invoking the service specify a query in BioRS query
language (mandatory), the result format to be returned and also optionally, a
specific list of elements to be returned (only applicable to the ELEMENTS and
XML_ELEMENTS result formats). Clients with their own username/password for
the BioRS server may provide these parameters, or if these a provided as null
a default "guest" username is used. A session is maintained between the
client and service via SOAP Header session IDs, and each invocation of an
operation of the service returns a successive entry from the set of entries
matching the given query, or a message indicating that no entries matched the
query. Each entry is returned with the number of the entry and the total
number of entries matching the query, enabling clients to determine when all
entries have been returned.</wsdl:documentat ion>
</wsdl:definition s>

#pragma warning disable 1591

namespace DotNet2Test.Bio rsAdvRef {
using System.Diagnost ics;
using System.Web.Serv ices;
using System.Componen tModel;
using System.Web.Serv ices.Protocols;
using System;
using System.Xml.Seri alization;
/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Web.S ervices",
"2.0.50727. 42")]
[System.Diagnost ics.DebuggerSte pThroughAttribu te()]
[System.Componen tModel.Designer CategoryAttribu te("code")]

[System.Web.Serv ices.WebService BindingAttribut e(Name="BiorsAd vancedQuerySOAP Binding", Namespace="urn: wsdl.advancedqu ery.ws.biors.bi omax.de")]
public partial class BiorsAdvancedQu eryService :
System.Web.Serv ices.Protocols. SoapHttpClientP rotocol {

private sessID sessionIDField;

private System.Threadin g.SendOrPostCal lback
getBiorsEntryOp erationComplete d;

private bool useDefaultCrede ntialsSetExplic itly;

/// <remarks/>
public BiorsAdvancedQu eryService() {
this.Url =
global::DotNet2 Test.Properties .Settings.Defau lt.DotNet2Test_ BiorsAdvRef_Bio rsAdvancedQuery Service;
if ((this.IsLocalF ileSystemWebSer vice(this.Url) == true)) {
this.UseDefault Credentials = true;
this.useDefault CredentialsSetE xplicitly = false;
}
else {
this.useDefault CredentialsSetE xplicitly = true;
}
}

public sessID sessionID {
get {
return this.sessionIDF ield;
}
set {
this.sessionIDF ield = value;
}
}

public new string Url {
get {
return base.Url;
}
set {
if ((((this.IsLoca lFileSystemWebS ervice(base.Url ) == true)
&& (this.useDefaul tCredentialsSet Explicitly ==
false))
&& (this.IsLocalFi leSystemWebServ ice(value) ==
false))) {
base.UseDefault Credentials = false;
}
base.Url = value;
}
}

public new bool UseDefaultCrede ntials {
get {
return base.UseDefault Credentials;
}
set {
base.UseDefault Credentials = value;
this.useDefault CredentialsSetE xplicitly = true;
}
}

/// <remarks/>
public event getBiorsEntryCo mpletedEventHan dler
getBiorsEntryCo mpleted;

/// <remarks/>
[System.Web.Serv ices.Protocols. SoapHeaderAttri bute("sessionID ",
Direction=Syste m.Web.Services. Protocols.SoapH eaderDirection. InOut)]

[System.Web.Serv ices.Protocols. SoapDocumentMet hodAttribute("g etBiorsEntry",
RequestNamespac e="urn:advanced query.ws.biors. biomax.de",
ResponseNamespa ce="urn:advance dquery.ws.biors .biomax.de",
Use=System.Web. Services.Descri ption.SoapBindi ngUse.Literal,
ParameterStyle= System.Web.Serv ices.Protocols. SoapParameterSt yle.Wrapped)]
[return: System.Xml.Seri alization.XmlEl ementAttribute( "result")]
public result
getBiorsEntry([System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied,
IsNullable=true )] string username,
[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied,
IsNullable=true )] string password,
[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
string queryString,
[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
formatType returnFormat,
[System.Xml.Seri alization.XmlAr rayAttribute(Fo rm=System.Xml.S chema.XmlSchema Form.Unqualifie d)]
[System.Xml.Seri alization.XmlAr rayItemAttribut e("elementName" ,
Form=System.Xml .Schema.XmlSche maForm.Unqualif ied, IsNullable=fals e)] string[]
requiredElement s) {
object[] results = this.Invoke("ge tBiorsEntry", new object[] {
username,
password,
queryString,
returnFormat,
requiredElement s});
return ((result)(resul ts[0]));
}

/// <remarks/>
public void getBiorsEntryAs ync(string username, string password,
string queryString, formatType returnFormat, string[] requiredElement s) {
this.getBiorsEn tryAsync(userna me, password, queryString,
returnFormat, requiredElement s, null);
}

/// <remarks/>
public void getBiorsEntryAs ync(string username, string password,
string queryString, formatType returnFormat, string[] requiredElement s,
object userState) {
if ((this.getBiors EntryOperationC ompleted == null)) {
this.getBiorsEn tryOperationCom pleted = new
System.Threadin g.SendOrPostCal lback(this.Onge tBiorsEntryOper ationCompleted) ;
}
this.InvokeAsyn c("getBiorsEntr y", new object[] {
username,
password,
queryString,
returnFormat,
requiredElement s},
this.getBiorsEn tryOperationCom pleted, userState);
}

private void OngetBiorsEntry OperationComple ted(object arg) {
if ((this.getBiors EntryCompleted != null)) {
System.Web.Serv ices.Protocols. InvokeCompleted EventArgs
invokeArgs = ((System.Web.Se rvices.Protocol s.InvokeComplet edEventArgs)(ar g));
this.getBiorsEn tryCompleted(th is, new
getBiorsEntryCo mpletedEventArg s(invokeArgs.Re sults, invokeArgs.Erro r,
invokeArgs.Canc elled, invokeArgs.User State));
}
}

/// <remarks/>
public new void CancelAsync(obj ect userState) {
base.CancelAsyn c(userState);
}

private bool IsLocalFileSyst emWebService(st ring url) {
if (((url == null)
|| (url == string.Empty))) {
return false;
}
System.Uri wsUri = new System.Uri(url) ;
if (((wsUri.Port >= 1024)
&& (string.Compare (wsUri.Host, "localHost" ,
System.StringCo mparison.Ordina lIgnoreCase) == 0))) {
return true;
}
return false;
}
}

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Xml ",
"2.0.50727. 42")]
[System.Serializ ableAttribute()]
[System.Diagnost ics.DebuggerSte pThroughAttribu te()]
[System.Componen tModel.Designer CategoryAttribu te("code")]

[System.Xml.Seri alization.XmlTy peAttribute(Nam espace="http://xml.apache.org/axis/session")]
[System.Xml.Seri alization.XmlRo otAttribute("se ssionID",
Namespace="http ://xml.apache.org/axis/session", IsNullable=fals e)]
public partial class sessID : System.Web.Serv ices.Protocols. SoapHeader {

private string[] textField;

/// <remarks/>
[System.Xml.Seri alization.XmlTe xtAttribute()]
public string[] Text {
get {
return this.textField;
}
set {
this.textField = value;
}
}
}

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Xml ",
"2.0.50727. 42")]
[System.Serializ ableAttribute()]

[System.Xml.Seri alization.XmlTy peAttribute(Nam espace="urn:adv ancedquery.ws.b iors.biomax.de" )]
public enum formatType {

/// <remarks/>
FASTA,

/// <remarks/>
ENTRY,

/// <remarks/>
XML_ENTRY,

/// <remarks/>
XML_ELEMENTS,

/// <remarks/>
ELEMENTS,
}

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Xml ",
"2.0.50727. 42")]
[System.Serializ ableAttribute()]
[System.Diagnost ics.DebuggerSte pThroughAttribu te()]
[System.Componen tModel.Designer CategoryAttribu te("code")]
[System.Xml.Seri alization.XmlTy peAttribute(Ano nymousType=true )]
public partial class result {

private int resultNumberFie ld;

private bool resultNumberFie ldSpecified;

private int totalResultsFie ld;

private string databankField;

private object itemField;

private ItemChoiceType itemElementName Field;

/// <remarks/>

[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
public int resultNumber {
get {
return this.resultNumb erField;
}
set {
this.resultNumb erField = value;
}
}

/// <remarks/>
[System.Xml.Seri alization.XmlIg noreAttribute()]
public bool resultNumberSpe cified {
get {
return this.resultNumb erFieldSpecifie d;
}
set {
this.resultNumb erFieldSpecifie d = value;
}
}

/// <remarks/>

[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
public int totalResults {
get {
return this.totalResul tsField;
}
set {
this.totalResul tsField = value;
}
}

/// <remarks/>

[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
public string databank {
get {
return this.databankFi eld;
}
set {
this.databankFi eld = value;
}
}

/// <remarks/>
[System.Xml.Seri alization.XmlEl ementAttribute( "entry",
typeof(string), Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
[System.Xml.Seri alization.XmlEl ementAttribute( "noMatchesMessa ge",
typeof(string), Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
[System.Xml.Seri alization.XmlEl ementAttribute( "returnedElemen ts",
typeof(elementT ype[]), Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]

[System.Xml.Seri alization.XmlCh oiceIdentifierA ttribute("ItemE lementName")]
public object Item {
get {
return this.itemField;
}
set {
this.itemField = value;
}
}

/// <remarks/>
[System.Xml.Seri alization.XmlIg noreAttribute()]
public ItemChoiceType ItemElementName {
get {
return this.itemElemen tNameField;
}
set {
this.itemElemen tNameField = value;
}
}
}

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Xml ",
"2.0.50727. 42")]
[System.Serializ ableAttribute()]
[System.Diagnost ics.DebuggerSte pThroughAttribu te()]
[System.Componen tModel.Designer CategoryAttribu te("code")]

[System.Xml.Seri alization.XmlTy peAttribute(Nam espace="urn:adv ancedquery.ws.b iors.biomax.de" )]
public partial class elementType {

private string elementNameFiel d;

private string elementContentF ield;

/// <remarks/>

[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
public string elementName {
get {
return this.elementNam eField;
}
set {
this.elementNam eField = value;
}
}

/// <remarks/>

[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied)]
public string elementContent {
get {
return this.elementCon tentField;
}
set {
this.elementCon tentField = value;
}
}
}

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Xml ",
"2.0.50727. 42")]
[System.Serializ ableAttribute()]

[System.Xml.Seri alization.XmlTy peAttribute(Nam espace="urn:adv ancedquery.ws.b iors.biomax.de" , IncludeInSchema =false)]
public enum ItemChoiceType {

/// <remarks/>
[System.Xml.Seri alization.XmlEn umAttribute(":e ntry")]
entry,

/// <remarks/>
[System.Xml.Seri alization.XmlEn umAttribute(":n oMatchesMessage ")]
noMatchesMessag e,

/// <remarks/>
[System.Xml.Seri alization.XmlEn umAttribute(":r eturnedElements ")]
returnedElement s,
}

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Web.S ervices",
"2.0.50727. 42")]
public delegate void getBiorsEntryCo mpletedEventHan dler(object sender,
getBiorsEntryCo mpletedEventArg s e);

/// <remarks/>
[System.CodeDom. Compiler.Genera tedCodeAttribut e("System.Web.S ervices",
"2.0.50727. 42")]
[System.Diagnost ics.DebuggerSte pThroughAttribu te()]
[System.Componen tModel.Designer CategoryAttribu te("code")]
public partial class getBiorsEntryCo mpletedEventArg s :
System.Componen tModel.AsyncCom pletedEventArgs {

private object[] results;

internal getBiorsEntryCo mpletedEventArg s(object[] results,
System.Exceptio n exception, bool cancelled, object userState) :
base(exception, cancelled, userState) {
this.results = results;
}

/// <remarks/>
public result Result {
get {
this.RaiseExcep tionIfNecessary ();
return ((result)(this. results[0]));
}
}
}
}

#pragma warning restore 1591
Feb 24 '06 #1
0 5114

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1463
by: Morgan E. Dunn | last post by:
Hi I've checked the other posts on this topic but haven't been able to resolve it so far -I have a working web service, that is to say I can view it/run it from a web browse -From VS.Net I can use the Add Web Reference dialog and add this referenc -However, from VS.Net 2003 the same localhost URL does not resolve and I get the "The proxy settings on this computer are not configured correctly for web discovery." message in the 'Web Services...
5
3083
by: Demetri | last post by:
Is it possible to add a web service reference during runtime? If so, how? -- -Demetri
3
5766
by: MIGUEL | last post by:
Hi all, I'm quite lost with how adding web references to a project creates proxy classes. I've developed a web service with two classes inside and that contains three references to three DLLs. After building it up, I've deployed it on the web server. From my Windows application, I then add a web reference to that web service.
1
2177
by: SrDhUS | last post by:
I get the following error when I try to add a web reference using Web Reference Dialog (VS .Net 2003) Error "The proxy settings on this computer are not configured correctly for web discovery." MSDN says: "The proxy settings on this computer are not configured correctly for Web discovery.
5
10336
by: Mike Logan | last post by:
I used WSDL.exe to generate a client side web proxy for a web service, called the web service, got the results but an array returned by the web service is not in the results. However if I use "Add Web Reference" for the same service the same function works appropriately. Here is the client proxy generated from WSDL.exe <System.Web.Services.Protocols.SoapDocumentMethodAttribute("capeconnect:AppSec:AppSecPortType#getApplicationUsers",
2
2394
by: Paul | last post by:
I have a class that references/consumes a webservice, and I would like to split that class into a base class to be used as a based for classes in each of two class libraries/DLLs. I have extracted the base class into a cs file and inherit from it in two class library projects by adding it to those projects using the "Link File" option when adding an existing itme to each of those projects. It all seems OK except the base class...
9
3016
by: Davidhere40 | last post by:
Do I have to use a web reference to access use a remote web reference? I can't seem to just use the proxy generated by my web services project, because that one never calls the remote service, its always a local one. Dave
5
3277
by: Thomas Lunsford | last post by:
I have been asked to allow one of our old-school .asp pages to support being used as a web service. Specifically, WSDL was mentioned. I am not an expert on this , but I have done quite a bit of reading, and I understand that I can create a WSDL file that supports HTTP POST and then use WSDL.exe with the proper parameters to generate a web service proxy. To this point, all I get from WSDL.exe when doing so is "Warning: no classes were...
8
2147
by: Frank Hauptlorenz | last post by:
Hello out there, I changed an existing and good working webservice from an wsHttpBinding to an NetTcpBinding. This is working (after trying some time) and has real a better performance! But one thing is strange: when I'm now actualising the web reference from within VS2008, VS2008 creates a 2nd endpoint config in my app.conf. The endpoint is exactly the same as the existing but the name and
0
9002
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8840
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9399
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9345
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6817
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6083
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4895
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3328
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2228
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.