473,378 Members | 1,401 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

WCF SOAP Router Including Credentials

Hello,

I've been trying to create a WCF SOAP Router Service that can forward not
just the message body but also any security headers set by the originator of
the message. The destination service I'm routing messages to uses
WSHttpBinding, SSL with UserName/Password client credentials. Using guidance
from the Technology samples I can create a router that forwards messages
without security credentils but not with them. Can anybody point me in the
right direction... should I be creating a custom channel to handle this? or
is there a bundle of framework classes I should use?

Deployment scenario : Consumer connects to a router service on a DMZ (Out of
Domain). The router service is unable to authenticate the users of the
service. Router determins the correct destination service and forwards SOAP
message + security credentials. Destination service impersonates consumer and
replys to the message.

Any help or guidance would be appreciated!

Thanks,

Jimmer
Nov 25 '07 #1
5 4099
Hi Jimmer,

From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered in
router scenario, correct?

As for the message routering in WCF, I think it is a XML Webservice/SOAP
specific feature introducted from the WSE 3.0. WSE 3.0 also support message
routering and for security, it is implemented in the following means:

** security header directly forwarded from client to server(ignore the
intermediate router) is not supported

** you need to configure the security assertion(policy) for message
transfering between
1) client <-----router and 2) router <-----server

So far, I haven't find any confirmation on the WCF which also support this
kind of security setting. I'll perform some further research to see whether
this kind of security is also supported in WCF.

BTW, as you mentioned SSL, are you using https/ssl for transport security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).

I'll update you if I get any more information on this.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
Subject: WCF SOAP Router Including Credentials
Date: Sun, 25 Nov 2007 11:30:00 -0800
Hello,

I've been trying to create a WCF SOAP Router Service that can forward not
just the message body but also any security headers set by the originator
of
the message. The destination service I'm routing messages to uses
WSHttpBinding, SSL with UserName/Password client credentials. Using
guidance
from the Technology samples I can create a router that forwards messages
without security credentils but not with them. Can anybody point me in the
right direction... should I be creating a custom channel to handle this? or
is there a bundle of framework classes I should use?

Deployment scenario : Consumer connects to a router service on a DMZ (Out
of
Domain). The router service is unable to authenticate the users of the
service. Router determins the correct destination service and forwards SOAP
message + security credentials. Destination service impersonates consumer
and
replys to the message.

Any help or guidance would be appreciated!

Thanks,

Jimmer

Nov 26 '07 #2

Steven, thanks for the reply.
From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered in
router scenario, correct?
Correct. The router should just forward the message from the client
including the clients security headers. The way I've got it working at the
moment is to implement a custom credentials validator on the router and store
the password (encrypted). These credentials are then used to create a channel
to the destination service for every operation call per user! This could be
improved by having one channel per destination service which is user
agnostic. The channel could then be reused without the overhead of creating a
channel every time an operation is called on the router.
BTW, as you mentioned SSL, are you using https/ssl for transport security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).
Yea, I've got certificates everywhere!! The router server has its own
certificate and the destination server has its own certificate. IIS on the
DMZ and self hosted on the destination server. The external service consumers
are only aware of the router address in an attempt to shield the domain
environment.

Any information on a better way forward will be well received!

Thanks,

Jimmer
"Steven Cheng[MSFT]" wrote:
Hi Jimmer,

From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered in
router scenario, correct?

As for the message routering in WCF, I think it is a XML Webservice/SOAP
specific feature introducted from the WSE 3.0. WSE 3.0 also support message
routering and for security, it is implemented in the following means:

** security header directly forwarded from client to server(ignore the
intermediate router) is not supported

** you need to configure the security assertion(policy) for message
transfering between
1) client <-----router and 2) router <-----server

So far, I haven't find any confirmation on the WCF which also support this
kind of security setting. I'll perform some further research to see whether
this kind of security is also supported in WCF.

BTW, as you mentioned SSL, are you using https/ssl for transport security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).

I'll update you if I get any more information on this.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
Subject: WCF SOAP Router Including Credentials
Date: Sun, 25 Nov 2007 11:30:00 -0800
Hello,

