1
Answer

Java Web Service with .NET Client

ashokper

ashokper

20y
1.7k
1
Hi All, I have been given a .WSDL file for a web service and i need to use the web service using my .NET client [ windows based ] application. I am in need to send a Soap Header values while i am requesting a methods in the Web Service. In the Jave side, they have used some frame work and they haven't created any separate class for the SOAP header. But my .NET cleint needs to send a SOAP header information. I think, this is a extremely different scenario. Can anybody help me out and solve my problem. Regards, S.S.Ashok
Answers (1)
0
tejal bhesaniya

tejal bhesaniya

NA 53 13.2k 12y
SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[YourTable]') if it exist then it will display the result,,,with table name ,,,tpe and everything
0
Naresh Avari

Naresh Avari

NA 811 1.6m 12y
Select your database and open new query window and

EXEC sp_tables @table_type = "'table'"


0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 12y
hi,

there are two tables sys.tables and sys.objects, in which data base maintain table information
please try.

select * from sys.tables where name = 'Table1'

select * from sys.objects where type = 'U' and type_desc = 'USER_TABLE'


hope this will help you.