473,770 Members | 6,978 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Add Web Reference makes multiple requests fir WSDL

I am trying to use a web service from a non Microsoft product. When I do a "Add Web Reference" from the Visual Studio dialog box, a request is generated and received by the web services supplier. This request contains information in the "Authorization: " header. Valid WSDL is returned and the dialog box correctly shows the services and methods available. However, a second request is also sent to the WS supplier for the same information. This request does not contain autorization information. Can anyone tell me why this is occurring and (hopefully) how to stop it?
Nov 21 '05 #1
4 2730
Can you post a link to the web service that you are trying to consume?

--
Jared Parson [MSFT]
ja******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Brian" <Br***@discussi ons.microsoft.c om> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
I am trying to use a web service from a non Microsoft product. When I do a
"Add Web Reference" from the Visual Studio dialog box, a request is
generated and received by the web services supplier. This request contains
information in the "Authorization: " header. Valid WSDL is returned and the
dialog box correctly shows the services and methods available. However, a
second request is also sent to the WS supplier for the same information.
This request does not contain autorization information. Can anyone tell me
why this is occurring and (hopefully) how to stop it?

Nov 21 '05 #2
I am testing this on a LAN that is not available to the outside world. At the
risk, of creating a long reply, I will append an annotated version of the
TCP/IP log that illustrates the problem. I hope this helps.
Brian
//
// Read from Add Web Reference, authentication info provided by .NET
//
Fri Aug 06 13:53:44 2004 Stream: GET /helloservice.ws dl HTTP/1.1

Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword,
*/*

Accept-Language: en-us

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR
1.1.4322)

Host: 192.168.2.15:12 34

Connection: Keep-Alive

Authorization: Basic Ync6QWRnag==


//
// My server send back WSDL
//
Fri Aug 06 13:54:47 2004 SoapPortal: send(1460) 2299 bytes
HTTP/1.1 200 URL Found

Server: Morpheus 1.0

Date: Fri, 6 Aug 2004 19:54:47 GMT

Connection: Keep-Alive

Content-Type: text/xml

Content-Length: 02139

<?xml version="1.0" encoding="utf-8"?><definition s
xmlns:http="htt p://schemas.xmlsoap .org/wsdl/http/"
xmlns:soap="htt p://schemas.xmlsoap .org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:s0="http://www.aspnetsbs.c om/webservices/"
xmlns:soapenc=" http://schemas.xmlsoap .org/soap/encoding/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:mime="htt p://schemas.xmlsoap .org/wsdl/mime/"
targetNamespace ="http://www.aspnetsbs.c om/webservices/"
xmlns="http://schemas.xmlsoap .org/wsdl/"> <types> <s:schema
elementFormDefa ult="qualified"
targetNamespace ="http://www.aspnetsbs.c om/webservices/"> <s:element
name="HelloWorl d"> <s:complexTyp e> <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
</s:sequence> </s:complexType> </s:element> <s:element
name="HelloWorl dResponse"> <s:complexTyp e> <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorl dResult"
type="s:string" /> </s:sequence> </s:complexType>
</s:element> </s:schema> </types> <message name="HelloWorl dSoapIn">
<part name="parameter s" element="s0:Hel loWorld" /> </message> <message
name="HelloWorl dSoapOut"> <part name="parameter s"
element="s0:Hel loWorldResponse " /> </message> <portType
name="Service1S oap"> <operation name="HelloWorl d"> <input
message="s0:Hel loWorldSoapIn" /> <output message="s0:Hel loWorldSoapOut"
/> </operation> </portType> <binding name="Service1S oap"
type="s0:Servic e1Soap"> <soap:binding
transport="http ://schemas.xmlsoap .org/soap/http" style="document " />
<operation name="HelloWorl d"> <soap:operati on
soapAction="htt p://www.aspnetsbs.c om/webservices/HelloWorld" style="document "
/> <input> <soap:body use="literal" /> </input>
<output> <soap:body use="literal" /> </output> </operation>
</binding> <service name="Service1" > <port name="Service1S oap"
binding="s0:Ser vice1Soap"> <soap:address
location="http://192.168.2.131/Chapter_11/Service1.asmx" /> </port>
</service></definitions>
//
// .Net asks for wsdl a second time, but no authorization is given!
// Note that this time the user agent given contains "MS Web Services Client
Protocol..."
//
Fri Aug 06 13:54:47 2004 Stream: GET /helloservice.ws dl HTTP/1.1

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
Protocol 1.1.4322.573)

Host: 192.168.2.15:12 34


//
// My server reponds with a HTML "Not Found", since no authorization included
//
Fri Aug 06 13:54:58 2004 SoapPortal: send(1220) 273 bytes
HTTP/1.1 404 Not Found

Server: Morpheus 1.0

Date: Fri, 6 Aug 2004 19:54:58 GMT

Connection: Keep-Alive

Content-Type: text/html

Content-Length: 00112

<html>

<head><META HTTP-EQUIV="Expires" CONTENT="0"><ti tle>Morpheus
Server</title></head>

\ not found<BR>
Fri Aug 06 13:54:58 2004 SoapPortal: send data returned 0
//
// At this point the Add Web Reference Dialog box indicates that it found
correct WSDL,
// but also gives a message about proxy setting not configured correctly for
web discovery.
//

"Jared Parsons [MSFT]" wrote:
Can you post a link to the web service that you are trying to consume?

--
Jared Parson [MSFT]
ja******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Brian" <Br***@discussi ons.microsoft.c om> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
I am trying to use a web service from a non Microsoft product. When I do a
"Add Web Reference" from the Visual Studio dialog box, a request is
generated and received by the web services supplier. This request contains
information in the "Authorization: " header. Valid WSDL is returned and the
dialog box correctly shows the services and methods available. However, a
second request is also sent to the WS supplier for the same information.
This request does not contain autorization information. Can anyone tell me
why this is occurring and (hopefully) how to stop it?


Nov 21 '05 #3
What happens if you run WSDL from the command line?

--
Jared Parson [MSFT]
ja******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Brian" <Br***@discussi ons.microsoft.c om> wrote in message
news:1B******** *************** ***********@mic rosoft.com...
I am testing this on a LAN that is not available to the outside world. At
the
risk, of creating a long reply, I will append an annotated version of the
TCP/IP log that illustrates the problem. I hope this helps.
Brian
//
// Read from Add Web Reference, authentication info provided by .NET
//
Fri Aug 06 13:53:44 2004 Stream: GET /helloservice.ws dl HTTP/1.1

Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/vnd.ms-powerpoint,
application/msword,
*/*

