473,606 Members | 2,200 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web serveces?

Hello
Is it a part of the Web servece standard that the web servece always wil
return a spesification file?
(the Service1.wsdl)

We have a company that are ofering a web service to us, but I can't connect
to it with Visual Studio.net
becace it does not return the wsdl file at its URL

Is it possible to set up the object manualy at the client (VS.net) witout
the WSDL file returned from the server?
e.g. can I manuely create the WSDL file at the client or is it other ways to
create the object at the client?

Regards
Vidar Martinsen

Jul 21 '05 #1
3 1385
WSDL is part of the specification, but automatically returning WSDL is not.
Ask the company for the WSDL for their service and you should be able to
connect just fine.

You can, of course, create a WSDL file if you know the URL for the service
and the input and output. The best method here is to create your own service
with the same interface(s) and get the WSDL. You can then change the URL to
theirs and run their service. But, they should be able to provide WSDL for
connection.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** *************** *************** *************** **********
Think Outside the Box!
*************** *************** *************** *************** **********
"news.online.no " <vi************ *@ft.dep.no> wrote in message
news:xW******** *********@news4 .e.nsc.no...
Hello
Is it a part of the Web servece standard that the web servece always wil
return a spesification file?
(the Service1.wsdl)

We have a company that are ofering a web service to us, but I can't connect to it with Visual Studio.net
becace it does not return the wsdl file at its URL

Is it possible to set up the object manualy at the client (VS.net) witout
the WSDL file returned from the server?
e.g. can I manuely create the WSDL file at the client or is it other ways to create the object at the client?

Regards
Vidar Martinsen

Jul 21 '05 #2
Hi
Thanks for your ansver
I have tryed to do somthing like this, but I can't find out where to change
the URL to the company's Web serveces
I use VS.net and have tryed to change all the URLs i find in the properties
under WEB reference, but it still use my (dummy) web serveces and not the
company's.
Greatful for answers.

Regards
Vidar Martinsen
"Cowboy (Gregory A. Beamer)" <No************ @comcast.netNoS pamM> skrev i
melding news:ea******** ******@tk2msftn gp13.phx.gbl...
WSDL is part of the specification, but automatically returning WSDL is not. Ask the company for the WSDL for their service and you should be able to
connect just fine.

You can, of course, create a WSDL file if you know the URL for the service
and the input and output. The best method here is to create your own service with the same interface(s) and get the WSDL. You can then change the URL to theirs and run their service. But, they should be able to provide WSDL for
connection.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** *************** *************** *************** **********
Think Outside the Box!
*************** *************** *************** *************** **********
"news.online.no " <vi************ *@ft.dep.no> wrote in message
news:xW******** *********@news4 .e.nsc.no...
Hello
Is it a part of the Web servece standard that the web servece always wil
return a spesification file?
(the Service1.wsdl)

We have a company that are ofering a web service to us, but I can't connect
to it with Visual Studio.net
becace it does not return the wsdl file at its URL

Is it possible to set up the object manualy at the client (VS.net) witout the WSDL file returned from the server?
e.g. can I manuely create the WSDL file at the client or is it other

ways to
create the object at the client?

Regards
Vidar Martinsen


Jul 21 '05 #3
Have you tried changing the UrlBehavior to dynamic and the changed the URL
in your .config-file?
/Henke

"news.online.no " <vi************ *@ft.dep.no> skrev i meddelandet
news:95******** *********@news4 .e.nsc.no...
Hi
Thanks for your ansver
I have tryed to do somthing like this, but I can't find out where to change the URL to the company's Web serveces
I use VS.net and have tryed to change all the URLs i find in the properties under WEB reference, but it still use my (dummy) web serveces and not the
company's.
Greatful for answers.

Regards
Vidar Martinsen
"Cowboy (Gregory A. Beamer)" <No************ @comcast.netNoS pamM> skrev i
melding news:ea******** ******@tk2msftn gp13.phx.gbl...
WSDL is part of the specification, but automatically returning WSDL is

not.
Ask the company for the WSDL for their service and you should be able to
connect just fine.

You can, of course, create a WSDL file if you know the URL for the service
and the input and output. The best method here is to create your own

service
with the same interface(s) and get the WSDL. You can then change the URL

to
theirs and run their service. But, they should be able to provide WSDL for connection.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** *************** *************** *************** **********
Think Outside the Box!
*************** *************** *************** *************** **********
"news.online.no " <vi************ *@ft.dep.no> wrote in message
news:xW******** *********@news4 .e.nsc.no...
Hello
Is it a part of the Web servece standard that the web servece always wil return a spesification file?
(the Service1.wsdl)

We have a company that are ofering a web service to us, but I can't

connect
to it with Visual Studio.net
becace it does not return the wsdl file at its URL

Is it possible to set up the object manualy at the client (VS.net)

witout the WSDL file returned from the server?
e.g. can I manuely create the WSDL file at the client or is it other

ways
to
create the object at the client?

Regards
Vidar Martinsen



Jul 21 '05 #4

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

Similar topics

6
5794
by: raj | last post by:
When I try to sort my combo box I get the following error. "Cannot sort a ComboBox that has a DataSource set. Sort the data using the underlying data model." --------------------------------THe code is given below. String strSQL; strSQL = "SELECT .......... WHERE C.Client = '" + this.cboClient.SelectedValue + "' ";
3
2816
by: Viktor | last post by:
I want the dialog box with the parameters to be sent to the Clipboard, so that later I could past it to the output file. Is there any way in C# to do this? Or maybe through the InterOp serveces? There is a function "Clipboard.SetDataObject" in C#, which can do this. But I could not find a way to send the bitmap of my dialog box to it. Any ideas?
2
1326
by: Sergi Adamchuk | last post by:
I need determine which web service (class WebService or its inheritors) serveces current request (I need Type instance of class that serves request). For example you wrote your own WebService: public class MyService : WebService .... Now I need to know the Guid of WebService class that serves current
1
1008
by: news.online.no | last post by:
Hello Can someone tel me why My defined object wont work in a WEB servece. The web servece does not return any XML when TestW is Invoked <WebMethod()> Public Function TestW() As Returobjekt TestW.mTest1 = "ABC" TestW.mTest2 = "DEF"
3
375
by: news.online.no | last post by:
Hello Is it a part of the Web servece standard that the web servece always wil return a spesification file? (the Service1.wsdl) We have a company that are ofering a web service to us, but I can't connect to it with Visual Studio.net becace it does not return the wsdl file at its URL Is it possible to set up the object manualy at the client (VS.net) witout
1
1075
by: martin.nkm | last post by:
Hello, I have two questions. 1/ If I want to use Python and let my WinPC communicate via RS-232 with external embedded computer I know there is a pyserial module, which I can use it. But what will happen if I want to replace RS-232 by USB? I know I can have virtual COM port, but all the configuration parameters basically refer to RS-232 parameters - baudrate, bits, stopbits, parity. In case of USB that's a nonsense I think. Does anybody...
0
8015
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
8439
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8094
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,...
0
8305
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
5966
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
5465
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
3930
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2448
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
1
1553
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.