473,660 Members | 2,426 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XML as parameter to a method

Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter? Does this
parameter need to be defined as type string?

I have been given an XML structure to be used in a method call and I am not
sure if I should convert that into a C# struct to be used as a parameter
type and if so how. The specification says something like ... The input will
be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>

Please help.
Nov 21 '05 #1
6 1342
> Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter?
Yes, except you can't have the ?xml? PI because there's only one of those allowed per document and the SOAP message is itself a document. You shouldn't need the PI if you think about it.
Does
this parameter need to be defined as type string?
Noooooo, definitely not. Your web method signature need simply be something to the effect of:

public void MyWebMethod([XmlElement("nam eOfYourRootElem ent", Namespace="uri: somenamespaceur i")] XmlElement rootElement)
{
.... use rootElement here ...
}
I have been given an XML structure to be used in a method call and I
am not sure if I should convert that into a C# struct to be used as a
parameter type and if so how. The specification says something like
... The input will be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>


Well everything's ok except for the ?xml? PI. Whoever said that has to be the spec should be questioned about it because they should know that that particular PI isn't allowed to be defined twice and, when it is defined, it must be the first line of any XML document instance. Since the SOAP envelope itself is XML, it already contains this PI. Therefore it should not be needed on your parameter.

HTH,
Drew
Nov 21 '05 #2
One way to do this is to define the parameter as an encoded string. This
isn't optimal since the entire document will be byte encoded on the wire to
get around the angle brackets, etc. This equates to a CDATA region in an
XML schema. Not pretty, not recommended. If you really need to be able to
post an XML document, you might want to just handle the XML directly from
an HTTP filter or an XML data island within a web page.

I hope this helps

Dan Rogers
Microsoft Corporation
--------------------
From: "Tushar" <xx************ *@CODA.com>
Subject: XML as parameter to a method
Date: Fri, 26 Nov 2004 17:04:49 -0000
Lines: 17
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Message-ID: <#s************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: 213.146.159.254
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
.phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7654
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter? Does this
parameter need to be defined as type string?

I have been given an XML structure to be used in a method call and I am not
sure if I should convert that into a C# struct to be used as a parameter
type and if so how. The specification says something like ... The input will
be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>

Please help.

Nov 21 '05 #3
XML Data Island?!?!?!?!?

"Dan Rogers" <da***@microsof t.com> wrote in message news:uF******** ******@cpmsftng xa10.phx.gbl...
One way to do this is to define the parameter as an encoded string. This
isn't optimal since the entire document will be byte encoded on the wire to
get around the angle brackets, etc. This equates to a CDATA region in an
XML schema. Not pretty, not recommended. If you really need to be able to
post an XML document, you might want to just handle the XML directly from
an HTTP filter or an XML data island within a web page.

I hope this helps

Dan Rogers
Microsoft Corporation
--------------------
From: "Tushar" <xx************ *@CODA.com>
Subject: XML as parameter to a method
Date: Fri, 26 Nov 2004 17:04:49 -0000
Lines: 17
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Message-ID: <#s************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: 213.146.159.254
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7654
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter? Does this
parameter need to be defined as type string?

I have been given an XML structure to be used in a method call and I am not
sure if I should convert that into a C# struct to be used as a parameter
type and if so how. The specification says something like ... The input will
be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>

Please help.

Nov 21 '05 #4
I just don't know what a Data Island is :)

"Dan Rogers" <da***@microsof t.com> wrote in message news:b5******** ******@cpmsftng xa10.phx.gbl...
Hi Scott,

I only mention this kind of approach because it seems that your
requirements much more closely fit, from what little I know, a traditional
ASP page approach (or plain old HTTP).

Does this make sense?

Dan
--------------------
Reply-To: "Scott Meddows" <sc************ ******@tsged-removeme.com>
From: "Scott Meddows" <sc************ ******@tsged-removeme.com>
References: <#s************ **@TK2MSFTNGP15 .phx.gbl>
<uF************ **@cpmsftngxa10 .phx.gbl>
Subject: Re: XML as parameter to a method
Date: Thu, 2 Dec 2004 12:00:22 -0600
Lines: 53
Organization: The Schumacher Group
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#w************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: laf3662-nat2.tsged.com 209.215.85.43
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7752
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

XML Data Island?!?!?!?!?

"Dan Rogers" <da***@microsof t.com> wrote in message
news:uF******** ******@cpmsftng xa10.phx.gbl...
One way to do this is to define the parameter as an encoded string. This
isn't optimal since the entire document will be byte encoded on the wire

to
get around the angle brackets, etc. This equates to a CDATA region in an
XML schema. Not pretty, not recommended. If you really need to be able

to
post an XML document, you might want to just handle the XML directly from
an HTTP filter or an XML data island within a web page.

I hope this helps

Dan Rogers
Microsoft Corporation
--------------------
From: "Tushar" <xx************ *@CODA.com>
Subject: XML as parameter to a method
Date: Fri, 26 Nov 2004 17:04:49 -0000
Lines: 17
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Message-ID: <#s************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: 213.146.159.254
Path:

cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7654
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter? Does this
parameter need to be defined as type string?

I have been given an XML structure to be used in a method call and I am

not
sure if I should convert that into a C# struct to be used as a parameter
type and if so how. The specification says something like ... The input

will
be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>

Please help.


Nov 21 '05 #5
Ahh. It was a technique for embedding XML islands within ASP pages and
having script on the client side process the XML. It basically had the
server putting XML into a span, and then the script on the client side
reading that XMl and using it to display dynamic content.
--------------------
Reply-To: "Scott Meddows" <sc************ ******@tsged-removeme.com>
From: "Scott Meddows" <sc************ ******@tsged-removeme.com>
References: <#s************ **@TK2MSFTNGP15 .phx.gbl>
<uF************ **@cpmsftngxa10 .phx.gbl>
<#w************ **@TK2MSFTNGP15 .phx.gbl>
<b5************ **@cpmsftngxa10 .phx.gbl>
Subject: Re: XML as parameter to a method
Date: Fri, 3 Dec 2004 11:11:34 -0600
Lines: 98
Organization: The Schumacher Group
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#X************ **@TK2MSFTNGP10 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: laf3662-nat2.tsged.com 209.215.85.43
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTNG XA01.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 0
.phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7801
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

I just don't know what a Data Island is :)

"Dan Rogers" <da***@microsof t.com> wrote in message
news:b5******** ******@cpmsftng xa10.phx.gbl...
Hi Scott,

I only mention this kind of approach because it seems that your
requirements much more closely fit, from what little I know, a traditional
ASP page approach (or plain old HTTP).

Does this make sense?

Dan
--------------------
Reply-To: "Scott Meddows" <sc************ ******@tsged-removeme.com>
From: "Scott Meddows" <sc************ ******@tsged-removeme.com>
References: <#s************ **@TK2MSFTNGP15 .phx.gbl>
<uF************ **@cpmsftngxa10 .phx.gbl>
Subject: Re: XML as parameter to a method
Date: Thu, 2 Dec 2004 12:00:22 -0600
Lines: 53
Organization: The Schumacher Group
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#w************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: laf3662-nat2.tsged.com 209.215.85.43
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5 phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7752
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

XML Data Island?!?!?!?!?

"Dan Rogers" <da***@microsof t.com> wrote in message
news:uF******** ******@cpmsftng xa10.phx.gbl...
One way to do this is to define the parameter as an encoded string. This
isn't optimal since the entire document will be byte encoded on the wire

to
get around the angle brackets, etc. This equates to a CDATA region in an
XML schema. Not pretty, not recommended. If you really need to be able

to
post an XML document, you might want to just handle the XML directly from
an HTTP filter or an XML data island within a web page.

I hope this helps

Dan Rogers
Microsoft Corporation
--------------------
From: "Tushar" <xx************ *@CODA.com>
Subject: XML as parameter to a method
Date: Fri, 26 Nov 2004 17:04:49 -0000
Lines: 17
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Message-ID: <#s************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: 213.146.159.254
Path:

cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7654
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter? Does this parameter need to be defined as type string?

I have been given an XML structure to be used in a method call and I am

not
sure if I should convert that into a C# struct to be used as a parameter
type and if so how. The specification says something like ... The input

will
be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>

Please help.



Nov 21 '05 #6
Ahhh, check!

"Dan Rogers" <da***@microsof t.com> wrote in message news:aA******** ******@cpmsftng xa10.phx.gbl...
Ahh. It was a technique for embedding XML islands within ASP pages and
having script on the client side process the XML. It basically had the
server putting XML into a span, and then the script on the client side
reading that XMl and using it to display dynamic content.
--------------------
Reply-To: "Scott Meddows" <sc************ ******@tsged-removeme.com>
From: "Scott Meddows" <sc************ ******@tsged-removeme.com>
References: <#s************ **@TK2MSFTNGP15 .phx.gbl>
<uF************ **@cpmsftngxa10 .phx.gbl>
<#w************ **@TK2MSFTNGP15 .phx.gbl>
<b5************ **@cpmsftngxa10 .phx.gbl>
Subject: Re: XML as parameter to a method
Date: Fri, 3 Dec 2004 11:11:34 -0600
Lines: 98
Organization: The Schumacher Group
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#X************ **@TK2MSFTNGP10 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: laf3662-nat2.tsged.com 209.215.85.43
Path:
cpmsftngxa10.ph x.gbl!TK2MSFTNG XA01.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 0
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7801
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

I just don't know what a Data Island is :)

"Dan Rogers" <da***@microsof t.com> wrote in message
news:b5******** ******@cpmsftng xa10.phx.gbl...
Hi Scott,

I only mention this kind of approach because it seems that your
requirements much more closely fit, from what little I know, a traditional
ASP page approach (or plain old HTTP).

Does this make sense?

Dan
--------------------
Reply-To: "Scott Meddows" <sc************ ******@tsged-removeme.com>
From: "Scott Meddows" <sc************ ******@tsged-removeme.com>
References: <#s************ **@TK2MSFTNGP15 .phx.gbl>
<uF************ **@cpmsftngxa10 .phx.gbl>
Subject: Re: XML as parameter to a method
Date: Thu, 2 Dec 2004 12:00:22 -0600
Lines: 53
Organization: The Schumacher Group
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#w************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: laf3662-nat2.tsged.com 209.215.85.43
Path:

cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7752
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

XML Data Island?!?!?!?!?

"Dan Rogers" <da***@microsof t.com> wrote in message
news:uF******** ******@cpmsftng xa10.phx.gbl...
One way to do this is to define the parameter as an encoded string. This
isn't optimal since the entire document will be byte encoded on the wire

to
get around the angle brackets, etc. This equates to a CDATA region in an
XML schema. Not pretty, not recommended. If you really need to be able

to
post an XML document, you might want to just handle the XML directly from
an HTTP filter or an XML data island within a web page.

I hope this helps

Dan Rogers
Microsoft Corporation
--------------------
From: "Tushar" <xx************ *@CODA.com>
Subject: XML as parameter to a method
Date: Fri, 26 Nov 2004 17:04:49 -0000
Lines: 17
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Message-ID: <#s************ **@TK2MSFTNGP15 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.webservices
NNTP-Posting-Host: 213.146.159.254
Path:

cpmsftngxa10.ph x.gbl!TK2MSFTNG XA03.phx.gbl!TK 2MSFTNGP08.phx. gbl!TK2MSFTNGP1 5
phx.gbl
Xref: cpmsftngxa10.ph x.gbl
microsoft.publi c.dotnet.framew ork.webservices :7654
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.webservices

Is it possible to have a method that accepts XML document (including
processing instruction at top and the root node) as a parameter? Does this parameter need to be defined as type string?

I have been given an XML structure to be used in a method call and I am

not
sure if I should convert that into a C# struct to be used as a parameter
type and if so how. The specification says something like ... The input

will
be an XML such as ...

<?xml ... ?>
<root>
<etc etc />
</root>

Please help.



Nov 23 '05 #7

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

Similar topics

8
13173
by: Dave Veeneman | last post by:
Can I pass a method pass one of its out parameters to another method? C# is telling me I can't. Let's say I have two methods, FooManager and FooWorker. FooManager is part of a class that acts as a coordinator for several other classes. FooManager basically passes its parameters, including an output parameter 'x', on to FooWorker, a worker method in another class. FooWorker does the actual work and assigns to x. When FooWorker is done, it...
4
7025
by: Ben Blair | last post by:
Hi. How does one assign a custom parameter attribute to the implicit "value" parameter of the set accessor method of a property? For example, I can assign a custom attribute to the return parameter of the get accessor as follows: public string Foo { get { return "foo";
5
3137
by: Jet | last post by:
Hi all, I had a code like the follow: class A{ ... public void get(int i,params OleDbParameter p) { if((p!=null)||(p.Length>0)) { // Do some work }
7
9558
by: Richard Grant | last post by:
Hi. In c/C++ i can pass the address of a subroutine to another subroutine as an actual parameter How do I do that in VB .NET What should be the syntax for a parameter to receive the address of a subroutine Let's say theres a sub that creates buttons and I want it to receive as a parameter the address of the sub that handles the OnClick event for the button being created How do I pass such a parameter Thanks in advance Richar
20
5041
by: Brien King | last post by:
If I have a parameter that has an Object type (as opposed to something like a string), can I make that parameter a CONST? Right now, if you pass an object into a sub/function, that sub/function can modify the object no matter how it's defined (ByVal or ByRef). In some cases, I want to make sure that you cannot modify the object. Is there a way to do that in VS2003 or the up comming VS2005?
3
1882
by: JohnnyGr | last post by:
I have heard theres a new way to start threads with parameters in framework 2.0, does anyone know how to do that? this is what i need to do... Start a thread that executes some stuff, in this case it does gets all files from a directory. then i need to update the GUI with information from the thread... the thread should be started with a parameter, in this case its a string
3
4065
by: Pratcp | last post by:
Hello, I have an asp.net Web app in vb.net trying to call a C# web service which takes a reference parameter. I tried a simple C# web app to call the Web service and it works perfectly. However, when I try it in the vb.net web app, I run into XML definition errors. Looks like the proxy class is not able to generate the correct XML with the ref parameter. Here is error: The element 'urn:test-com:document:test:rfc:functions:T_RETURN has
11
3422
by: dahuzizyd | last post by:
Hi all: I think I had a problem with using out parameter , why the instance of 'SubClass' can't convert to 'BaseClass' ? my code is : ---------------------------------------------- using System; namespace ConsoleApplication2 { class Class1
2
2481
by: ME | last post by:
How would one obtain the parameter VALUES of a method that has already run? I can find the method using the StackTrace and StackFrame classes but once I find the method I would like to obtain the value of one of the parameters that were passed to the method. Is this possible? Even if I have to use PInvoke to do so? I can currently find the parameter TYPEs using reflection but I can not figure out to obtain the values. Thanks,
0
8341
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8851
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...
1
8542
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8630
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...
1
6181
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
5650
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
4177
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...
2
1984
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1740
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.