hello all
i am having a little query i want to know that how to parse the xml string in to JASON string i want to parse the xml string in to JASON string a little code would be boost
thanks in advance
Hello.
I'm developing an iPhone application, and I very new on iPhone development.
I've created some custom classes with instance variables (NSArray, NSString, etc.). All classes inherits from NSObject.
Should I create a dealloc method to release all instance variables?
Thank you.
Hello,
If you go to wordpress admin-settings-privacy, there are two options asking you whether you want to allow your blog to be searched though by seach engines and this option:
I would like to block search engines,
but allow normal visitors
How does wordpress actually block search bots/crawlers from searching through this site when the site is live?
Hello!
I found a source code on MSDN about how to enable/disable privileges in C++
According to the source code, the linker must include cmcfg32.lib, but it can't be found...
I tried to compile without including that lib, it compiles without any error, but when I launch my program, it crashes with a fatal error.
So please, if you know which SDK contains cmcfg32.lib, let me know ;)
Thanks!
Hello
I've been trying to create an Instant Messaging application in my ASP.NET site using C#. I came to know about XMPP which is a protocol used for instant messaging by GChat. I was wondering how to implement it in my ASP.NET application. Any insights provided on this are very much appreciated.
Thank you.
NLV
Hello everyone,
Besides the two well-known Open Source tools RapidMiner and Weka, are there any other good tools (either Open Source or Commercial), which you can recommend for data mining?
Thanks in advance!
Hello,
I'm trying to make a board like that you can import as many pictures as you like to that board.
How can I do that? handle multiple images?
The other question is how to recognize a drag movement and move the image to the Cursor position?
Thanks!!
(Mac SDK)
Hello,
I'm developing a program on Microsoft Surface.
And I didn't succeed to make disable completely the shadow.
Here is my problem :
http://i61.servimg.com/u/f61/11/31/25/01/sans_t10.png
Heres is the XAML code :
<s:ScatterViewItem Height="130" x:Name="jetons1" Width="180" CanScale="False"
BorderThickness="0" ShowsActivationEffects="False" StaysActive="True"
SnapsToDevicePixels="True" Foreground="{x:Null}" Background="{x:Null}"
BorderBrush="{x:Null}" />
Hello,
I am about to use VTD-XML (found at http://vtd-xml.sourceforge.net/) but I am interested in getting real-case usage feedback, by any one that has used the library and has any comments.
At the URL (http://vtd-xml.sourceforge.net/) there are benchmarks but if someone has used VTD-XML and has comments FOR it I would like to hear them. Speed is a critical factor in the application and comments after real-case usage, by developers, is what i am looking for.
Regards,
Hello, I have a table. In this table have select element. How can I find in which table row is select element, from within the select's event handler:
$('#selectElemID').live('change', function(){...});
Thanks
Hello,
I am planning to automate some of the functionality of the GUI developed in Microsoft Visual C#.
I am new to Automation with GUI. Would be glad if you share your experience regarding GUI Automation and some of the tools available for the automation.
I plan to develop some programms / scripts in order to realise some of the functionality of the GUI
Hello! I'm trying to implement tsa server on python using twisted. Currently I'm using openssl binary to generate response, but this seems ugly to me, that's why I'm trying to figure out how to make response token with m2crypto.
Thanks in advance for help!
Maris.
In Java you can use a for() loop to go through objects in an array like so:
String[] myStringArray = {"Hello","World"};
for(String s : myStringArray)
{
//Do something
}
can you do the same in JavaScript?
Hello All,
I want to Send my machine an hardware event so that my caps-lock key becomes enable. When I send enable interrupt, light on Caps-lock key should be on and when I send enable interrupt, light on Caps-lock key should be off.
I am using Qt, Mac, C++, Carbon.
Any help is appreciated.
Thanks,
Rahul
Hello guys, I have a big project compiled into libProject.so-file (shared library), I made some modules (shared libraries too) which use code from all libProject. Can I set libProject as dependence for moduleProject.so file? (gcc)
Hello!
I have a list of dates.
I would like to be able to populate a windows forms monthcalendar control to show these dates as selectable(clickable) dates, whilst any date that is not in the list is disabled on the calendar control.
Is it possible to do this?
regards,
Hello, I would like to use PostgreSQL locally on my computer and have installed
it. I use Windows 7.
I am not able to start the PostgreSQL-Server. When using the "Start Server"-program,
I get the following output in the dos command window:
Start DoCmd(net start postgresql-8.4)...
System error 2 (my translation)
System cannot find the specified file. (my translation)
Please ask, if I should give additional infos.
Hello,
In RFCs there are references to quoted-string now I understand that this means a string contained in quotes.
However, I'm unable to find the definition of what exactly is a valid quoted string.
/"[^"]"/ = a correctly quoted string.
/'[^']'/ = is this also a correctly quoted string?
In other words, are both ' and " allowed as quotes when an RFC specifies quoted-string?
Bonus points: In what document is this specified?
Hello,
I know AdMob is not for Java ME.
Do you know any other advertising API or services that can be used in Java ME application?
It might be really good if I can earn some money with my free Java ME applications.
Hello!
I'm developing a WinForm application for Windows Mobile 5.0 and above, using C#, .NET Compact Framework 2.0 SP2.
This application uses Web Services and I've found the Disconnected Service Agent from the patterns and practices group at Microsoft, because I want to deal with disconnected eviroments.
Is there any other software to deal with web services connections on disconnected enviroments?
Thank you!
Hello,
im messing with the encodings.
For one hand i have a url that is responding me in UTF-8 (im pretty sure thanks to firebug plugin).
Im opening the url reading the content in UTF-8 using the following code:
StreamReader reader = new StreamReader(response.GetResponseStream(),System.Text.Encoding.UTF8);
For other hand i have a transformation xslt sheet with the following code:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
<br/>
hello
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
This xslt sheet is saved in UTF-8 format too.
I use the following code to mix the xml with the xslt:
StringWriter writer = new StringWriter();
XslCompiledTransform transformer = new XslCompiledTransform();
transformer.Load(HttpContext.Current.Server.MapPath("xslt\\xsltsheet.xslt");
XmlWriterSettings xmlsettings = new XmlWriterSettings();
xmlsettings.Encoding = System.Text.Encoding.UTF8;
transformer.Transform(xmlreader, null, writer);
return writer;
Then after all im render in the webbrowser the content of this writer and im getting the following error:
The XML page cannot be displayed
Cannot view XML input using style
sheet. Please correct the error and
then click the Refresh button, or try
again later.
Switch from current encoding to
specified encoding not supported.
Error processing resource
'http://localhost:2541/Results....
<?xml version="1.0" encoding="utf-16"?>
Im wondering where is finding the UTF-16 encoding take in count that:
All my files are saved as UTF-8
The response from the server is in UTF-8
The way of read the xslt sheet is configured as UTF-8.
Any help would be appreciated.
Thanks in advance.
Best Regards.
Jose.
Hello guys, I've an application where, for testing, I need to replace the time.time() call with a specific timestamp, I've done that in the past using ruby
(code available here: http://github.com/zemariamm/Back-to-Future/blob/master/back_to_future.rb )
However I do not know how to do this using Python.
Any hints ?
Cheers,
Ze Maria
Hello,
I'm trying to marshall unsigned char** (which is in a C++ interface) in order to call the method from C#.
How can this be done? Is there a list where are C++ data types and C# data types?
Thanks!
Hello,
is there anyone in this forum who have experience with openss7 before ?. Or maybe stil developing with openss7 ?.
I need to discuss something, since it's difficult to find the solution...
Hello. Can anyone tell me how to hook/overlay a DirectX game in C#?
I've tried getting a fullscreen C# window to overlap a game, however it wont.
After researching a little, I found out that I need to hook the game and then display the C# window.
Can anyone explain how I would do this?
Would I be able to display a C# form over a DirectX game?