Tiff - How To Display Image That Is Located On Another Server On The Network

Apr 13, 2010

I've got a ASP.NET site that's located on a local server (MY_SERVER). And one of the things it does is pull up tiff files which are located on another server (ANOTHER_SERVER). The location of each of these files is stored in SQL. I pull up each of these images and am supposed to display them. The problem is:

the files are not named with a tiff extension (does it matter?) they aren't displaying at all.

I am using an Image control to display these images, and I'm not sure if it matters that the extension is not set (does the image control know the difference between an jpg and a tiff without the extension?)

I am guessing the images aren't displaying because they are not on the same server MY_SERVER that the images are located (ANOTHER_SERVER).

edit: actually displaying the tiff files were amazingly simple:

protected void Page_Load(object sender, EventArgs e)
Response.ContentType = "image/png";
new Bitmap(Request.QueryString["ImagePath"]).Save(Response.OutputStream, ImageFormat.Gif);
}

but because the images are located on ANOTHER_SERVER I still can't access them. I may just do a hack where I copy them to a local directory on MY_SERVER but there's gotta be a simple way to fix this. Anyone?

View 3 Replies


Similar Messages:

Display Post Data From Vb.net Application To Web Service Asmx That Is Located On Server

Jan 14, 2010

I am trying to post data from vb.net application to web service asmx that is located on server! For posting data from vb.net application I am using this code:

Public Function Post(ByVal url As String, ByVal data As String) As String
Dim vystup As String = Nothing
Try
'Our postvars
Dim buffer As Byte() = Encoding.ASCII.GetBytes(data)
'Initialisation, we use localhost, change if appliable
Dim WebReq As HttpWebRequest = DirectCast(WebRequest.Create(url), HttpWebRequest)
'Our method is post, otherwise the buffer (postvars) would be useless
WebReq.Method = "POST"
'We use form contentType, for the postvars.
WebReq.ContentType = "application/x-www-form-urlencoded"
'The length of the buffer (postvars) is used as contentlength.
WebReq.ContentLength = buffer.Length
'We open a stream for writing the postvars
Dim PostData As Stream = WebReq.GetRequestStream()
'Now we write, and afterwards, we close. Closing is always important!
PostData.Write(buffer, 0, buffer.Length)
PostData.Close()
'Get the response handle, we have no true response yet!
Dim WebResp As HttpWebResponse = DirectCast(WebReq.GetResponse(), HttpWebResponse)
'Let's show some information about the response
Console.WriteLine(WebResp.StatusCode)
Console.WriteLine(WebResp.Server)
'Now, we read the response (the string), and output it.
Dim Answer As Stream = WebResp.GetResponseStream()
Dim _Answer As New StreamReader(Answer)
'Congratulations, you just requested your first POST page, you
'can now start logging into most login forms, with your application
'Or other examples.
vystup = _Answer.ReadToEnd()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
Return vystup.Trim() & vbLf
End Function

View 1 Replies

Using A Tiff Image On A Webpage?

Oct 7, 2010

I may be forced into using a tiff image on a webpage.

Do most modern browsers handle tiffs. Are there any gotchas?

View 3 Replies

Web Forms :: Can't Get Image From Network Server

Oct 21, 2010

I inherited a web site that has a web page that displays images of properties for an online property/tax info. Using VB code, it searches for a main image then creates and saves smaller images for use as thumbnails. Currently it gets the images from a directory on the web server. The images are copied to the web server via a job from another server on our network. I am trying to code the page to get the images directly from the original server and having trouble doing it. Here's the code. Point of failure is indicated:

[Code]....

The server error: "Parameter is not valid." How can I get this to work?

View 7 Replies

Setting ContentType = "image/tiff" And Sending An Image Is Not Working In IE?

Jan 20, 2011

I need to send an image (as a downloadable file) from an ASP web page. It is working correctly in every browser except for IE (all versions).

Here is the server side code:

bool export = Request.QueryString["Export"] != null;
if (export)
{
byte[] allBytes = File.ReadAllBytes(@"C:MyImage.tif");
Response.ContentType = "image/tiff";
Response.AddHeader("content-disposition", "attachment; filename="MyImage.tif"");
Response.OutputStream.Write(allBytes, 0, allBytes.Length);
Response.OutputStream.Flush();
Response.End();
return;
}

And here is the JavaScript:

