I m consuming java based web service with c#.net app.
I m sending soap message in xml format.
But Im receving this error message:
ns1:Client.NoSOAPAction no SOAPAction header
I have a jar library that i created.
It can be integrated in any android app and it works like this:
String token="<SOME_TOKEN>";
DeviceIdentifier edDevice = new DeviceIdentifier(
this.getApplicationContext(),token);
edDevice.update();
DeviceIdentifier class os a class in the jar.
now i want to make that jar work with Unity3d,
i searched the web and couldn't find anything
what is the correct way to integrate it?
Just wondering if there are any good tutorials on PHP/MySQL on the web that's free. I looked at youtube and the tutorials they have there are a bit too easy.
Hello all,
I am trying to use path info in my asp.net web application. I am using iis 6 on the production machine and iis 7.5 on my home computer.
Does anyone know how this can be done?
Thank you !
Hi folks,
I'm using popen in order to send a few commands within a Django app.
Problem is that I'm getting [Error 5] Access Denied, apparently I have no access to cmd.exe, which popen seems to use.
WindowsError at /test/cmd/
[Error 5] Access is denied: 'C:\WINDOWS\system32\cmd.exe /c dir'
I reckon this is because the app sits behind a web server which has limited privileges.
Is there anything we can do about it? Help would be awesome!
I want to develop a JQTouch web app that will display a list of the titles from an rss feed and then display the title and description when the title is tapped. Can someone please suggest a tutorial or resource that could help me?
I tend to believe that developing mobile applications in an enterprise environment is best suited by developing intranet web applications. That said I have been asked to think about whether there are specific enterprise applications that could only be accomplished or would be more successful as native applications. I am curious as to what the Stack Overflow community thinks.
Note: As an organization we primarily use BlackBerry devices but are other platform curious.
I'm using the following command in my web application to find all files in the current directory that contain the string foo (leaving out svn directories).
find . -not -ipath '.*svn*' -exec grep -H -E -o "foo" {} \; > grep_results.txt
How do I find out the files that doesn't contain the word foo?
I want to be able to track the amount of data that is being transfered from my web site to each user that accesses the site. I can do this for file downloads and such but what about the pure html content itself.
How can I track the output size of a page (or the data that's trasnfered via an AJAX call) to the client and log it against a particular users session?
Also how would this differ when GZip is used in IIS 6.0?
I need to redirect web requests of the form /{language}-{country}/{file} to:
/{language}-{country}/{file} if it exists, otherwise
/{language}/{file} if it exists, otherwise
/en-US/{file}
The existing .htaccess fulfils requirements 1 and 3. What changes do I need to fulfil requirement 2?
.htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteCond $0 !i18n/en-US [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(i18n)/([^/]+)/(.*)$ $1/en-US/$3 [NC,L]
Hi,
Any one help to to get the extact value from the JavaScript date time utc format. I am using a C# web method which is returning a date and I have to set that date with Timezone.
Thanks
We have discussed keyboards. But take a look at the small piece of plastic to the right (or left :) ) of your beloved keyboard! This humble creature helps you to draw nice forms, and click all around the web. A real programmers mouse must be precise and comfortable, so which mouse would you make a companion to your keyboard?
Currently I'm in love with this fat member of mice family:
Natural wireless laser mouse 6000
I use Spring Security with Spring Framework 3 and when I tyr to login from homepage I get following error:
2010-04-26 12:16:39,525 [tomcat-http--2] WARN org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/AppName/app/j_spring_security_check] in DispatcherServlet with name 'Spring MVC Dispatcher Servlet'
Spring Security is initialized as loggings tell and there are no errors. So what could be reason for this error? I have understood that j_spring_security_check is default url for Spring Security login chekeing servlet.
Hi sirs,
I am writing one web chat program using AJAX (a little bit). It is working when both users open a chat page, but I want to open a window when one user send data to others.
i have web form running in asp.net & c#.net,
The form has a devexpress aspxtextbox and the another ordinary textbox with a button.
The scenario is enter a text longer than the width of the text box in the ordinary text box.
on clicking the button it enters the text in to devexpress aspxtextbox ,increasing the width of the devexpress aspx text box inspite of width given as 50 px.
how to maintain the fixed width for devexpress aspx text box
I am not developer but I found this board while researching windev. I am the VP of a start up company that is developing a web-based application for a retail point of sale system. If anyone out there is familiar enough with this product and especially it's limitations, I would appreciate any heads up info on any of the final product(s) that have been developed that I might be able to compare/contrast to our enterprise.
Hello.
I have a task to write a web service with use of Hessian and Spring.
Unfortunately there is not enough information so i can't make it work myself...
Please can anyone write a simple Hello World for me?
My version always shows 404 when accesing with browser... I'm new to java so if smb knows how to help tell me what files of my project to share.
Thanks a lot!
Using iis7, windows 7, asp.net 3.5. I have in my hosts file
127.0.0.1 mysite
::1 mysite
I forgot why I added the ::1, but I think it was important. Anyone know what the second line is for? Thanks in advance.
Edit
One more question. What happens if I leave it out? The web site I'm working on doesn't address via IPv6, at least, not that I know of.
Thus far used sql server stored procedures for all my web applications... Now thought of moving to an ORM... I would like to ask SO users about LINQ to SQL
Is Linq to sql worth a try as a beginner to an ORM?
or should i look for someothers... Any suggestion...
These days I am interested in learning F#, and would like to use it for GUI applications. Unfortunately I have no previous background in .Net or C#. Are there any good resources (web sites, books) for learning this without going through C# first?
Many thanks in advance.
I have a requirement, in an MVC2 web application, to validate that the user is at least 13 years old. Is there a date/datetime validation attribute that will enable me to do this?
In my application i use external resources on web that require proxy authentication.
All my requests are http type by using WebRequest / DataSet.ReadXml(url) / ecc.....
Every time i need to give credentials...
So is possible to assign credential only one time in my application?
Hi
I've got a link on the web page that causes new browser window (tab) to be opened when it's clicked, like this:
<a id="lnkNewWindow" target="_blank" href="http://google.com">Open window</a>
I want to be able to track the window that will be created after this link is clicked. I'd like to perform some actions after the new window is closed. Is there any way to do this (preferably using jQuery)?
Hi
I was wondering what the best and easiest way was to ensure that the value a user enters into an input box is numeric in a web page? either notify them they are not allowed to when they edit it or not allow them to enter in non numeric values to begin with.
any ideas?
thanks