I've been trying to create a WCF SOAP Router Service that can forward not
just the message body but also any security headers set by the originator
of
the message. The destination service I'm routing messages to uses
WSHttpBinding, SSL with UserName/Password client credentials. Using
guidance
from the Technology samples I can create a router that forwards messages
without security credentils but not with them. Can anybody point me in the
right direction... should I be creating a custom channel to handle this? or
is there a bundle of framework classes I should use?

Deployment scenario : Consumer connects to a router service on a DMZ (Out
of
Domain). The router service is unable to authenticate the users of the
service. Router determins the correct destination service and forwards SOAP
message + security credentials. Destination service impersonates consumer
and
replys to the message.

Any help or guidance would be appreciated!

Thanks,

Jimmer
Nov 26 '07 #3
Sure. I am currently discussing with some other WCF engineers to see
whether they have any suggestion on this. Will keep you update.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
References: <AB**********************************@microsoft.co m>
<bY**************@TK2MSFTNGHUB02.phx.gbl>
Subject: RE: WCF SOAP Router Including Credentials
Date: Mon, 26 Nov 2007 03:04:01 -0800
Steven, thanks for the reply.
From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered
in
router scenario, correct?
Correct. The router should just forward the message from the client
including the clients security headers. The way I've got it working at the
moment is to implement a custom credentials validator on the router and
store
the password (encrypted). These credentials are then used to create a
channel
to the destination service for every operation call per user! This could
be
improved by having one channel per destination service which is user
agnostic. The channel could then be reused without the overhead of creating
a
channel every time an operation is called on the router.
BTW, as you mentioned SSL, are you using https/ssl for transport
security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).
Yea, I've got certificates everywhere!! The router server has its own
certificate and the destination server has its own certificate. IIS on the
DMZ and self hosted on the destination server. The external service
consumers
are only aware of the router address in an attempt to shield the domain
environment.

Any information on a better way forward will be well received!

Thanks,

Jimmer
"Steven Cheng[MSFT]" wrote:
Hi Jimmer,

From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered
in
router scenario, correct?

As for the message routering in WCF, I think it is a XML Webservice/SOAP
specific feature introducted from the WSE 3.0. WSE 3.0 also support
message
routering and for security, it is implemented in the following means:

** security header directly forwarded from client to server(ignore the
intermediate router) is not supported

** you need to configure the security assertion(policy) for message
transfering between
1) client <-----router and 2) router <-----server

So far, I haven't find any confirmation on the WCF which also support
this
kind of security setting. I'll perform some further research to see
whether
this kind of security is also supported in WCF.

BTW, as you mentioned SSL, are you using https/ssl for transport
security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).

I'll update you if I get any more information on this.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
>
--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
Subject: WCF SOAP Router Including Credentials
Date: Sun, 25 Nov 2007 11:30:00 -0800
Hello,

I've been trying to create a WCF SOAP Router Service that can forward not
just the message body but also any security headers set by the originator
of
the message. The destination service I'm routing messages to uses
WSHttpBinding, SSL with UserName/Password client credentials. Using
guidance
from the Technology samples I can create a router that forwards messages
without security credentils but not with them. Can anybody point me in
the
right direction... should I be creating a custom channel to handle this?
or
is there a bundle of framework classes I should use?

Deployment scenario : Consumer connects to a router service on a DMZ (Out
of
Domain). The router service is unable to authenticate the users of the
service. Router determins the correct destination service and forwards
SOAP
message + security credentials. Destination service impersonates consumer
and
replys to the message.

Any help or guidance would be appreciated!

Thanks,

Jimmer
Nov 28 '07 #4
Hi Jimmer,

After some further discussing with some other engineers, I'm afraid there
hasn't a direct means to make those security assertion flow from client to
backend(bypass the intermedate router). The reasonable way is to implement
security assertion on both stages(client <---router and router <--->
server).

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------

Content-Transfer-Encoding: 7bit
From: st*****@online.microsoft.com (Steven Cheng[MSFT])
Organization: Microsoft
Date: Wed, 28 Nov 2007 04:16:46 GMT
Subject: RE: WCF SOAP Router Including Credentials