$('#ExportFrame').attr('src', 'Default.aspx?Export=true'); // ExportFrame is an iframe
In IE, I keep getting an error saying "Internet Explorer cannot download Default.aspx from localhost". I thought it might be an issue with loading it in an iframe element, but redirecting to the URL is not working either. The really odd thing is that going to the URL (/Default.aspx?Export=true) does not work the first time, but works every time after that. Again, this works in every browser I've tried except IE.

Update:

The aspx page has the following code to keep the page from getting cached:

// Never cache this page
Response.CacheControl = "no-cache";
Response.AddHeader("Pragma", "no-cache");
Response.Expires = -1;

Removing the first 2 lines and leaving only Response.Expires = -1 resolved the issue.

View 1 Replies

Possible To Call An Web Service On Private Corporate Network From Web Service Located In Dmz

May 18, 2010

whether its possible to call an web service on a private corporate network from a web service located in a dmz?

View 2 Replies

C# - Display Tiff - Png Images Or Windows Application In IE Browser?

Oct 14, 2010

How to display tiff, png images in ASP.NET or windows application in IE browser.

View 1 Replies

Web Forms :: Display Image In Image Control After Upload On Server Then Save To Database

Apr 16, 2013

I have filed image type varbinary

I want upload image and show then with click button save

store in db

View 1 Replies

How To Display An Image In Image Control Using Fileupload As File Not Save To Server

Feb 23, 2011

i want show an image in image control as user select an image file through fileupload control. and i not want saving image on the my server

View 2 Replies

Configuration :: Image Display / Move It To Live Server, It comes Up With An Empty Image Box?

Nov 8, 2010

I have a routine to display an image on an aspx page. The url for the image uses imagerender.aspx . This is simply an empty page with code behind:

myClass mysub = new Myclass(); // create class
Stream strm = mysub.DisplayImage(UserID); // call method to load bytes from db
byte[] buffer = new byte[2048];
int byteSeq = strm.Read(buffer, 0, 2048);
while (byteSeq > 0)
{
Context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 2048);
}

Ok, this work fine when testing on my local machine, but when I move it to the live server, it comes up with an empty image box!

It looks like there must be a problem with security, maybe with ISS.

Does anyone know what changes I can make to fix this problem or what setting to change in IIS 7?

View 4 Replies

Web Forms :: Trying To Display An Image Filed From Sql Server Into An Image Webcontrol

Jul 6, 2010

i'am trying to display an image filed from sql server into an image webcontrol (not in a gv or repeater) ,?

View 2 Replies

How To Display Image Which Is Stored In Sql Server In Image / Picture Box

Dec 20, 2010

i am using visula studio 2005 and sql server 2005 i want to display a image in picture box that is store in database how can i achieve this task ?

View 3 Replies

Web Forms :: Display Thumbnail Image In DataList Image Gallery And OnClick Display Original Image

Oct 12, 2012

I need to develop image gallery

Image saved in Folder called Images and image Name , Description saved in Database Table Images.

On Deafault.aspx

Thubnail images should display with out any change in Quality i.e by DataList Control

On Click of Thubnail images Fullview of image with width and height same as image width and height   
Next, Previous, Close Buttons on Popup window

View 1 Replies

Forms Data Controls :: Displaying A Default Image In Gridview If Thumbnail Cannot Be Located

Nov 21, 2010

I have a gridview which displays thumbnails in the first column and details in the other columns. The thumbnail URL is being retrieved using the following:

[Code]....

However, if the thumbnail cannot be located, a white box with a cross appears instead (as expected).

To handle this better, I would like to display a different image if the thumbnail cannot be located for any reason, for example an image saying "Image Cannot Be Displayed". But I am unsure of how to do this, of even where to do this. Essentially I need to assess the value that the datagrid is using for the particular URL when it is databound. But can I put VB.NET code in this?

View 9 Replies

Forms Data Controls :: Add A Sub To Vb File That Changes The Display Value Of Several Asp:panels Located In A Formview Item Template

Jul 22, 2010

I wish to add a sub to vb file that changes the display value of several asp:panels located in a Formview Item Template. My only question is what is the proper event to run this in. (databound, item created etc...) If it matters this formview appears in a Gridview Item Template.

View 7 Replies

ADO.NET :: How To Get And Write Data To A DB Located On The Server

Jan 2, 2011

