Ask a Question related to ASP.NET, Design and Development.

  1. #1

    Default Firewall problems

    I have a very simple webservice that I want to access.
    It works fine when there is no firewall in the way, but
    when there is a firewall I have a problem. I get the
    initial connection, but any further communication is
    blocked. It appears to initally use port 80 and then
    switch to another port. Is there a way to force the
    webservice to stay on port 80?

    Here is a sample of what I am doing:
    Imports System.Web.Services
    Imports System.IO
    Imports ADODB

    <System.Web.Services.WebService( _
    Namespace:="http://Walkthrough/XmlWebServices/", _
    Description:="User Registration.")> _
    Public Class Register1
    Public Function RegisterUser(ByVal MAC As String,
    ByVal Facility As String, ByVal Address As String, ByVal
    Address2 As String, ByVal City As String, ByVal ST As
    String, ByVal Zip As String, ByVal FirstName As String,
    ByVal LastName As String, ByVal Phone As String, ByVal
    Email As String) As Int16
    Dim con835 As New Connection
    Dim cm835 As New Command
    Dim rs837 As New Recordset
    Try
    con835.Open
    ("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data
    Source=c:\Inetpub\wwwroot\ValidateUser\validateuse rs.mdb;"
    )
    Dim recordsEffected As Object
    Dim strSQL As String = "INSERT INTO users
    (mac, facility, address, address2, city,st, zip, last,
    first, email, phone, registered, usesleft) " & _
    "VALUES ('" & MAC
    & "','" & Facility & "','" & Address & "','" & Address2
    & "','" & City & "','" & ST & "','" & Zip & "','" &
    LastName & "','" & FirstName & "','" & Email & "','" & _
    Phone & "','NO','10')"

    ' Execute SQL statement
    con835.Execute(strSQL, recordsEffected)
    con835.Close()
    Return 0
    Catch ex As Exception
    Return -1
    End Try

    End Function
    End Class
    Ron Douglas Guest

  2. Similar Questions and Discussions

    1. Firewall and Proxy Problems
      In the fall, my company began development on a new delivery system for our online courses: a Flash based player that utilized a FlashCom server to...
    2. Problems connecting through a firewall
      Hi, We are testing contribute with a client of ours. I've set up a simple test site which works fine with Contribute from our offices. The client...
    3. CFFTP problems with firewall
      I'm working with ColdFusion MX 2004. Currently I'm trying to use CFFTP to go out to my production web server (running Serv-U for the FTP server) and...
    4. FTP Problems (probably my firewall)
      Hello list, I'm trying to get FTPD working, but I think I'm not opening the correct ports for it in my firewall. I've got 20 and 21 open, and I...
    5. Internet connection/firewall problems
      In article <071c01c34b79$f9cd4050$a601280a@phx.gbl>, "Per Bylund" <per@anarchism.net> wrote: The problem could be that XP is turning off the...
  3. #2

    Default Firewall Problems

    We have had two firewall problems in the last week.... neither client was ever
    able to use Contribute 4 from behind their firewall. They are having to update
    their sites from home.

    What should I be telling their network administrators about how to resolve
    this problem?

    Marje Guest

  4. #3

    Default Re: Firewall Problems

    Make sure you've read the Tech note for users behind Cisco firewalls - if it
    applies to your case [url]http://www.adobe.com/go/fc1a435a[/url]. You need to pick which
    version of the file - either for mac or pc machines and then replace the
    NetioFTP.dll file in the contribute program folder.

    Also if you can try asking your network admins to create a port for you to FTP
    through, instead of using the default port 21. You can configure in Contribute
    to use a port either than that one. Make sure that your clients aren't running
    a software firewall in addition, like zonealarm that is intentionally blocking
    FTP traffic.

    Make sure you've read this tech note for [url]http://www.adobe.com/go/kb400144[/url]
    When I set my FTP settings from the default of "let contribute automatically
    detect FTP settings" and instead "Choose FTP settings manually". Also click for
    "Use Passive FTP" -+ "Use FTP performance optimizer and Use alternative publish
    method".

    Other troubleshooting tips:
    [url]http://www.adobe.com/go/kb400144[/url]
    FTP Server Checker (TechNote 19012).

    Hope this helps




    stockholmsyndrome2006 Guest

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139