ServerHTTPRequest Failure On Intranet
I am trying to do a very simple piece of asp on a w2k3 server on the company intranet where i work (using IIS 6) the code is simply trying to get an xml stream via a ServerHTTPRequest.
The code I have works absolutely fine, I have tested it on a free asp friendly server on the net and it does exactly what i want it to! however when I run the code on the company intranet I get hit with the following problem.... Code:
View Replies
ADVERTISEMENT
I use an asp page to upload a word document to the web
server (with Soft Artisans SA file-up), but sometimes it
doesn't respond, seems to return with a zero sized answer.
I use IIS 6 on Windows 2003 Server and I use this machine
as a client too. The communication goes throught ssl
channel, HTTPS by certificates. If I use Windows 2000 as a
client from another place (that case there is a firewall
between the client and the server) sometimes the same
incident happens, but the Internet Explorer shows
the "Cannot find server or DNS error" message instead of
the blank
response. The problem happens independly of the parameters
which I fill in the form and independly of the file what I
choose. Sometimes the document uploads and sometimes not
with the same parameters. I cannot define the cause
exactly .
View Replies
View Related
I have an Intranet-based app at work, and I have it in two places there: a
dev machine and a production box. In both cases, the ASP files and SQL
Server 2000 database are on the same box. I have it running smoothly in both
places at work.
However, I've been trying to set it up at home, and cannot make the SQL
Server connection work for some reason. I've been working on this off and on
for weeks, and I just don't get what I am missing. Code:
View Replies
View Related
error '80004005'
Unspecified error
when sending an attachment, how do i debug this?
i found out that by default, ASP apps can only access files that are on the computerthat the server runs on. how can i change this so the IIS will take the files off the client's computer?
View Replies
View Related
With the following code snippet:
<%="complexid =" & rsComplex("ComplexID")%>
<% rsPhoto.filter = "complexID =" & rsComplex("ComplexID") %>
<%response.Write("<br>ID: " & rsPhoto("complexID"))%>
I get an 80020009 error on the last line.
The first line appears in the HTML output as complex=589, so I know
that there is a valid value available for the filter.
This worked once and hasn't worked since.
The rsPhoto recordset is viewable in a seperate page. The complexID in
the associated table has a value of 561 in the complexID column.
View Replies
View Related
I've create a custom com object and I use it as follow:
set test = Server.CreateObject(myObject.classID)
' --> all OK the istance of the object is correctly created
retval = test.function1(par1, par2 ...)
' --> as soon as I call every function of my com object the system returns
the following error: 0x8000FFFF: catastrophic failure.
I do not know why
View Replies
View Related
to some mail accounts, I can't send mails to them?Whoes fault is this?
the part of code is as follows.
<%
set mail=server.CreateObject("cdonts.newmail")
mail.To=aaa@aaa.com
mail.From="system@aaa.com"
mail.Subject=today & " New Messages"
mail.Body="<html><body><a href='http://admin_main.asp'>go message
board</a></body></html>"
mail.MailFormat=0
mail.BodyFormat=0
mail.Send
set mail=nothing
%>
View Replies
View Related
Is there any way to check that database connection has been established or not ( ASP connection with oracle)
am using this connection
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "Provider=MSDASQL;DRIVER={Microsoft ODBC for ORACLE};UID=nnn;PWD=nnn;Server=yyy"
View Replies
View Related
i have a variable called newvalue1 which contains a date such as
newvalue1 = request.form("tf1")
where tf1 is the date sent from the previous page in the format 4/5/2005
now when i give the following statement it gives an error
objrs.find ("date") < newvalue1
"Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another."
also if i give:
objrs.find ("date") = newvalue1
i get a " type Mismatch" error
any thing wrong?
View Replies
View Related
I use the method below to send emails from an asp page that's part of a
web application:
<!--METADATA TYPE="typelib" UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
NAME="CDO for Windows 2000 Library" -->
<%
On error Resume Next
Dim cdoConfig, cdoMessage
Set cdoConfig = Server.CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(cdoSendUsingMethod) = 2
.Item(cdoSMTPServer) = "MailServer.Name.com"
.Item(cdoSMTPServerPort) = 25
.Update
End With
Set cdoMessage = Server.CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = "Me<mailsender@mymail.com>"
.To = "You<mailrecipient@somemail.com>"
.Subject = "Surprise!"
.TextBody = "Helloooo..."
.Send
If err.number Then
Response.Write("Houston! We have a problem...")
End If
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>
On the production server (Windows 2003 Server) everything works fine
and I don't have a problem sending the mails from the application.
However, I recently upgraded my development box to Windows XP Pro SP2
and the code fails with with the following error:
CDO.Message.1 (0x80040213)
The transport failed to connect to the server.
The from and to email addresses that I'm using are valid and part of my
domain (not a Hotmail or other freemail address).
The SMTP service is up and running on the dev box.
I also tried replacing the mail server name with the IP address of the
mail server, but again it's failing.
We are running Exchange Server for email and if I change the
cdoSendUsingMethod to 3 (for cdoSendUsingExchange) the mail is sent
correctly without errors.
Will I not able to use the cdoSendUsingPort method to send the email if
I'm on Exchange? Am I forced to use cdoSendUsingExchange?
View Replies
View Related
Anyone got much of a clue how best to send emails to selected people from a database table and to be able to track them, maybe as much as a read receipt, or perhaps just checking that they don't bounce, or end up in the bad mail folder.
Is this best/possible to try and code or is there a free/cheap component that does this simply.
View Replies
View Related
I am developing a system that needs really security,but on INTRANET.Do I need SSL??
If yes how will I use SSL in ASP??
View Replies
View Related
Please recommand any intranet examples with the good navigation and interface design?
View Replies
View Related
I have got a little experience with web design, and have produced a basic website for a local charity run advice centre.They have a variety of forms, some in PDF format, some hard copies, which at present they fill in by hand then post out. We have been talking about moving towards a paperless office for them and a way to automated form filling. My best shot was to look into creating an Intranet for them and using ASP we could be able to fill the forms in on the PC then print out.
Are there any specific things that need doing to the server to run an Intranet, and as I said earlier, I'm new to ASP so I wanted to know if anybody has any Ideas or templates that would be useful to help me with this project?
View Replies
View Related
There are 3 pcs on a network in the office and I am designing some stuff using an access db and asp pages. Instead of everyone using my pc, they want to be able to logon and work off it from their pc. I just type in http://localhost/mysystem and I can access it but I don't know what url they need to type in to access the pages?
View Replies
View Related
I have a comments form on Intranet.And I want the information written by users on this page send to my e-mail address,and the user doesn't have to write his/her mail address on this form.We are on same domain.The free scripts use smtp but no need while sending mails over Intranet
View Replies
View Related
My work has decided to give me the job of building them an intranet. Being pretty new to .NET and ASP in general I was wondering if anyone knew of books or sites I should take a look at that might help me get started.
View Replies
View Related
I'm currently working on an Intranet for one of our clients. I'm developing a user directory for them using a SQL Server database.
My client has provided me with the information to connect to the server remotely via windows remote desktop connection. I would like to know how I go about getting Dreamweaver to connect to the database?
Will I have to create a database locally and then publish the local database onto their server or, can I create the database on their server and using DW to connect to it?
View Replies
View Related
I have developed a company Intranet page,and have the requirement of adding a search function to it. My question is,i need a simple search solution, that will search through my site which has include files.What tool do you recommend to run that will index my pages?
View Replies
View Related
I have an Intranet website that our corporate users and customers access to pull up information on various things. I now have to publish content that should only be available to corporate users. I do not want to create another website or use host headers... there is no login page or anything today within the ASP pages.
What is the best way for me to host content that only internal users can see? I thought about removing all NTFS permissions to the "private" directory where I plan on having web pages... thinking that IIS would prompt users when trying to access pages within this directory. For some reason, IIS still displays the page. I'm not sure what I'm missing.
View Replies
View Related
I'm dowing a web site on my intranet in a ASP page I have to made save option, on the intranet everything is working fine, but when I upload my website in the internet I have this message:
The page cannot be displayed
There is a problem with the page you are trying to reach
and it cannot be displayed.
What is the probleme my page is in ASP and on intranet it's working fine.
View Replies
View Related
I am currently preparing my final year university project and dissertation, for which I am developed an Intranet system for a local company.
The company requires an online calendar similar to functionality of the one in Outlook. However, they would also like to integrate an appointment reservation booking system into the calendar, so meeting rooms/employees can't be double booked etc.
I will be developing the Intranet system in ASP because of the company's hosting package.
I have looked about on the Internet for free scripts or applications but all the ones I have seen are no good and don't contain the functionality I am trying to achieve.
View Replies
View Related
How can I programmatically in ASP detect the difference between being on an Intranet (ie no outside www access) and the Internet (where can can get www access) ?
I have a program, which has a registration module being built. The module automatically skips across a couple of servers and checks the registration codes, and skips back to the program and informs it the registration code is authentic;
the program there after continues as normal; one of my users wants to install the program on an intranet in their office - I have no problems with that except the registration system will keep stalling and requesting a valid user registration code:
View Replies
View Related
Is the developement process of intranet & internet application is the same....Can the internet application that I build using asp be used in a intranet enviroment....
View Replies
View Related
Can I get the list or names of forums which is as good as PHPBB or Invision in ASP....
And also Can I have the names of good CRM and Intranet in ASP as well. Basically I need CRM for my client who want to manage theirs Link Building Management Process.
View Replies
View Related
I am trying to setup an error reporting system for our Intranet. We have a
Windows 2000 Server with SQL Server and we have an Exchange Server 5.5. I
need to set it up so I can use CDO mail. I have used CDO before, but have
never set it up to work. I built a small little page with some CDO code on
it, but I get an error when I try to run it. How can I set this up to send
mail from the webserver to people in our facility?
View Replies
View Related
We have an intranet site which does not allow for anonymous logins so we
hate the NT user name of every visitor passed to us by the system. Is there
also away to access Active Directory and find out what network security
groups have been assigned to each visitor?
View Replies
View Related
Done something with php and C/C++ sometimes. Problem:
I'm making intranet to my office and would like to open files from intranet (shared ms-net) directly to excel.
if I use a-tag those files open to IE and are read-only. I asked some ppl and they adviced to use header (theverychap from phpfreaks did this with php and it worked fine) but I can't get IIS to work right. Code:
View Replies
View Related
I have an ASP application that has been running fine for years. I can access the application from my laptop via the Internet without problem. I brought my laptop into the office today and plugged it into the intranet. I did not join the computer to the domain.
From inside the office I cannot run my application. I can bring up the login page and try and login, but it appear to have no session variable on the redirected page during login. I tried to set the cookies secruity to allow all, still no good.
View Replies
View Related
I'd like to check if the user accessing my site is from the internet or from the intranet, based on which I display different messages in a page. I propose to check the REMOTE_ADDR server variable to determine the user.
But I'm not sure if checking if the REMOTE_ADDR = 127.x.x.x or 10.x.x.x would suffice. Thus if the first hex part of the ip address is 10 then he's from a lan, or if t's 127, it's the local machine. Otherwise he's from internet. Would this be a foolproof way of determining where the user is from? Just forgot my TCP/IP lessons .
View Replies
View Related
can someone tell me how i can create a simple intranet login using ASP.
View Replies
View Related
We're trying to setup an Intranet site with one portion of the site restricted using Windows Integrated Authentication. The rest of the site is accessed using anonymous access. Here are the details of the site
1) The restricted portion of the site is protected using NTFS permissions for authorized users
2) ONLY Anonymous user has NTFS permissions to the rest of the Intranet (all files / folders EXCEPT the restricted portion)
3) The IIS setting throughout the site has both anonymous access and Windows Integrated Authentication enabled
4) The restricted portion of the site is also the application start-point (in IIS) for an ASP application
5) The restricted portion of the site launches in a new browser window (using target="_blank")
Authorized users are able to access the restricted portion of the site. The problem is that when they try to get back to any of the anonymous access pages, they are prompted with the Windows Authentication dialog.
Is there any solution to this? Are there any web server settings that I need to look for?
View Replies
View Related
reworking some security for an intranet. need to know if this will do it. user logs in and a session variable is set to true. also a time snapshot is take when they login. if the time has been over 10 minutes without visiting another page its set to false. aslo if they log out its set to false. are there any holes that i should be aware of?
View Replies
View Related