473,804 Members | 3,031 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

can't see this odbc datasource on the network from a web service

cj2
This code works:

using System;
using System.Collecti ons;
using System.Componen tModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Serv ices;
using System.Web.Serv ices.Protocols;
using System.Xml.Linq ;
using System.Data.Odb c;

namespace CWebService1
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Name space = "http://tempuri.org/")]
[WebServiceBindi ng(ConformsTo = WsiProfiles.Bas icProfile1_1)]
[ToolboxItem(fal se)]
// To allow this Web Service to be called from script, using
ASP.NET AJAX, uncomment the following line.
// [System.Web.Scri pt.Services.Scr iptService]
public class Service1 : System.Web.Serv ices.WebService
{

[WebMethod()]
public string CashOnly(string act)
{
DataSet ds = new DataSet();
OdbcConnection myOdbcConnectio n = new
OdbcConnection( "Driver={Micros oft Visual FoxPro Driver};"
+ "SourceType=DBF ;"
+ "SourceDB=c :;"
+ "Exclusive= No;"
+ "Collate=Machin e;"
+ "NULL=NO;"
+ "DELETED=NO ;"
+ "BACKGROUNDFETC H=NO");

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag
from d:\\act_frau.DB F where act = '" + act.Trim() + "'", myOdbcConnectio n);
myOdbcConnectio n.Open();
string results = myOdbcCommand.E xecuteScalar(). ToString();
myOdbcConnectio n.Close();

return results;

}
}
}
But with the actual production file on the network it doesn't:

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag
from \\\\fileserver\ \i\\probill\\ac t_frau.DBF where act = '" +
act.Trim() + "'", myOdbcConnectio n);

It gives me:

System.Data.Odb c.OdbcException : ERROR [42S02] [Microsoft][ODBC Visual
FoxPro Driver]File 'act_frau.dbf' does not exist.

The file does exist. FYI, i is a directory not a drive letter.

I've also tried this web service in VB and it works:

Dim myOdbcCommand As New OdbcCommand("se lect flag from
\\fileserver\i\ probill\act_fra u.dbf where act = '" + act.Trim + "'",
myOdbcConnectio n)

What am I doing wrong?
Jul 2 '08 #1
5 1971
Hi Cj,

From your description, you're trying to connect a VFP database in an
ASP.NET webservice, you used the ODBC driver. However, you found that the
code didn't work in webservice(from a network place) while worked for a
database file on local disk, correct?

I've also discussed this with some other database engineer. They suggest
you check the following things:

1.Make sure there hasn't any other program or person that has opened the
vfp database before your code accesss it. That'll possibly cause the
database not found error.

2. In the code, the only difference is the string escaping for the back
slash. I suggest you try using the following style code in C3 to see
whether it works:

OdbcCommand myOdbcCommand = new OdbcCommand(@"s elect flag from
\\fileserver\i\ probill\act_fra u.DBF where act = '" + act.Trim() + "'",
myOdbcConnectio n);

Btw, regarding on the network place, have you tried performing some other
simple remote resource accessing , such as try accessing a file via
System.IO API on that server to see whether you'll get similar error? If
so, that may indicate some network resource accessing issue.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
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.

--------------------
>Date: Wed, 02 Jul 2008 10:42:06 -0400
From: cj2 <cj*@nospam.nos pam>
User-Agent: Thunderbird 2.0.0.14 (Windows/20080421)
MIME-Version: 1.0
Subject: can't see this odbc datasource on the network from a web service
>
This code works:

using System;
using System.Collecti ons;
using System.Componen tModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Serv ices;
using System.Web.Serv ices.Protocols;
using System.Xml.Linq ;
using System.Data.Odb c;

namespace CWebService1
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Name space = "http://tempuri.org/")]
[WebServiceBindi ng(ConformsTo = WsiProfiles.Bas icProfile1_1)]
[ToolboxItem(fal se)]
// To allow this Web Service to be called from script, using
ASP.NET AJAX, uncomment the following line.
// [System.Web.Scri pt.Services.Scr iptService]
public class Service1 : System.Web.Serv ices.WebService
{

[WebMethod()]
public string CashOnly(string act)
{
DataSet ds = new DataSet();
OdbcConnection myOdbcConnectio n = new
OdbcConnection ("Driver={Micro soft Visual FoxPro Driver};"
+ "SourceType=DBF ;"
+ "SourceDB=c :;"
+ "Exclusive= No;"
+ "Collate=Machin e;"
+ "NULL=NO;"
+ "DELETED=NO ;"
+ "BACKGROUNDFETC H=NO");

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag
from d:\\act_frau.DB F where act = '" + act.Trim() + "'", myOdbcConnectio n);
myOdbcConnectio n.Open();
string results = myOdbcCommand.E xecuteScalar(). ToString();
myOdbcConnectio n.Close();

return results;

}
}
}
But with the actual production file on the network it doesn't:

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag
from \\\\fileserver\ \i\\probill\\ac t_frau.DBF where act = '" +
act.Trim() + "'", myOdbcConnectio n);