Accept-Language: en-us

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR
1.1.4322)

Host: 192.168.2.15:12 34

Connection: Keep-Alive

Authorization: Basic Ync6QWRnag==


//
// My server send back WSDL
//
Fri Aug 06 13:54:47 2004 SoapPortal: send(1460) 2299 bytes
HTTP/1.1 200 URL Found

Server: Morpheus 1.0

Date: Fri, 6 Aug 2004 19:54:47 GMT

Connection: Keep-Alive

Content-Type: text/xml

Content-Length: 02139

<?xml version="1.0" encoding="utf-8"?><definition s
xmlns:http="htt p://schemas.xmlsoap .org/wsdl/http/"
xmlns:soap="htt p://schemas.xmlsoap .org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:s0="http://www.aspnetsbs.c om/webservices/"
xmlns:soapenc=" http://schemas.xmlsoap .org/soap/encoding/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:mime="htt p://schemas.xmlsoap .org/wsdl/mime/"
targetNamespace ="http://www.aspnetsbs.c om/webservices/"
xmlns="http://schemas.xmlsoap .org/wsdl/"> <types> <s:schema
elementFormDefa ult="qualified"
targetNamespace ="http://www.aspnetsbs.c om/webservices/"> <s:element
name="HelloWorl d"> <s:complexTyp e> <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
</s:sequence> </s:complexType> </s:element> <s:element
name="HelloWorl dResponse"> <s:complexTyp e> <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorl dResult"
type="s:string" /> </s:sequence> </s:complexType>
</s:element> </s:schema> </types> <message name="HelloWorl dSoapIn">
<part name="parameter s" element="s0:Hel loWorld" /> </message> <message
name="HelloWorl dSoapOut"> <part name="parameter s"
element="s0:Hel loWorldResponse " /> </message> <portType
name="Service1S oap"> <operation name="HelloWorl d"> <input
message="s0:Hel loWorldSoapIn" /> <output
message="s0:Hel loWorldSoapOut"
/> </operation> </portType> <binding name="Service1S oap"
type="s0:Servic e1Soap"> <soap:binding
transport="http ://schemas.xmlsoap .org/soap/http" style="document " />
<operation name="HelloWorl d"> <soap:operati on
soapAction="htt p://www.aspnetsbs.c om/webservices/HelloWorld"
style="document "
/> <input> <soap:body use="literal" /> </input>
<output> <soap:body use="literal" /> </output> </operation>
</binding> <service name="Service1" > <port name="Service1S oap"
binding="s0:Ser vice1Soap"> <soap:address
location="http://192.168.2.131/Chapter_11/Service1.asmx" /> </port>
</service></definitions>
//
// .Net asks for wsdl a second time, but no authorization is given!
// Note that this time the user agent given contains "MS Web Services
Client
Protocol..."
//
Fri Aug 06 13:54:47 2004 Stream: GET /helloservice.ws dl HTTP/1.1

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
Protocol 1.1.4322.573)

