Advanced Forum Search Results
-
if you have static obects which you want to save their positions, you can save the locations inside a collection and then serialize that...
otherwise, if you have dynamic shapes and their properties can be changed by your users(like positions), the best way is to getting and saving the current running XAML which you'll need a ...
-
Hi guys!
I've created a simple Silverlight's XamlWriter, please refer to my blog! ;)
-
Hi,
afaik, in the code, you can not explicitly create new inlines, just you can reference to existing collections only.
note : you can create your text block via xamlreader with inlines, but not changing them.
-
Hi, Sorry for deferment on reply, I just was too busy...
you've two options :
create your web service inside your asp.net web site project and then add the silverlight link
otherwise, you should add the web reference of the web service to your asp.net web site which you've added the silverlight link to it.
-
the only thing that you need to run the sl app with ability to make web service calls is both sl app and web service should run in the same domain.
in development, assume that you've a silverlight app (which uses web services) that is consumed by an asp.net application, so you can create your web services in your ...
-
in complement of the above post :
remember that after changing the namespace, wsdl, disco and map files needs to be regenerated.
-
[quote user="RezaMohamed"] [WebService(Namespace = "WebService")] ...i added the WebService part...but what should be there?
[/quote]
XML Web service XML namespaces are URIs, but they need not point to an actual resource on the Web.
change it to http://tempuri.org, it's default namespace for asp.net web ...
-
seems strange!, I donno why you get cross domain call error while you've just added the silverlight app to the web service app and you're running it from web app.
could you send me a simple app which produces this exception.
choosing between script/sl debugging is up to you! while you're creating a SL 1.1 app with no ...
-
hi, are you sure you have added the silverlight link (steps 11-13)?
[quote user="RezaMohamed"]
I read somewhere that I cannot debug an SL app using webservices in the local file system...is this true? Here is what im doing in the SL app:[/quote]
you should choose between script debugging and silverlight debugging when you ...
-
[quote user="RezaMohamed"]
one more question, the silverlight app is going to be inside my webpage, now the user does what ever he needs to do and i store that info in a class...say i serialize the class (you mentioned no limitation), instead of a webservice...can i use json messaging to send that information to the server where i can ...