It gives me:

System.Data.Od bc.OdbcExceptio n: ERROR [42S02] [Microsoft][ODBC Visual
FoxPro Driver]File 'act_frau.dbf' does not exist.

The file does exist. FYI, i is a directory not a drive letter.

I've also tried this web service in VB and it works:

Dim myOdbcCommand As New OdbcCommand("se lect flag from
\\fileserver\i \probill\act_fr au.dbf where act = '" + act.Trim + "'",
myOdbcConnecti on)

What am I doing wrong?
Jul 3 '08 #2
cj2
I had a small breakthrough today. I found when I run the web service
from within Visual Studio by doing debug start it works! Unfortunately
when I publish it to local host it doesn't. Why do you think that would
be the case?

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag from
\\\\fileserver\ \i\\probill\\ac t_frau.DBF where act = '" + act.Trim() +
"'", myOdbcConnectio n);
Steven Cheng [MSFT] wrote:
Hi Cj,

From your description, you're trying to connect a VFP database in an
ASP.NET webservice, you used the ODBC driver. However, you found that the
code didn't work in webservice(from a network place) while worked for a
database file on local disk, correct?

I've also discussed this with some other database engineer. They suggest
you check the following things:

1.Make sure there hasn't any other program or person that has opened the
vfp database before your code accesss it. That'll possibly cause the
database not found error.

2. In the code, the only difference is the string escaping for the back
slash. I suggest you try using the following style code in C3 to see
whether it works:

OdbcCommand myOdbcCommand = new OdbcCommand(@"s elect flag from
\\fileserver\i\ probill\act_fra u.DBF where act = '" + act.Trim() + "'",
myOdbcConnectio n);

Btw, regarding on the network place, have you tried performing some other
simple remote resource accessing , such as try accessing a file via
System.IO API on that server to see whether you'll get similar error? If
so, that may indicate some network resource accessing issue.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
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.

--------------------
>Date: Wed, 02 Jul 2008 10:42:06 -0400
From: cj2 <cj*@nospam.nos pam>
User-Agent: Thunderbird 2.0.0.14 (Windows/20080421)
MIME-Version: 1.0
Subject: can't see this odbc datasource on the network from a web service
>This code works:

using System;
using System.Collecti ons;
using System.Componen tModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Serv ices;
using System.Web.Serv ices.Protocols;
using System.Xml.Linq ;
using System.Data.Odb c;

namespace CWebService1
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Name space = "http://tempuri.org/")]
[WebServiceBindi ng(ConformsTo = WsiProfiles.Bas icProfile1_1)]
[ToolboxItem(fal se)]
// To allow this Web Service to be called from script, using
ASP.NET AJAX, uncomment the following line.
// [System.Web.Scri pt.Services.Scr iptService]
public class Service1 : System.Web.Serv ices.WebService
{

[WebMethod()]
public string CashOnly(string act)
{
DataSet ds = new DataSet();
OdbcConnection myOdbcConnectio n = new
OdbcConnection ("Driver={Micro soft Visual FoxPro Driver};"
+ "SourceType=DBF ;"
+ "SourceDB=c :;"
+ "Exclusive= No;"
+ "Collate=Machin e;"
+ "NULL=NO;"
+ "DELETED=NO ;"
+ "BACKGROUNDFETC H=NO");

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag
from d:\\act_frau.DB F where act = '" + act.Trim() + "'", myOdbcConnectio n);
myOdbcConnectio n.Open();
string results = myOdbcCommand.E xecuteScalar(). ToString();
myOdbcConnectio n.Close();

return results;

}
}
}
But with the actual production file on the network it doesn't:

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag
from \\\\fileserver\ \i\\probill\\ac t_frau.DBF where act = '" +
act.Trim() + "'", myOdbcConnectio n);

It gives me:

System.Data.Od bc.OdbcExceptio n: ERROR [42S02] [Microsoft][ODBC Visual
FoxPro Driver]File 'act_frau.dbf' does not exist.

The file does exist. FYI, i is a directory not a drive letter.

I've also tried this web service in VB and it works:

