WCF / ASMX :: Receive Image From Iphone?

Sep 14, 2010

i am currently working on a project with an iphone developer in which i need to receive an image to my .net 1.1 web service. Here is the code that locally works fine if i take an image and convert to bytes... but from the iphone it is coming across as an unreadable 1 kb file. Any thought or experience? Is it encoding issue? Developer says he is sending it as utf8?

<WebMethod()> _
Public Function UploadFile(ByVal fileBytes As Byte()) As Boolean
Try
Dim ms As New MemoryStream(fileBytes)
Dim fs As New FileStream("c:attachments est.jpg", FileMode.Create)
ms.WriteTo(fs)
clean up
ms.Close()
fs.Close()
Catch ex as Exception
End Try
End Function

View 1 Replies


Similar Messages:

WCF / ASMX :: How To Receive Sms Using URL

Jan 20, 2011

I want to use webservice to send & receive SMS... I know how to send SMS using URL...but dont know how to receive SMS...

View 2 Replies

WCF / ASMX :: Receive Client Certificate In Web Service?

Oct 15, 2010

I'm trying to receive a Client Certificate in a Web Service and having some problems.

Client

[Code]....

The certificate seems to be correclty loading and added to the client.

The client connects to the server with HTTPS.

Server:

[Code]....

cert.IsPresent is false and all certificate fields are empty.

IIS is configured to Accept Client Certificates.

Reproduced in two environments:

- Windows 7 x64, IIS 7, VS 2008, .NET 3.5
- XP x86, IIS 5, VS 2008, .NET 3.5

Always in the Web Service the Client Certificate is not proesent. I haven't been able to find any other configuration I should do.

View 1 Replies

WCF / ASMX :: Web Service That Will Receive Xml Request And Send Xml Response?

Aug 23, 2010

I am trying to create a web service that can do the following functionality:

Request XML

[Code]....

How can I create web service to do this.

View 1 Replies

How To Receive An Image Remotely

Mar 18, 2011

I have a requirement to design an ASPX page to receive a binary image from a remote call. Basically, our client wants to send a POST request from their server to this particular page. This POST request contains some parameters, as well as an JPG image. How should I design this ASPX page to receive all these information? I need to convert the JPG image to byte[] array and save it to DB, together with the rest of the parameter values.

View 1 Replies

IPhone To MS SQL Image Data Type Conversion

Mar 2, 2011

I am currently developing an iPhone app that will work as a security check-in system for events at a church. The main goal is to be able to search a pre existing MS SQL database for a participant, and then save them to a list on the iPhone/iPod Touch/iPad. Easy enough. One of the fields in the MS SQL database is of Image data type, and its function is to store the participant's image in binary form. I currently am not allowed to switch to varbinary(MAX). From the iPhone, I use:

UIImage *image = [UIImage imageNamed:@"nameOfImage.jpg"];
NSData *imageData = UIImageJPEGRepresentation(image,1.0);
NSString *imageString = (NSString *)[[[NSString alloc] init] base64StringFromData:(NSData *)imageData];

You may be wondering what the base64StringFromData is. It's a category discussed here, Any base64 library on iphone-sdk? In the category, it returns a string as NSASCIIStringEncoding. I then send that string to a Visual Basic web service using POST. Assume in the following that I have already set up and opened my SQL connection, and initlialized a SQL Data adapter and command. So the function looks similar to this:

Public Function sendCommand(ByVal image As String) As String
Dim commandString As String
commandString = "insert into phoneApp(image) values(@image)"
Dim encoding As New System.Text.UTF8Encoding
sqlDataAdapter.InsertCommand = (commandString, sqlConnection)
sqlDataAdapter.InsertCommand.Parameters.Add(@"image", SqlDbType.Image, image.length).Value = encoding.GetBytes(image)
sqlDataAdapter.ExecuteNonQuery()
End Function

Now, finally, here's what is happening. In another function, I call Response.BinaryWrite(SqlDataReader.Item("image")). In Internet Explorer, doing this would then make the image appear in the browser. Instead, it displays the string in base64 form. Copy and pasting that string in a base64 converter off the net, and it works. So the encoding on the iPhone did encode to base64 properly. Here's the question. Do I even need to be encoding to base64 to save into Image Data Type, or should I be focusing on learning how to encode the NSData into a different binary string?

View 1 Replies

Upload Image / Photo From Iphone To Webserver?

May 29, 2010

How do I upload Image/Photo from my Iphone to webserver. At web server I am using ASP.net c#.

On Iphone i have image displayed on UIImage Control and that image I am getting from database from BLOB datatype column.

how do I save that image bytes to application folder and then send image file to webserver.

View 1 Replies

Mobiles :: View Binary Image With Safari In IPad/IPhone?

Oct 8, 2010

Not sure if this issue should be posed here, but i try anyway:I have a webpage with a button, button click the webpage will write an image (in binary) to the response object, resulting the user can open or save an image.

Code:
response.ClearHeaders();
response.ClearContent();
response.AddHeader("Content-Disposition", "attachment; filename=abc.jpg");
response.AddHeader("Content-Length", binaryImageFile.Length.ToString());
response.BinaryWrite(binaryImageFile);
response.Flush();
response.Close();

Everything is fine in IE in Windows, but in Safari in IPad/IPhone, it is viewed in a seperate browser tab, with the binary image file written as a very long string.In Windows, i know you have to select a program to use to open a new file type for the first time, is this the case in IPad? that i need to select a program?

View 1 Replies

WCF / ASMX :: Read File System Image And Return Image?

Oct 5, 2010

I have a service which reads an image stored in the database. I want to be able to read an image stored on the file system and return that back to the requestor.

View 4 Replies

