Search results

  1. S

    money back guarantee? -- I've shut down my account weeks ago

    Yes I've filled out the form and I've sent an email twice. But I've gone past the 30 days. So I was told that it would only be a refund of unused monies. And that's fine. But nothing has happened since. Not only have I not received the refund, jodohost still thinks my account is active...
  2. S

    money back guarantee? -- I've shut down my account weeks ago

    I shut my jodohost account several weeks ago because the asp.net server was unbelievably slow. I was told then that I would be entitled to a refund of unused monies. To date, I have not received a single cent. Is the "money back guarantee" on your site something that people should take...
  3. S

    Scheduled tasks

    Can we have a scheduled tasks type system where something can automatically call a web page once every 15 mins or something like that to keep the web application "in memory" so that IIS doesn't have to JIT compile everytime which then avoids the slow first loads? I've noticed that if an...
  4. S

    Slow page loads and .NET 2.0 JIT compilation

    I've recently discovered that .NET 2.0 applications load incredibly slowly the first time they are run immediately after an application or a configuration change (and also after a server boot). When I say slow I mean several minutes not several seconds. The reason for this is that asp.net...
  5. S

    Asp.net 2.0 trust level and binary serialization

    I found an alternative solution. So this one is not so important anymore.
  6. S

    Asp.net 2.0 trust level and binary serialization

    I have a new app to put online. This one uses binary serialization. And asp.net 2.0 is throwing the following error: "Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0..." Is it possible to grant permission to...
  7. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    In case you missed the pm I sent you New error ORA-12541: TNS:no listener From http://www.orafaq.com/forum/t/23732/0/ it seems it is a firewall or permissions problem or something like that -- ie, some extra software on the box that is interfering with oracle's running on windows.
  8. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    Found something on this: http://dotnetjunkies.com/WebLog/rtgurskevik/archive/2005/01/19/45958.aspx Apparently it is not a software installation problem, it is an oracle user authentication/permissions problem -- perculiar to oracle installations on windows
  9. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    The security exception is gone but there's a new one "System.Exception: System.Data.OracleClient requires Oracle client software version 8.1.7 or greater." My mistake. Apparently, there needs to be some software installed on jodohost's servers from oracle. I thought it would all be in...
  10. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    Still the same. Maybe a reboot or something is needed? Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the...
  11. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    Still can't connect. Same security exception message.
  12. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    So what is the solution? This issue has been going on for over a week. I am behind schedule. Can you just permit OracleClient?
  13. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    Here's some stuff on OLEDB not working with Oracle 10g http://www.eggheadcafe.com/ng/microsoft.public.data.oledb/Jul2005/post23254865.asp
  14. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    I think Microsoft's data provider for oracle, OracleClient, is built into the .net framework. No further installations are needed. In this case, it should simply be a matter of permitting OracleClient -- ie, adding OraclePermission to the trust file...
  15. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    How is the oracle issue going? I still can't connect.
  16. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    Ok I spotted something The first try was Driver={PostgreSQL};Server=;Database=; User=;Password=; which is similar to the syntax I used for MySQL. I just noticed that Hsphere's dsn builder uses UID and PWD instead of User and Password So a dsnless connection string for postgresql...
  17. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    I just tried postgresql with a dsn and it works. So that one is now ok. The first attempt was with a dsnless connection.
  18. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    I tried ODBC for Oracle and it doesn't work either. The query I'm trying is "select * from v$Version" which is supposed to just return the version number -- akin to "select version()" for mysql. Any chance of getting OracleClient, given that it is the data provider/driver that Oracle...
  19. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    I'm having problems with postgresql and oracle. Mysql works now. The connection string I'm using for postgresql is Driver={PostgreSQL};Server=;Database=; User=;Password=; which is similar to the mysql one except for the driver string. Running "Select version()" produces "The...
  20. S

    asp.net 2.0 and MySQL, PostgreSQL and Oracle 10g

    Much appreciated.
Back
Top