Host: 192.168.2.15:12 34


//
// My server reponds with a HTML "Not Found", since no authorization
included
//
Fri Aug 06 13:54:58 2004 SoapPortal: send(1220) 273 bytes
HTTP/1.1 404 Not Found

Server: Morpheus 1.0

Date: Fri, 6 Aug 2004 19:54:58 GMT

Connection: Keep-Alive

Content-Type: text/html

Content-Length: 00112

<html>

<head><META HTTP-EQUIV="Expires" CONTENT="0"><ti tle>Morpheus
Server</title></head>

\ not found<BR>
Fri Aug 06 13:54:58 2004 SoapPortal: send data returned 0
//
// At this point the Add Web Reference Dialog box indicates that it found
correct WSDL,
// but also gives a message about proxy setting not configured correctly
for
web discovery.
//

"Jared Parsons [MSFT]" wrote:
Can you post a link to the web service that you are trying to consume?

--
Jared Parson [MSFT]
ja******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no
rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Brian" <Br***@discussi ons.microsoft.c om> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
>I am trying to use a web service from a non Microsoft product. When I do
>a
>"Add Web Reference" from the Visual Studio dialog box, a request is
>generated and received by the web services supplier. This request
>contains
>information in the "Authorization: " header. Valid WSDL is returned and
>the
>dialog box correctly shows the services and methods available. However,
>a
>second request is also sent to the WS supplier for the same information.
>This request does not contain autorization information. Can anyone tell
>me
>why this is occurring and (hopefully) how to stop it?


Nov 21 '05 #4
The same thing . My server gets two requests for the WSDL. The only
difference is that in the case the user agent in the header contains "MS Web
Services Client Protocol 1.1.4322.573" in both cases.
When I send the same wsdl the second time the wsdl.exe program creates the
..cs file, so it liked what it received.
"Jared Parsons [MSFT]" wrote:
What happens if you run WSDL from the command line?