Sure. I am currently discussing with some other WCF engineers to see
whether they have any suggestion on this. Will keep you update.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
References: <AB**********************************@microsoft.co m>
<bY**************@TK2MSFTNGHUB02.phx.gbl>
Subject: RE: WCF SOAP Router Including Credentials
Date: Mon, 26 Nov 2007 03:04:01 -0800
Steven, thanks for the reply.
From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered
in
router scenario, correct?
Correct. The router should just forward the message from the client
including the clients security headers. The way I've got it working at the
moment is to implement a custom credentials validator on the router and
store
the password (encrypted). These credentials are then used to create a
channel
to the destination service for every operation call per user! This could
be
improved by having one channel per destination service which is user
agnostic. The channel could then be reused without the overhead of creating
a
channel every time an operation is called on the router.
BTW, as you mentioned SSL, are you using https/ssl for transport
security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).
Yea, I've got certificates everywhere!! The router server has its own
certificate and the destination server has its own certificate. IIS on the
DMZ and self hosted on the destination server. The external service
consumers
are only aware of the router address in an attempt to shield the domain
environment.

Any information on a better way forward will be well received!

Thanks,

Jimmer
"Steven Cheng[MSFT]" wrote:
Hi Jimmer,

From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered
in
router scenario, correct?

As for the message routering in WCF, I think it is a XML Webservice/SOAP
specific feature introducted from the WSE 3.0. WSE 3.0 also support
message
routering and for security, it is implemented in the following means:

** security header directly forwarded from client to server(ignore the
intermediate router) is not supported

** you need to configure the security assertion(policy) for message
transfering between
1) client <-----router and 2) router <-----server

So far, I haven't find any confirmation on the WCF which also support
this
kind of security setting. I'll perform some further research to see
whether
this kind of security is also supported in WCF.

BTW, as you mentioned SSL, are you using https/ssl for transport
security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).

I'll update you if I get any more information on this.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
>
--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
Subject: WCF SOAP Router Including Credentials
Date: Sun, 25 Nov 2007 11:30:00 -0800
Hello,

I've been trying to create a WCF SOAP Router Service that can forward not
just the message body but also any security headers set by the originator
of
the message. The destination service I'm routing messages to uses
WSHttpBinding, SSL with UserName/Password client credentials. Using
guidance
from the Technology samples I can create a router that forwards messages
without security credentils but not with them. Can anybody point me in
the
right direction... should I be creating a custom channel to handle this?
or
is there a bundle of framework classes I should use?

Deployment scenario : Consumer connects to a router service on a DMZ (Out
of
Domain). The router service is unable to authenticate the users of the
service. Router determins the correct destination service and forwards
SOAP
message + security credentials. Destination service impersonates consumer
and
replys to the message.

Any help or guidance would be appreciated!

Thanks,

Jimmer


Nov 30 '07 #5
OK Steven, thanks for you time.

"Steven Cheng[MSFT]" wrote:
Hi Jimmer,

After some further discussing with some other engineers, I'm afraid there
hasn't a direct means to make those security assertion flow from client to
backend(bypass the intermedate router). The reasonable way is to implement
security assertion on both stages(client <---router and router <--->
server).

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------

Content-Transfer-Encoding: 7bit
From: st*****@online.microsoft.com (Steven Cheng[MSFT])
Organization: Microsoft
Date: Wed, 28 Nov 2007 04:16:46 GMT
Subject: RE: WCF SOAP Router Including Credentials

Sure. I am currently discussing with some other WCF engineers to see
whether they have any suggestion on this. Will keep you update.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
References: <AB**********************************@microsoft.co m>
<bY**************@TK2MSFTNGHUB02.phx.gbl>
Subject: RE: WCF SOAP Router Including Credentials
Date: Mon, 26 Nov 2007 03:04:01 -0800
Steven, thanks for the reply.
From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered
in
router scenario, correct?

Correct. The router should just forward the message from the client
including the clients security headers. The way I've got it working at the
moment is to implement a custom credentials validator on the router and
store
the password (encrypted). These credentials are then used to create a
channel
to the destination service for every operation call per user! This could
be
improved by having one channel per destination service which is user
agnostic. The channel could then be reused without the overhead of creating
a
channel every time an operation is called on the router.
BTW, as you mentioned SSL, are you using https/ssl for transport
security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).