Dim myOdbcCommand As New OdbcCommand("se lect flag from
\\fileserver\i \probill\act_fr au.dbf where act = '" + act.Trim + "'",
myOdbcConnecti on)

What am I doing wrong?
Jul 3 '08 #3
Thanks for your reply Cj,

I think the further information you mentioned is quite important. That make
me think that the issue is probably due to the application's execution
context(user account).

For ASP.NET web application/webservice which run via Visual Studio built-in
server, since the built-in server is winform application, your web app code
is actually running under your current logon user account(under which the
visual studio also runs).

However, if you deployed it into IIS,(suppose you're using IIS6 on win2k3
or iis7 on vista), by default the web app is running under the IIS worker
process account( e.g the Network Service for IIS6 app pool).

Therefore, I suggest you first focus on this. For example, you can try
changing your IIS worker process account(app pool account) to an
interactive user account to see whether it works. Or you can
programmtically impersonate as a certain interactive user account at the
code you call the ODBC database.

For impersonate, you can refer to the following articles:

#How To: Use Impersonation and Delegation in ASP.NET 2.0
http://msdn.microsoft.com/en-us/library/ms998351.aspx

http://support.microsoft.com/kb/306158

If there is anything unclear or any other findings, please feel free to let
me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

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

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Date: Thu, 03 Jul 2008 14:41:11 -0400
MIME-Version: 1.0
Subject: Re: can't see this odbc datasource on the network from a web
service
>
I had a small breakthrough today. I found when I run the web service
from within Visual Studio by doing debug start it works! Unfortunately
when I publish it to local host it doesn't. Why do you think that would
be the case?

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag from
\\\\fileserver \\i\\probill\\a ct_frau.DBF where act = '" + act.Trim() +
"'", myOdbcConnectio n);
>>>The file does exist. FYI, i is a directory not a drive letter.

I've also tried this web service in VB and it works:

Dim myOdbcCommand As New OdbcCommand("se lect flag from
\\fileserver\ i\probill\act_f rau.dbf where act = '" + act.Trim + "'",
myOdbcConnect ion)

What am I doing wrong?
Jul 4 '08 #4
cj2
That's it. I don't know why I missed that. I had impersonation set up
in the Web.config files of my VB ASP.net programs but totally forgot it
when creating this C# program.

Thanks,
CJ

Steven Cheng [MSFT] wrote:
Thanks for your reply Cj,

I think the further information you mentioned is quite important. That make
me think that the issue is probably due to the application's execution
context(user account).

For ASP.NET web application/webservice which run via Visual Studio built-in
server, since the built-in server is winform application, your web app code
is actually running under your current logon user account(under which the
visual studio also runs).

However, if you deployed it into IIS,(suppose you're using IIS6 on win2k3
or iis7 on vista), by default the web app is running under the IIS worker
process account( e.g the Network Service for IIS6 app pool).

Therefore, I suggest you first focus on this. For example, you can try
changing your IIS worker process account(app pool account) to an
interactive user account to see whether it works. Or you can
programmtically impersonate as a certain interactive user account at the
code you call the ODBC database.

For impersonate, you can refer to the following articles:

#How To: Use Impersonation and Delegation in ASP.NET 2.0
http://msdn.microsoft.com/en-us/library/ms998351.aspx

http://support.microsoft.com/kb/306158

If there is anything unclear or any other findings, please feel free to let
me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

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

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Date: Thu, 03 Jul 2008 14:41:11 -0400
MIME-Version: 1.0
Subject: Re: can't see this odbc datasource on the network from a web
service
>I had a small breakthrough today. I found when I run the web service
from within Visual Studio by doing debug start it works! Unfortunately
when I publish it to local host it doesn't. Why do you think that would
be the case?

OdbcCommand myOdbcCommand = new OdbcCommand("se lect flag from
\\\\fileserver \\i\\probill\\a ct_frau.DBF where act = '" + act.Trim() +
"'", myOdbcConnectio n);
>>>>The file does exist. FYI, i is a directory not a drive letter.
I've also tried this web service in VB and it works:

Dim myOdbcCommand As New OdbcCommand("se lect flag from
\\fileserver \i\probill\act_ frau.dbf where act = '" + act.Trim + "'",
myOdbcConnec tion)

What am I doing wrong?
Jul 7 '08 #5
Thanks for your followup CJ,

I'm glad that you've figured out the problem.

Have a good day!

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

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

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Date: Mon, 07 Jul 2008 10:58:05 -0400
From: cj2 <cj*@nospam.nos pam>
User-Agent: Thunderbird 2.0.0.14 (Windows/20080421)
MIME-Version: 1.0
Subject: Re: can't see this odbc datasource on the network from a web
service
>
That's it. I don't know why I missed that. I had impersonation set up
in the Web.config files of my VB ASP.net programs but totally forgot it
when creating this C# program.

