Can anyone recommend libraries for generating SAML assertions for a federated sign-on implementation in .NET. It would be ideal if it was integrated with the ASP.NET membership API.
Hi there.
I need to pass the user name and password in the URL for a REST web services call.
I know that if I pass it this way in Firefox, it works:
https://{UserName}:{Password}@api.opsourcecloud.net/oec/0.9/myaccount
Is there a proper way to pass user name and password aside from the above example?
It's a Spring Security Context?
I am creating EML file with "System.Net.Mail".After that i am migrating it to Google Mail using google API ver 2.
For small attachments it is working fine.
But in case of large attachment upto (1 MB or 2 MB) it throwing exception "Request aborted".
How can migrate mail with large file attachment?
I got solution of sending large size attachment using System.Net.Mail.
But how to implement it in case of Google apps?
Thanx
why is the code below showing 'got the result null' alertbox ? while the request seems to be sending a proper json.
$(function(){
$.getJSON('http://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitterusername', function(data) {
alert('got the result '+data);
});
});
It's always seemed a little at odds with the principles of Java that the Java Servlet Spec (2.5 version here) includes a set of magic attributes containing info about included resources, namely:
javax.servlet.include.request_uri
javax.servlet.include.context_path
javax.servlet.include.servlet_path
javax.servlet.include.path_info
javax.servlet.include.query_string
It's not even specifically pointed out in the API documentation, only in the spec where it is a must for correct implementation.
This approach feels very wrong, an exposed implementation detail that clients will use and depend on. Why is this information exposed in this way?
I know about DIA api, dbghelp. But can i use them to extract type definition location info such as file, begin_line, begin_column, end_line, end_column from my assembly and pdb generated?
If the answer is yes, can someone point me to the simple example out there?
Hi,
In my application,need to display the upload and download speed and duration of the connected network(wifi).I searched in api found only one method wifiinfo.getLinkSpeed() and a field LINK_SPEED_UNITS.Please give me guidance or sample code.
Regards,
Rajendar
I'm currently in a need of getting session ID thus I need to get the HttpSession but I don't have any servlets in my EJB module. So perhaps some DI annotation like in webservices api?
I am writing a web service that will receive uploads from mobile clients. The data will have 4 or more text fields followed by a large binary field. What is the best standard technology to use for this, as I may make the API public in the future and want to use something that everyone likes. XML? SOAP? Just HTTP and a completely customized payload?
Thanks.
Is there an API to add to the a windows command prompt history? I writing a console program and it would be handy to pop some commands into the history buffer under certain (limited) conditions.
Hello friends,
I am a new user of google maps API in android OS. I have made a small application in which i am using google maps. I want to add a functionality that when i double click (multi touch) on a map the map should zoom in. IS there anybody who has an idea how to do this or if it is possible please provid a code example.
Thanks in advance.
BR,
SilentCoders
Hi,
I have certain sound files and will like to develop an app which allows to set those sound files as ringtones.
Can someone let me know the way of implementing it? What are the API's that I need to use for this purpose?
Hope to get the reply soon.
Regards
Sunil
Hi,
In my Carbon application upon display of Preference Panes, I have a link which when clicked opens up Apple Help Viewer.
The problem I am facing is the Help Viewer Window is behind my preference pane window.
I would like to keep the Help Viewer window on top of the Preference Pane.
Is there any way to get the WindowRef of the Help Viewer app so that I can use SendBehind API to send the help viewer behind the current window.
Thanks a lot
Regards,
Marc
I'm currently registering my domains through GoDaddy. Does the registrar matter? Any recommendations for registrars you're especially happy with?
(See this very similar question, that requires API support. I need no such support, hence this question is more generic).
My application stores lots of its users friends' phone numbers. I'd like to allow users to associate names with these phone numbers, but I don't want to make users manually type in names (obviously).
I'm curious what the best overall approach is here, as well as the best way to implement it
Overall approach-wise, I imagine using Gmail / Yahoo / Windows Live contacts is best (the Facebook API doesn't let you access phone numbers), though the gems I've found for interacting with these contacts APIs (this and this) only give you access to the names and email addresses of each contact.
I have a Magento installation with around 60 attribute sets. I need to add a new attribute to each of the attribute sets. There doesn't seem to anyway of doing this in the admin control panel.
I am sure I can work it out by manually entering the correct fields into the database, but is there a way of doing this through the API or through the Import / Export profiles?
Any suggestions would be gladly received.
Is it possible to send SMS from a Java application. I don't want to use J2ME in this case. I want to know with respect to J2SE and J2EE only. Is there any API available to achieve this? If it is available whether we have to use any service provider or not for this? Can you tell me how to achieve that?
Hi,
I'm working on a 3D graphical application in Java using the Java 3D API. I noticed that every time I was dealing with transparency, all I got in return were some clipping problems. Some parts of the scene weren't displayed properly. It might seem obvious that this would happen in a certain way but I'm looking for a logical explanation, why is this happening?
Thank you
Hello all,
I want to create an music track visualization for an music player application which should look like as below:
you can see in the above image that, there is an equalizer kind of view and it should vary as the music track is played.
I need to know the right way to achieve the above visualization, which api to use?, etc.,
Any suggestion will be greatly helpful to me.
Thanks,
Swathi
I have the following question:
I start my activity and i call bindService in order to start a service which in background downloads data from an API.
When it finish, it calls stopSelf().
But if i want to call again bindService in my Activity in order to download other data, nothing happens.
Any idea?
So I have a little (musical) keyboard that has USB midi interface. I know you can program to this (many programs accept input from the midi device via USB interface) but where do you begin to program a midi device?
Ideally I'm looking for a platform-independent api, through Python or something.
I have an UIImage view that responds to touch events. I want to cancel the touch sequence if the touch goes outside of certain bounds. How can I do that?
I know that I can inspect the coordinates of the touch object, what I don't know is how to cancel the sequence. I don't see any event in the API that allows for that.
Hi,
I have created an application to interact with Excel in C#.net
The API to save the Excel
Excel._Workbook m_oWorkBook;
m_oWorkBook.Save();
Throws up a File Saveas MessageBox though the workbook was already saved in a given name.
Note:
This happens only in Windows 7 & only when another Workbook was already opened.
Any clues.
The problem is this is hard to follow:
ajaxOne(function() {
// do something
ajaxTwo(function() {
// do something
ajaxThree()
});
});
I'm using a third party API to make the AJAX calls, so I need a generic solution.