Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Ali.M.Habib
Yak Posting Veteran
54 Posts |
Posted - 2011-02-06 : 06:35:00
|
I used the following code to create ENDPOINT -- CREATE THE END POITN -- by Ali Mahmoud Habib USE testGOCREATE ENDPOINT EndPointWorkList STATE = STARTEDAS HTTP(SITE = '192.0.0.1', PATH = '/virtualtest', AUTHENTICATION = (NTLM), --(INTEGRATED), --(NTLM), PORTS = ( CLEAR ),CLEAR_PORT = 8088)FOR SOAP (WEBMETHOD 'GetWorkList'(name='test.dbo.sptest', schema=STANDARD ),WSDL = DEFAULT,BATCHES = DISABLED,DATABASE = 'test' );GO I face the following problems - when trying to call the URL http://192.0.0.1:8088/virtualtest?wsdl , it ask me for the user name and password for the server 192.0.0.1 , how to overcome that - when try to call the same URL on mac it repeat the following word but the xml hierarchy not appear XML Schema describing the base types to which SQL Server types are being mapped. For more information, please consult the documentation. (c) Copyright 2004, Microsoft Corporation The following schema for Microsoft SQL Server is presented in XML format and is for informational purposes only. Microsoft Corporation ("Microsoft") may have trademarks, copyrights, or other intellectual property rights covering subject matter in the schema. Microsoft does not make any representation or warranty regarding the schema or any product or item developed based on the schema. The schema is provided to you on an AS IS basis. Microsoft disclaims all express, implied and statutory warranties, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, and freedom from infringement. Without limiting the generality of the foregoing, Microsoft does not make any warranty of any kind that any item developed based on the schema, or any portion of the schema, will not infringe any copyright, patent, trade secret, or other intellectual property right of any person or entity in any country. It is your responsibility to seek licenses for such intellectual property rights where appropriate. MICROSOFT SHALL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SCHEMA, INCLUDING WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL (INCLUDING ANY LOST PROFITS), PUNITIVE OR SPECIAL DAMAGES, WHETHER OR NOT MICROSOFT HAS BEEN ADVISED OF SUCH DAMAGES. any suggestion to solve this problems |
|
|
|
|
|
|