473,396 Members | 2,076 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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 1375
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.netNoSpamM> skrev i
melding news:ea**************@tk2msftngp13.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.netNoSpamM> skrev i
melding news:ea**************@tk2msftngp13.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
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." ...
3
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? ...
2
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: ...
1
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 ...
3
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...
1
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
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...
0
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...
0
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,...

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.