473,809 Members | 2,826 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Webservices/multithreading/serialization combo question

Here's what I'm kicking around... Really here's what's kicking me around...
Trying to design a webservices system that will allow a client to submit
forms in background threads when client connects to server ( like with
Outlook ). So I think webservices is great for this. I can't quite sort out
the offline part of things though. I can instantiate and fill the xsd.exe
classes I created from a schema. I can't quite sort out how to save these
things for a thread to come along and submit later. Any thoughts?
Nov 21 '05 #1
3 1592
You can do that by queuing the requests, but have you seen the Offline
Application Block from PAG? It's here:

http://msdn.microsoft.com/library/de...ml/offline.asp
--
Mickey Williams
Author, "Visual C# .NET Core Ref", MS Press
www.neudesic.com
www.servergeek.com
"James" <j_*******@insu rance.state.al. us> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Here's what I'm kicking around... Really here's what's kicking me
around...
Trying to design a webservices system that will allow a client to submit
forms in background threads when client connects to server ( like with
Outlook ). So I think webservices is great for this. I can't quite sort
out
the offline part of things though. I can instantiate and fill the xsd.exe
classes I created from a schema. I can't quite sort out how to save these
things for a thread to come along and submit later. Any thoughts?

Nov 21 '05 #2
If sounds like your application is leaning towards a Smart Client. Check out
Microsoft's Smart Client homepage. There are some very good sample
applications on the site which should help guide you.

http://msdn.microsoft.com/smartclien...s/default.aspx

--
Eric Cherng
MCP, MCDBA, MCSD
http://echerng.com
"James" <j_*******@insu rance.state.al. us> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Here's what I'm kicking around... Really here's what's kicking me
around...
Trying to design a webservices system that will allow a client to submit
forms in background threads when client connects to server ( like with
Outlook ). So I think webservices is great for this. I can't quite sort
out
the offline part of things though. I can instantiate and fill the xsd.exe
classes I created from a schema. I can't quite sort out how to save these
things for a thread to come along and submit later. Any thoughts?

Nov 21 '05 #3
Thanks man. Hugely helpful link. Kudos.
"Mickey Williams [C# MVP]" <my first name at servergeek dot com> wrote in
message news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
You can do that by queuing the requests, but have you seen the Offline
Application Block from PAG? It's here:

http://msdn.microsoft.com/library/de...ml/offline.asp

--
Mickey Williams
Author, "Visual C# .NET Core Ref", MS Press
www.neudesic.com
www.servergeek.com
"James" <j_*******@insu rance.state.al. us> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Here's what I'm kicking around... Really here's what's kicking me
around...
Trying to design a webservices system that will allow a client to submit
forms in background threads when client connects to server ( like with
Outlook ). So I think webservices is great for this. I can't quite sort
out
the offline part of things though. I can instantiate and fill the xsd.exe classes I created from a schema. I can't quite sort out how to save these things for a thread to come along and submit later. Any thoughts?


Nov 21 '05 #4

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

Similar topics

1
1511
by: James | last post by:
Here's what I'm kicking around... Really here's what's kicking me around... Trying to design a webservices system that will allow a client to submit forms in background threads when client connects to server ( like with Outlook ). So I think webservices is great for this. I can't quite sort out the offline part of things though. I can instantiate and fill the xsd.exe classes I created from a schema. I can't quite sort out how to save these...
11
4275
by: Mark Yudkin | last post by:
The documentation is unclear (at least to me) on the permissibility of accessing DB2 (8.1.5) concurrently on and from Windows 2000 / XP / 2003, with separate transactions scope, from separate threads of a multithreaded program using embedded SQL. Since the threads do not need to share transaction scopes, the sqleAttachToCtx family of APIs do not seem to be necessary. <quote> In the default implementation of threaded applications against...
3
1163
by: Paul M | last post by:
Hi there, my web application has a bunch of classes with functions that i'd like some of them to be made into webservices. However, they mostly return arraylists, which have objects stored inside them and when i try execute, it spits back exception errors. any advice?
0
890
by: kejeiri | last post by:
I wish just to draw the attention to the fact, that my MyClass1...and MyClassN are declared "Serializable"... But, I never get my classes methods, I get just attributes (Or methods Properties) !!!!... Must I declare my classes methods as webmethod's too ? Best Regards As I know, in the WebServices context using VB.net we can serialize classes and get all attributes (Or properties methods) of any class just including it at a head of the...
6
1765
by: George M. Garner Jr. | last post by:
VC8.0 crashes while compiling boost-1.33.1 serialization library (or any other library that includes the serialization headers) if code analysis (/analyze) is enabled. This problem did not occur with prior beta releases of boost-1.33.1 or with the VC8.0 beta. You may want to consider whether the crash of a dependent tool should be allowed to cause the entire VC8 IDE to hang or whether this might be a design defect. Given the recent price...
1
1926
by: Steve | last post by:
I generate C# webservices proxy code from WSDL file, it turns out the classes generated have public member variables and no getter/setter methods as follows, and I am able to get data when running the client. public class MyFeeResponse {
3
4494
by: Frederik Wehlin | last post by:
Hi, I'm currently developing a windows form application, which should be able to communicate with a couple of WebServices. The Webservices are not created by me or my company and also not in .net but WebMethods (Java I suppose). The first Issue that I have is when instantiating one of webservices I get a "Method myMethod can not be reflected" error message and when drilling down the exception hierarchy I find: InnerException = {"'date' is...
15
2416
by: Jacques | last post by:
Hi I am an dotNet newby, so pardon my ignorance. I am looking for a method of saving/copying a managed class to a stream/file WITHOUT saving the object's state, eg. if I have a ref class with two int32's as its data members, the binary file of that class must have a size of 8 bytes (i.e. only contains class data members, not methods etc.). Is serialization the answer to the above problem? If I understand correctly, the reason that...
0
2473
by: =?Utf-8?B?TWljaGFlbA==?= | last post by:
Hello, i have a problem with jagged arrays and a webservice. I try to call a webservice with an array of a class that contains jagged arrays. Here is an example: class MyClass{ string myJaggedArray; string anotherString; }
0
9721
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9600
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10376
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10375
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
10114
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3860
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3011
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.