Thanks,
CJ

Steven Cheng [MSFT] wrote:
>Thanks for your reply Cj,

I think the further information you mentioned is quite important. That
make
>me think that the issue is probably due to the application's execution
context(user account).

For ASP.NET web application/webservice which run via Visual Studio
built-in
>server, since the built-in server is winform application, your web app
code
>is actually running under your current logon user account(under which
the
>visual studio also runs).

However, if you deployed it into IIS,(suppose you're using IIS6 on
win2k3
>or iis7 on vista), by default the web app is running under the IIS
worker
>process account( e.g the Network Service for IIS6 app pool).

Therefore, I suggest you first focus on this. For example, you can try
changing your IIS worker process account(app pool account) to an
interactive user account to see whether it works. Or you can
programmticall y impersonate as a certain interactive user account at the
code you call the ODBC database.

For impersonate, you can refer to the following articles:

#How To: Use Impersonation and Delegation in ASP.NET 2.0
http://msdn.microsoft.com/en-us/library/ms998351.aspx

http://support.microsoft.com/kb/306158

If there is anything unclear or any other findings, please feel free to
let
>me know.

Sincerely,

Steven Cheng

Jul 8 '08 #6

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

Similar topics

0
2587
by: Jamie Burns | last post by:
I have written a Windows Service to access an Oracle database. A dialog box appears, prompting for user logon if the database is not accessable due to network problems I just want the connection to fail quietly. Here's a little code snippet. // Create workspace. CDaoWorkspace wspCurrent; wspCurrent.Create("MyWorkspace","MyUser","MyPasswordUser");
1
5529
by: Lyle Fairfield | last post by:
I created a new MS-SQL Database, "TestODBC". I made Table1 and StoredProcedure1. I made an ODBC DSN for that MS-SQL Database. I created a new AccessXP mdb, "TestODBC". I linked to the table of the MS-SQL Database, "TestODBC". I wanted to use StoredProcedure1 as the bound recordsource for a new form Form1. But I
5
4046
by: Jerry Hull | last post by:
I'm working with a database developed by an untrained person over several years - and on a network that has recently been upgraded with a new server installed and MS office upgraded from 2K (I think - it might have been XP) to 2003. The database is impressive, both in what it does and the obtuse and inconsistent ways it works. There are several hundred queries, for example, with no indication of where they are used or if they are in fact...
0
1485
by: astro | last post by:
I am getting connection errors to an pervasive ODBC datasource ('Timerline' is the packaged product I am linking to). It works one week and the next week - all the links are invalid. I've checked the network connectivity and it is ok. I then tried to setup a new test ODBC connection and was not successful. Any ideas? Thanks.
1
3200
by: Mike Grishaber | last post by:
Hello All, Does anyone know how to programatically create an ODBC datasource in C#? I want to access some comma separated files using ODBC, and I don't want to go into the configuration utility for ODBC and create them manually. Thanks in advance. Mike
1
462
by: MethMath | last post by:
I have problems with a webservice receiving data in turn updating an Odbc-linked Access database on the same computer. The Odbc engine gives me an OdbcExceptionError: Message: Operation must use an updateable query. NativeError: -3035 Source: odbcjt32.dll SQL: HY000
2
1986
by: Mike | last post by:
Can a vb program running as a serice not use network paths to do file/io? I can't seem to get my program to work with network paths and files. When I use local disk it works fine. When I run it as a none service program it works fine. I'm assuming that vb programs running as a service do not support network paths. Is that true? Thanks in advance.
1
4288
by: marcnz | last post by:
I have been charged of creating a coldfusion web site for our company. Our database has a ms sql 2005 backend and ms access frontend. Almost all tables are linked tables with the SQL database, except the temp tables needed at runtime that are in the ms access database. It will be easier for us to utilize the ms access queries and temp tables, so I set up a datasource on our web server and within the coldfusion administrator to point to the ms...
8
2685
lifeisgreat20009
by: lifeisgreat20009 | last post by:
What might be the possible cause ? I have created a website using struts framework, jsp In my transaction page the money is not getting transferred.. When I hit the submit button in my Transaction.jsp page , no transaction happens .. Only the url changes from http://localhost:8080/bankfinalproject/jsp/transaction.jsp to this
0
9705
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10564
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
10073
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
7609
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
6846
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
5513
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...
0
5645
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4288
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
3806
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.