I have a silverlight client that i want to get and write data to a DB located on the server . now this is what i did :

1. created the silverlight projecte hosted in asp site project, with wcf enabled .
2. created a DB with some tables in it.
3. created linq to sql classes, and wcf service with operation to fetch data from the DB, added the project the referance .

result:

when i debug it locally on localhost, it workes perfectly, but when i upload all the content to the server i get an error, my guess is that the service is not finding the DB . after I uploaded the content, all i did was change the connection string in my web.config file to the one provided to me by the hosting server.
exception:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)
Timestamp: Fri, 31 Dec 2010 12:11:43 UTC
Message: Unhandled Error in Silverlight Application An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
at MyProfile.ServiceReference1.GetMessagesCompletedEventArgs.get_Result()
at MyProfile.MainPage.webService_GetMessagesCompleted(Object sender, GetMessagesCompletedEventArgs e)
at MyProfile.ServiceReference1.ServiceClient.OnGetMessagesCompleted(Object state)
Line: 1
Char: 1
Code: 0

View 3 Replies

SQL Server :: Unable To Open Directory Where Mdf Is Located

Aug 15, 2010

I am trying to attach my database to Microsoft SQL Server Management... I right clicked on Database -> Add and then tried to look into the directory however I cannot expand the directory and when I use the exact hyperlink [...]httpdocsApp_DataurantitDB.mdf

I get an error message of Inetpubvhost[...]httpdocsApp_Dataurantit.mdf failed with the operating system error 5(Access is denied). (Microsoft SQL Server, Error: 5133)

View 3 Replies

Configuration :: Run An Exe File Located At Web Server Using Application

May 14, 2010

I am running an exe file located at Server named Wget (Command line Web Crawler) using aps.net application.

When I run it from Visual Studio Development environment it run properly and gives required results.

But when I run it from the IIS Server its process run properly but terminated immediately and doesn't give required results and there is no any kind of exception.

View 3 Replies

Getting The URI Of A Resource Located Server Side In Silverlight?

Jan 10, 2011

I'm very new to silverlight and I'm trying to play a video located in the web project associated with my silverlight application.

What is the best way to get the URI of videos located on the server without hard coding the web address?

View 2 Replies

Crystal Reports :: Show .nfo File Located On Server

Jun 2, 2010

I want to show .nfo file to user.That nfo file is located on server and i am giving it's path in crystal report.

So, when user click on that path of nfo file in crystal report, i want to show that file to user.

I cannot open nfo file in browser.I got this error,

HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

I am using .net3.5 and iis7.

View 3 Replies

Security :: How To Grant Access To Some Ressources Located On Server Only For Specified Web Pages

May 21, 2010

I want to grant access to some ressources located on server only for specified web pages, how could I do this?

For example I have an image www.mysite.com/images/image.jpg and something like <img src="www.mysite.com/images/image.jpg" /> should only work on site asp.net.

Is it possible with web.config or maybe with some C# code?

View 4 Replies

SQL Server :: Connecting To A Remote Database Located On A Virtual Machine On The Same PC?

Dec 22, 2010

I have a project that must illustrate that connection to the database is not locally, so I have install VirtualBox and I intend to install SQL Server on it. So any one have the idea of how can I connect from the Host Machine to the SQL Server located on the Virtual Machine

View 3 Replies

Web Forms :: How To Configure Generated Log File If Server Is Located On Azure

Dec 23, 2015

I would like to work with NLog to track my application's events.How i can configure the generated log file if my server is located on Azure?

View 1 Replies

How To Display Image In Mail After Deleted In App Server

Aug 31, 2010

I have a code which creates an image in application server and that image has been referred in mail html. After sending mail, image will be deleted in application server. When i open the mail , image is not getting display in the mail.

The reason i guess is , my code is deleting the image before it copied to mail server. I have checked by deleting the image manually.

First i opened the mail(this time image get copied to mail server) and then deleted the image in pplication server. When i open the mail 2nd time, image get display(because image is in mail server i guess)

Again i ran the code, this time before opening mail first time, i deleted the image in application server and opened the mail. Image is not displaying(because image not getting copied to mail server).

View 1 Replies

How To Retrieve And Display The Image From SQL Server Database

Aug 2, 2010

here is the way i store my image...

[code]....

how i can retrieve the image from the database and display it in my form?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved