Ask a Question related to ASP.NET Web Services, Design and Development.
-
Jukka Kenttälä #1
Different urls to same ws?
Hi!
We are developing a web service that needs to use several
databases (each company that uses this web service has
their own database). Is it possible to create a different
url for each database and still use the same web service?
Is it possible to have company 'A' use web services by
referencing [url]http://www.xxx.fi/A/service1.asmx?wdsl[/url] and
company 'B' using [url]http://www.xxx.fi/B/service1.asmx?wdsl[/url] ?
And if we can somehow use different urls then how can we
tell in web service code which url the request came from?
Thanks in advance.
Jukka Kenttälä Guest
-
iframe URLS
Hi, I was wondering whether it was possible to define a URL which links to a page containing and iframe and define which src to display in the... -
Removing .cfm in SES urls
Hi. I run search engine friendly url's on my site located on a shared server. For example http://www.domain.com/index.cfm?id=500 converted to... -
How to get URLs to transfer to PDF
I've added a few URLs to text in my FH file (using the NAVIGATION pane). But they don't carry over to the PDF when printing to acrobat distiller. Is... -
dynamic URLS convert to static URLS for search engines
We use ASP.net and all our pages are dynamically created and search engines such as Google does not like dynamically created pages to index. What is... -
URLs and MT-NewsWatcher
I'm using Version 3.2 NewsWatcher on OS X 10.2.6. I have had three unpredictable behaviors when command-clicking or option-clicking a URL in a... -
MSFT #2
RE: Different urls to same ws?
Hello,
From the description, you want to access a web service from different URL.
To achieve this, we can store the web service related files in a physical
folder, for example c:\webservice. In IIS, we can create multiple virtual
folder to the physical folder, for example, webserviceA and webserviceB.
And the web service can be access with:
[url]http://www.xxx.fi/webserviceA/service1.asmx?wdsl[/url]
[url]http://www.xxx.fi/webserviceB/service1.asmx?wdsl[/url]
In the web service, you can distinguish the request from different url with
following string:
Context.Request.Path
Hope this help,
Luke
Microsoft Online Support
Get Secure! [url]www.microsoft.com/security[/url]
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
MSFT Guest



Reply With Quote

