Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. crazyitguy

    Advice on keeping track of network connections

    Can someone give me some advice on way to keep track of what is connected to what in a network. I use a spreadsheet now, but it is very inefficient. like this: -Switch1-FE1 -> PatchPanel1-1 -> room 1 -> Jack 1 -Server1 -> Switch2-FE1 Thanks
  2. crazyitguy

    wse policy is ignored

    I am testing out wse policies on a test web service. User/Certificate authentication is being bypassed. Thanks WebService.asmx: using System; using System.Web; using System.Collections; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace =...
  3. crazyitguy

    gridview/objectdatasource can not update/delete complex objects?

    I didn't mean to incinuate that I do not know how to write "complex custom business objects". I have written many.When I say " complex custom business objects" I meant an obect that has a handle on another object. I was just giving example code above, its not the actual code I wrote. That...
  4. crazyitguy

    gridview/objectdatasource can not update/delete complex objects?

    is it true that gridview/objectdatasources can not update/delete complex custom business objects? like: public class Order { private int _orderid; private string _somestring; private Customer _customer; public Order() { _orderid = 0; _somestring = ""; customer = new Customer (); } //...get/set...
  5. crazyitguy

    bgp: full routing table vs partial routes; need to free more memory

    We are running low on router memory and need to decide whether to buy more memory or ask one of our ISPs(ISPB) to send only partial routes (their routes and directly connected routes). We have 2 routers , each going to a seperate ISP. ISPA(connected to router1) is sending us only a default...
  6. crazyitguy

    convert this sql server SP to ORACLE SP

    Thanks... Here is the code so far. I had to convert each sort expr into chars. I am now getting an error: 9/5 PLS-00428: an INTO clause is expected in this SELECT statement create or replace PROCEDURE GetAccountsSubset ( startRowIndex in int, maximumRows in...
  7. crazyitguy

    convert this sql server SP to ORACLE SP

    Dagon: Are you saying that the WITH statement should work? Here is what I have so far.. What needs to change? Thanks create or replace PROCEDURE GetAccountsSubset ( startRowIndex int, maximumRows int, sortExpression varchar2(50) ) AS BEGIN WITH a AS (...
  8. crazyitguy

    convert this sql server SP to ORACLE SP

    The purpose is to fill a .Net gridview with Paging and sorting enabled. "Count, rank sum" I do not know what that means. " over (order by..." is just to sort the records. Thanks
  9. crazyitguy

    convert this sql server SP to ORACLE SP

    Can someone help me convert this SQL server SP to ORACLE. I am mostly interested in the "WITH a AS" and "OVER (ORDER BY..." statements. Thanks ALTER PROCEDURE [dbo].[GetAccountsSubset] @startRowIndex int, @maximumRows int, @sortExpression nvarchar(100) = null AS WITH a AS (...
  10. crazyitguy

    ldap authentication..store user data in local SLQ table

    This question is not specific to .net; just some theory... Lets say I wanted to authenticate users against an LDAP directory such as Acitvie Directory. The directory also has other attributes for each user such as fname, lname, etc, etc. Would it be "better" to grab that data and store it in...
  11. crazyitguy

    will t1 card for 1700 series router work in an 1800 series router?

    Can anyone tell me if the t1 card/module for 1700 series router work in an 1800 series router(or show where I can find out)? thanks
  12. crazyitguy

    Upgrade server farm advice

    I think that solves the problem.... Thanks for all your help.
  13. crazyitguy

    Upgrade server farm advice

    If the L2 switch ( which is connected to the active firewall) goes down, will the firewalls recognize this and force the standby firewall to become active? According to this article: http://www.informit.com/articles/article.asp?p=24686&rl=1 If this is true then will the same thing happen if...
  14. crazyitguy

    Upgrade server farm advice

    1)If Firewall1 is active and Firewall2 is standby and switch1 goes down, how does traffic get from Firewall1 to the edge routers? I am not sure how ASA failover works(I am assumming it works like PIX) but the connection between the 2 firewalls is a "failover cable". It is for heartbeat type...
  15. crazyitguy

    Upgrade server farm advice

  16. crazyitguy

    2 int on firewall if primary int fails , 2nd int will take over

    It seems that it is only available with Adaptive Security Device Manager which is only available on select ASA/PIX devices. Will it work on a 5200 ASA series?? Any other way?
  17. crazyitguy

    Upgrade server farm advice

    That makes sense... I am going to ask the firewall people what they think. What about the Layer 3 device configs. Was there something wrong there? I am guessing that the internal interfaces on the firewalls need to be in different subnets as well, correct? Should subnets C or D be VLANs or...
  18. crazyitguy

    2 int on firewall if primary int fails , 2nd int will take over

    This question is for PIX and/or ASA firewalls: I am planning to implement a network like the one below. It has an Active/Standby firewall config and BGP enabled edge routers. Firewall1 is the active firewall with the default gateway set to Router1. If Router1 fails, how can I tell Firewall1 to...
  19. crazyitguy

    Upgrade server farm advice

    my bad... If I put a direct connection between Router1 and Router2, and L2Switch1 fails, would traffic still go out through ISP2. We set BGP's "local prefernce" higher on Router1, the BGP tables on router2 will still be showing the best route for most destinations would be through router1...
  20. crazyitguy

    Upgrade server farm advice

    > A router can not have 2 interfaces in the same subnet though. Are you positive about this? Can anyone concur? If this is the case then wouldn't the same logic apply to the firewalls. The firewalls act as routers but they will have 2 interfaces in the same subnet...... If that is true than...

Part and Inventory Search

Back
Top