--
Jared Parson [MSFT]
ja******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Brian" <Br***@discussi ons.microsoft.c om> wrote in message
news:1B******** *************** ***********@mic rosoft.com...
I am testing this on a LAN that is not available to the outside world. At
the
risk, of creating a long reply, I will append an annotated version of the
TCP/IP log that illustrates the problem. I hope this helps.
Brian
//
// Read from Add Web Reference, authentication info provided by .NET
//
Fri Aug 06 13:53:44 2004 Stream: GET /helloservice.ws dl HTTP/1.1

Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/vnd.ms-powerpoint,
application/msword,
*/*

Accept-Language: en-us

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR
1.1.4322)

Host: 192.168.2.15:12 34

Connection: Keep-Alive

Authorization: Basic Ync6QWRnag==


//
// My server send back WSDL
//
Fri Aug 06 13:54:47 2004 SoapPortal: send(1460) 2299 bytes
HTTP/1.1 200 URL Found

Server: Morpheus 1.0

Date: Fri, 6 Aug 2004 19:54:47 GMT

Connection: Keep-Alive

Content-Type: text/xml

Content-Length: 02139

<?xml version="1.0" encoding="utf-8"?><definition s
xmlns:http="htt p://schemas.xmlsoap .org/wsdl/http/"
xmlns:soap="htt p://schemas.xmlsoap .org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:s0="http://www.aspnetsbs.c om/webservices/"
xmlns:soapenc=" http://schemas.xmlsoap .org/soap/encoding/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:mime="htt p://schemas.xmlsoap .org/wsdl/mime/"
targetNamespace ="http://www.aspnetsbs.c om/webservices/"
xmlns="http://schemas.xmlsoap .org/wsdl/"> <types> <s:schema
elementFormDefa ult="qualified"
targetNamespace ="http://www.aspnetsbs.c om/webservices/"> <s:element
name="HelloWorl d"> <s:complexTyp e> <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
</s:sequence> </s:complexType> </s:element> <s:element
name="HelloWorl dResponse"> <s:complexTyp e> <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorl dResult"
type="s:string" /> </s:sequence> </s:complexType>
</s:element> </s:schema> </types> <message name="HelloWorl dSoapIn">
<part name="parameter s" element="s0:Hel loWorld" /> </message> <message
name="HelloWorl dSoapOut"> <part name="parameter s"
element="s0:Hel loWorldResponse " /> </message> <portType
name="Service1S oap"> <operation name="HelloWorl d"> <input
message="s0:Hel loWorldSoapIn" /> <output
message="s0:Hel loWorldSoapOut"
/> </operation> </portType> <binding name="Service1S oap"
type="s0:Servic e1Soap"> <soap:binding
transport="http ://schemas.xmlsoap .org/soap/http" style="document " />
<operation name="HelloWorl d"> <soap:operati on
soapAction="htt p://www.aspnetsbs.c om/webservices/HelloWorld"
style="document "
/> <input> <soap:body use="literal" /> </input>
<output> <soap:body use="literal" /> </output> </operation>
</binding> <service name="Service1" > <port name="Service1S oap"
binding="s0:Ser vice1Soap"> <soap:address
location="http://192.168.2.131/Chapter_11/Service1.asmx" /> </port>
</service></definitions>
//
// .Net asks for wsdl a second time, but no authorization is given!
// Note that this time the user agent given contains "MS Web Services
Client
Protocol..."
//
Fri Aug 06 13:54:47 2004 Stream: GET /helloservice.ws dl HTTP/1.1

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
Protocol 1.1.4322.573)

Host: 192.168.2.15:12 34


//
// My server reponds with a HTML "Not Found", since no authorization
included
//
Fri Aug 06 13:54:58 2004 SoapPortal: send(1220) 273 bytes
HTTP/1.1 404 Not Found

Server: Morpheus 1.0

Date: Fri, 6 Aug 2004 19:54:58 GMT

Connection: Keep-Alive

Content-Type: text/html

Content-Length: 00112

<html>

<head><META HTTP-EQUIV="Expires" CONTENT="0"><ti tle>Morpheus
Server</title></head>

\ not found<BR>
Fri Aug 06 13:54:58 2004 SoapPortal: send data returned 0
//
// At this point the Add Web Reference Dialog box indicates that it found
correct WSDL,
// but also gives a message about proxy setting not configured correctly
for
web discovery.
//

"Jared Parsons [MSFT]" wrote:
Can you post a link to the web service that you are trying to consume?

--
Jared Parson [MSFT]
ja******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no
rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

"Brian" <Br***@discussi ons.microsoft.c om> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
>I am trying to use a web service from a non Microsoft product. When I do
>a
>"Add Web Reference" from the Visual Studio dialog box, a request is
>generated and received by the web services supplier. This request
>contains
>information in the "Authorization: " header. Valid WSDL is returned and
>the
>dialog box correctly shows the services and methods available. However,
>a
>second request is also sent to the WS supplier for the same information.
>This request does not contain autorization information. Can anyone tell
>me
>why this is occurring and (hopefully) how to stop it?


Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
5622
by: trexim | last post by:
Hi, I am trying to create a Web Reference for CSTA using the URL http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta-wsdl-all-operations.wsdl Visual .Net complains that: " The document was understood, but it could not be processed. - The WSDL document contains links that could not be resolved. - There was an error downloading
5
5402
by: Jeff | last post by:
We are using .Net and the wsdl Utility to generate proxies to consume web services built using the BEA toolset. The data architects on the BEA side create XML schemas with various entities in separate files for ease of maintainability. These schemas are all part of the same namespace. When defining a web service that access more than one of these entities, the wsdl file generated by BEA contains multiple schema elements with the same...
3
19034
by: TC | last post by:
Hello All, I have winforms app that accesses a webservice and the WSDL is referenced dynamically. I was wondering 2 things: First, if one parses the .config file and changes the URL pointing to the WSDL, I take it that these changes would not take effect until the user closes and restarts the app, correct?
6
1526
by: seeIT | last post by:
In a client application a simple webservice (add/multiply) was added to solution panel but proxy methods do not appear. WSDL description in solution panel follows: <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"...
5
10337
by: Mike Logan | last post by:
I used WSDL.exe to generate a client side web proxy for a web service, called the web service, got the results but an array returned by the web service is not in the results. However if I use "Add Web Reference" for the same service the same function works appropriately. Here is the client proxy generated from WSDL.exe <System.Web.Services.Protocols.SoapDocumentMethodAttribute("capeconnect:AppSec:AppSecPortType#getApplicationUsers",
3
11546
by: manika02 | last post by:
I am unable to add web reference in Visual Studio 2003. I get the following error: "Unable to download following files from http://mysite.com/webservice.asmx?wsdl Do you want to skip these files and continue?" Also when i type the URL http://mysite.com/webservice.asmx?wsdl andt hen click Go in the Add Web Reference dialog box, I get the following error.
0
1838
by: vihrao | last post by:
I am designing wsdl that uses multiple schemas. I can do this in two ways: 1) use multiple schema imports in one wsdl or 2) use multiple schema imports in to one common schema and then import a single common schema in the wsdl. The issue is complicated because I have several wsdls with several common and unique schemas. As an example serviceA_Ports.wsdl imports a commonServiceTypes.Xml, commonFaultTypes.xml, and serviceA.xml ...
2
5328
by: scott mcfadden | last post by:
Using VS 2003, I can not add a web reference to our production server's ..asmx URL using HTTPS. I will put in a URL like: https://mycompany.com/myapp/myservice.asmx VStudio will display the web methods from that URL and when I click on OK to download/build the dynamic web proxy code, I get the following error: Unable to download files from http://mycompany.com/myapp/myservice.asmx
0
2843
by: =?ISO-8859-1?Q?Jan_Thom=E4?= | last post by:
Hi, I've been trying like a madman to make my WSDL work with .net, but it seems I am out of luck. Whenever I add a service reference to Visual C#, the code gets generated fine, however all operations miss their parameters, which is very weird. I have stripped down the WSDL to an example of a singe simple function. Before I post all the WSDL, here is what I tried. I loaded the WSDL using the "add service reference" function. I got code...
0
10228
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9869
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8883
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7415
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6676
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 into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5312
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3970
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
2
3575
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2816
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.