Web Forms :: User Can Receive The Mail Form My Site But I Cannot Receive Any User Details Mail

Jul 22, 2010

I have developed simple user registeration application form in that after press submit button i am sending mail to user for welcome template as well as i am also get on mail for user details like name email id, and ip address.my problem is the user can receive the mail form my site but i am receive the any user details mail it doesnot shows any exception what is the problem i donno please

View 4 Replies

WCF / ASMX :: Upload Image Of Employee?

Apr 27, 2010

I have Creating Employee Module through Wcf. i want To upload image of employee. But Image is not Uploaded how we can Solve This Problem.

View 2 Replies

WCF / ASMX :: Web Service Image Cache Clearing?

Jan 26, 2011

Users can edit images downloaded from my site and then upload them back using a WCF Web Service. The problem is when users go to view images, they often do not see the latest versions because of caching. I'd rather not turn off the cache because it substantially reduces bandwidth. Is there a way to have the Web Service perform some action upon an upload to notify the next web client call that the image has changed?

View 2 Replies

Redirect IPhone To Another URL With C#?

Mar 25, 2010

How do you check if the user browsing my website is using an iPhone, and then redirect the user to another URL?

View 2 Replies

How To Use Silverlight Application On Iphone

Jun 2, 2010

We have develop one application in silverlight..

We want more information about how we can use this silverlight application on IPHONE.

Basic requirement is silverlight application should work on IPHONE.

View 10 Replies

How To Call And Receive URL Data

Jan 28, 2011

In asp.net (or vb) I must to call a page that only autenticates a user, returning the user data if the logon succed. This way, I would like to implement the sequence:

A blank page (mine) request the autenticator page (3rd part) automatically on load; The user logs in the autenticator page; My page reads the autenticator page results and do the actions.

I'm a very begginer in asp.net, and I'm using vb.net in the environment for coding the page "onload" event. I'm trying to use the "redirect('url')" method to call the autenticator's page, but in this way, obviously, I can't receive the result. How can I implement this sequence?

View 1 Replies

Send / Receive SMS Using GSM Modem?

Jan 27, 2011

I wanted to send and receive SMS from my application, as of the need i bought a Wavecom GSM Modem. I also downloaded ActiveXperts Toolkit for communicating with GSM Modem, i can be able to send SMS through the GSM Modem. have problem with receiving SMS.

View 3 Replies

Webservice Authentication From An IPhone App?

Aug 5, 2010

I have my iPhone app that calls an ASP.NET Webservice to download "data". Most of this needs to be protected, but currently the webservice that's deployed can be called by anyone who can figure out its URL, thus resulting in a complete loss of security.

The simplest form that I can think of would be for the phone to make a call over HTTPS including the username, password that the user logs in with, with every web service all. And each method will check to see if these credentials are correct before sending data to the user.

But this will result in an additional database call for every request to check if the user is authenticated, which is not very efficient.

View 2 Replies

How To Receive Sms From Nokia N70 Or Upper To Pc With C#

Jul 22, 2010

how to receive sms from nokia n70 or upper to pc with c#?i have on ListView and to cloum 1.cloum is sms number and 2.cloum is text messege.

View 1 Replies

.net - C# Check If It Is Ipad Or Iphone?

Mar 1, 2011

I'm using c# asp.net web how can I check if the user using ipad or iphone? How can I check the platform?

for example....the user enter the website from ipad and the page display hello ipad user

View 4 Replies

MVC :: Building Website For IPhone?

Jul 25, 2010

I would like to ask for advice how to build mvc web application for iPhone.

If you have any code sample, Good example how to start and get deep into it.

View 4 Replies

Send And Receive File?

May 18, 2010

I'm completely blanking here. I've got 2 servers that cannot talk to each other via normal network traffic (like just copying a file). I can't get FTP setup on either server due to artificial company security constraints.Server1 basically just has an exe on it that I have written, and it needs to send a file to Server2.Server2 has a full blown asp.net website on it so I'm writing a .ashx page to handle receiving the file.So...Server1 needs to make a call to server2 and send a file to it over http. Server2 needs to accept the file and save it to disk.Where should I start? I know I can make server1 create a WebRequest object, and set the methodto POST, and then stream the content.But on server2, what am I supposed to write? A generic handler? Will my file that I send be part of the context.Request object? How do I get it out?

View 2 Replies

Mobiles :: IPhone 3 Development?

Jun 29, 2010

about iPhone3 development in dotnet, How can I start? what are the requirement for iPhone3 development?Also if posible provide me ebook.

View 6 Replies

IPhone Communication With Windows C# App?

Oct 28, 2010

I am create an iPhone app that needs to talk to a Windows C# app. The app will run as either a Service or Form Application.

What would be the best way to accomplish this? Ideally exposing a service-type architecture would be best as I don't need a stateful connection (stateless is fine in this case).

Can a WCF service hosted by my app using a form of TCP binding be consumed by my iPhone? Or can an app host using httpBinding without the aid of IIS or some other web server?

View 3 Replies

Iphone - Securing A WCF Web Service?

Mar 25, 2010

I have a asp.net website and I am accessing that web service from my iPhone app to get data.
The WCF web service produces data as JSON.I want to put some kind of authentication on the WCF. What you you guys recommend?

View 2 Replies

C# - Set Up A Website To Receive XML Via HTTP?

Dec 27, 2010

Web developer newbie question (I am otherwise fluent in C#!):

I need to set up a web site (ASP.NET/C#) that can receive XML posts via HTTP. I haven't the first clue of where to start. Create web site? Web page? Web service? WCF? Can you self-host it, or must it be on IIS? How/where do you catch the post event?

View 4 Replies







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