Yea, I've got certificates everywhere!! The router server has its own
certificate and the destination server has its own certificate. IIS on the
DMZ and self hosted on the destination server. The external service
consumers
are only aware of the router address in an attempt to shield the domain
environment.

Any information on a better way forward will be well received!

Thanks,

Jimmer
"Steven Cheng[MSFT]" wrote:
Hi Jimmer,

From your descrpition, you're using the WCF "Intermediary Router" feature
and currently wondering how to apply security on the messages transfered
in
router scenario, correct?

As for the message routering in WCF, I think it is a XML Webservice/SOAP
specific feature introducted from the WSE 3.0. WSE 3.0 also support
message
routering and for security, it is implemented in the following means:

** security header directly forwarded from client to server(ignore the
intermediate router) is not supported

** you need to configure the security assertion(policy) for message
transfering between
1) client <-----router and 2) router <-----server

So far, I haven't find any confirmation on the WCF which also support
this
kind of security setting. I'll perform some further research to see
whether
this kind of security is also supported in WCF.

BTW, as you mentioned SSL, are you using https/ssl for transport
security?
If so, this is certainly supported only in port to port case, you can not
establish ssl/https connecction across multiple nodes(client, router and
server).

I'll update you if I get any more information on this.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
From: =?Utf-8?B?SmltbWVy?= <Ji****@community.nospam>
Subject: WCF SOAP Router Including Credentials
Date: Sun, 25 Nov 2007 11:30:00 -0800
Hello,

I've been trying to create a WCF SOAP Router Service that can forward not
just the message body but also any security headers set by the originator
of
the message. The destination service I'm routing messages to uses
WSHttpBinding, SSL with UserName/Password client credentials. Using
guidance
from the Technology samples I can create a router that forwards messages
without security credentils but not with them. Can anybody point me in
the
right direction... should I be creating a custom channel to handle this?
or
is there a bundle of framework classes I should use?

Deployment scenario : Consumer connects to a router service on a DMZ (Out
of
Domain). The router service is unable to authenticate the users of the
service. Router determins the correct destination service and forwards
SOAP
message + security credentials. Destination service impersonates consumer
and
replys to the message.

Any help or guidance would be appreciated!

Thanks,

Jimmer


Dec 4 '07 #6

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

Similar topics

0
by: snowdrop | last post by:
Hi folks, try the SOAP library written in C. Using csoap you can also implement a SOAP server in C. This library depends on libxml2. Homepage: http://csoap.sourceforge.net Example client...
0
by: chris.stromberger | last post by:
New to SOAP. I am working on something that uses the paypal web services. All the examples have this as the first portion of the soap doc <?xml version="1.0" encoding="UTF-8"?>...
1
by: Steve Drake | last post by:
All, I have a WEBPAGE that needs to pass the current credentials to a .NET remoted object so this can pass the credentials to a SOAP WEBSERVICE (All written in C#) But I cannot see how I pass...
16
by: MR | last post by:
my soap messages to a remote site are failing. as far as i can tell the only differences between what my SOAP message looks liek and what they want are in the SOAP envelope SInce they don't have a...
4
by: Joseph Geretz | last post by:
We use a Soap Header to pass a token class (m_Token) back and forth with authenticated session information. Given the following implementation for our Logout method, I vastly prefer to simply code...
6
by: Hao | last post by:
There is a wield issue in inspecting the network traffic on the web service client side. There are two soap calls if credentials are used. The first call has no credentials and is rejected by the...
0
by: SpreadTooThin | last post by:
This is a capture with ethereal of a SOAP Message to my UPnP Router.. POST /uuid:dynsvc/WANIPConnection:1 HTTP/1.1 HOST: 192.168.1.1:5431 SOAPACTION:...
3
by: Enda Manni | last post by:
Hi, I have a gSoap Web Service written using C++, it uses SOAP username and password authentication. I also have a C# form client consuming the web service, all this was working fine until...
0
by: cbeels | last post by:
The client code is #install SOAP-Lite and MIME-tools packages use SOAP::Lite 'trace', 'debug'; #override version SOAP::Lite->soapversion('1.2'); #override credentials sub...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...

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.