473,387 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

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 1440
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.com

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> wrote
in message news:D4**********************************@microsof t.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.com> wrote in
message news:u4**************@TK2MSFTNGP09.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.com

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM>
wrote in message
news:D4**********************************@microsof t.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.com

"ilPostino" <ne**@ip80.com> wrote in message
news:%2***************@TK2MSFTNGP15.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.com> wrote
in message news:u4**************@TK2MSFTNGP09.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.com

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM>
wrote in message
news:D4**********************************@microsof t.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
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...
1
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...
1
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...
2
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 ...
6
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,...
1
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...
3
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...
2
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...
22
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...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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...
0
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,...

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.