473,546 Members | 2,196 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 1382
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
5790
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
2807
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. ...
2
1317
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
1004
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...
1
1070
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...
0
7947
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...
1
7461
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...
0
7794
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...
0
6030
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5361
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...
0
5080
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...
0
3492
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...
0
3472
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1922
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

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.