473,548 Members | 2,716 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

is client side c# viable in Internet Explorer?

I'm trying to find out if its possible to call webservices from a browser
using c# or maybe some other script? I know the client would have to have
..net installed which is fine but I can't find any docs on whether its really
viable?

I want the asp.net pages to have an appearance of no visible postback.

thanks
Nov 16 '05 #1
4 1447
Provided the client has XMLHttp, you can use it to create a SOAP call to a
web service. Outside of that, you can set up JavaScript to make an HTTP call.
With IE, you have some other "remote data" options.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** ************
Think Outside the Box!
*************** ************

"ilPostino" wrote:
I'm trying to find out if its possible to call webservices from a browser
using c# or maybe some other script? I know the client would have to have
..net installed which is fine but I can't find any docs on whether its really
viable?

I want the asp.net pages to have an appearance of no visible postback.

thanks

Nov 16 '05 #2
You could also have a Windows control embedded in the IE window which
would make the calls to the web service...
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Cowboy (Gregory A. Beamer) - MVP" <No************ @comcast.netNoS pamM> wrote
in message news:D4******** *************** ***********@mic rosoft.com...
Provided the client has XMLHttp, you can use it to create a SOAP call to a
web service. Outside of that, you can set up JavaScript to make an HTTP
call.
With IE, you have some other "remote data" options.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** ************
Think Outside the Box!
*************** ************

"ilPostino" wrote:
I'm trying to find out if its possible to call webservices from a browser
using c# or maybe some other script? I know the client would have to have
..net installed which is fine but I can't find any docs on whether its
really
viable?

I want the asp.net pages to have an appearance of no visible postback.

thanks

Nov 16 '05 #3
hmm I have embedded a .net control into a browser before. Would the user
have to make any security changes to their browser
for it to work? if anyone knows :)

thanks
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote in
message news:u4******** ******@TK2MSFTN GP09.phx.gbl...
You could also have a Windows control embedded in the IE window which
would make the calls to the web service...
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Cowboy (Gregory A. Beamer) - MVP" <No************ @comcast.netNoS pamM>
wrote in message
news:D4******** *************** ***********@mic rosoft.com...
Provided the client has XMLHttp, you can use it to create a SOAP call to
a
web service. Outside of that, you can set up JavaScript to make an HTTP
call.
With IE, you have some other "remote data" options.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** ************
Think Outside the Box!
*************** ************

"ilPostino" wrote:
I'm trying to find out if its possible to call webservices from a
browser
using c# or maybe some other script? I know the client would have to
have
..net installed which is fine but I can't find any docs on whether its
really
viable?

I want the asp.net pages to have an appearance of no visible postback.

thanks


Nov 16 '05 #4
ilPostino,

Yes, just like any other control you embed, you will have to give it the
appropriate security rights. Also, if you want to connect to web services
other than one hosted where the control is loaded from, you will have to
grant extra rights for that as well.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"ilPostino" <ne**@ip80.co m> wrote in message
news:%2******** *******@TK2MSFT NGP15.phx.gbl.. .
hmm I have embedded a .net control into a browser before. Would the user
have to make any security changes to their browser
for it to work? if anyone knows :)

thanks
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote
in message news:u4******** ******@TK2MSFTN GP09.phx.gbl...
You could also have a Windows control embedded in the IE window which
would make the calls to the web service...
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Cowboy (Gregory A. Beamer) - MVP" <No************ @comcast.netNoS pamM>
wrote in message
news:D4******** *************** ***********@mic rosoft.com...
Provided the client has XMLHttp, you can use it to create a SOAP call to
a
web service. Outside of that, you can set up JavaScript to make an HTTP
call.
With IE, you have some other "remote data" options.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** ************
Think Outside the Box!
*************** ************

"ilPostino" wrote:

I'm trying to find out if its possible to call webservices from a
browser
using c# or maybe some other script? I know the client would have to
have
..net installed which is fine but I can't find any docs on whether its
really
viable?

I want the asp.net pages to have an appearance of no visible postback.

thanks



Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1379
by: Stephen | last post by:
Hey Everyone, I have a problem with a web application due to the use of both client-side and server side script on the on-click event of a button. The client side script runs first as expected however my problem is that this code runs and brings up a Microsoft Internet Explorer Window telling the user they are going to be charged for the...
1
2305
by: Stephen | last post by:
Hey Everyone, I have a problem with a web application due to the use of both client-side and server side script on the on-click event of a button. The client side script runs first as expected however my problem is that this code runs and brings up a Microsoft Internet Explorer Window telling the user they are going to be charged for the...
1
2304
by: Stephen | last post by:
Hey All, I have a problem with a web application due to the use of both client-side and server side script on the on-click event of a button. The client side script runs first as expected however my problem is that this code runs and brings up a Microsoft Internet Explorer Window telling the user they are going to be charged for the search...
2
2038
by: cedced | last post by:
Hello, is it possible to access client files in VB.NET? What? I have doing that but it isn't good (VB.NET take file on pc server and not on pc client): (thanks) Dim fichier As StreamReader Dim name As String
6
2262
by: Marc | last post by:
How could I directly trigger a very simple on localhost and a known port listening server from my internet browser client? Local host means the little server would be running on the client machine, where my browser resides. Browser would be IE, O.S. Windows 2000 or XP, and it's for an intranet application. The goal of the little server on the...
1
1765
by: ramendra | last post by:
I am using javascript as the client scripting language. And, was able to successfully debug the client-side code a while ago, but recently something has changed and i am no more able to debug the client side code. I have also unchecked the "Disable client - side code" in the internet options dialog on the internet explorer. Please any kind...
3
1749
by: Simon Brooke | last post by:
I've been doing XSL transforms, converting XML to HTML, server side since 2000. In those days, clients which could do the transformation client side didn't exist, so whether to transform client-side or server-side wasn't an issue. Recently I've been overhauling the code in order to pass transform to the client wherever possible, and I've...
2
15705
by: xander.zone.3x | last post by:
How can we download data in tables in a html page into a csv file using client side Javascript. I should click a button and a table's data should be downloaded into a csv in local drive. The os used is m$ windows..
22
2867
by: Dan Rumney | last post by:
Hi all, I've been writing Javascript for quite a while now and have, of late, been writing quite a lot of AJAX and AJAX-related code. In the main, my dynamically generated pages are created using Perl on the backend, with Javascript providing limited frontend functionality. As an example, an expanding tree would be fully populated on the...
0
7518
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7444
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7711
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7467
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7805
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6039
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5367
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5085
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
1054
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.