is it posible to create Web Bot in delphi?
i was just curious about webbot project and i wish that i could create something similar to that project. ...
i was just curious about webbot project and i wish that i could create something similar to that project. ...
I've implemented a toy web service in Twisted.Web: from twisted.web import server, resource, http class RootResource(resource.Resource): def __init__(self): resource.Resource.__init__(self) self.putChild('test', TestHandler()) class TestHandler(resource.Resource): isLeaf = True def __init__(self): res...
Hi guys, I'm about to start development on the front end of a web application that I'm creating. However, I'm trying to find a suitable CMS for my needs (or developing a custom one if necessary). Basically, I need a CMS that will allow: Allow user registration (preferably the CMS already has a preexisting plugin or module with subsc...
hi, can the webservices for micorsoft dynamics crm give me all informations that the system helds? that is : is all data held in these "entities" ``? Do you know a good tutorial or architectural overview of Microsofts Dynamics CRM ? yours Andy ...
I need to know how does svcutil and Visual Studio decide which types can be re-used from referenced assemblies when generating a web service proxy class. I have an assembly with some types that are declared like this: namespace MYCOMPANY.BO.Accounting { [Serializable, DataContract] public class AccountingPackagePutRequest : Req...
I'm designing a website for an organization that's a state chapter of a national organization. The national organization has implemented a member login that I need to use for the state website. My website is in PHP, and it looks like the server for the national organization is using SOAP and ColdFusion. I'm a total newbie to using SOAP...
Basically I want to know how many people have tweeted a link to a url, but since there are dozens of link shortener out there I don't see any way to do this without having access to all of their url maps. I found a previous question here but it was over a year old and didn't have any new answers. So #1, does anyone know of a service/AP...
I would like to know if it is legal to use external article on my website? I think that if I reference the author it should be OK, but I don't know where to find information about this. Any help would be very much appreciated. ...
Here are my METAs <META name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" /> <META name="HandheldFriendly" content="true" /> and this is my JavaSCript supposedly hiding the URL bar (which is quirky) window.onload = function () { setTimeout(function(){window.scrollTo(0, 1);}, 100); insert...
I know that I can generate and send a post via HttpWebRequest, but I am wondering if it's possible to generate the post and return it to a web application so that it can perform the post. In other words, I want the web application to call a method in my class library that generates the post request, but I want the web application to s...
I've been using Safari on Windows and the iBBDemo Blackbaud iPhone Browser Simulator to emulate an iPhone but I have noticed that Safari does not render form elements using the default control styles. Safari on iPhone supplies default control styles that are specific to iPhone. This means my web forms look nothing like they do on an actu...
I need to write a .NET web service which will be consumed exclusively by an iPad app. We are leaning towards using REST but could someone let me know whether this is the easier way (from the iPhone side). ...
Hi - Does anyone can tell me where can I find countries names translated to most common languages like: French, Deutch, Portoguese, Spanish etc. Is there a file or a database containing this information ? I need it for a multilingual site containing a drop-down list of countries. Thanks in Advance. ...
I have an application that uses jquery tabs to open up different asp.net applications from its "menu" tab. The content of the tabs is an iframe with the application. What I need is for one of the application tabs that is inside an iframe to open a page in a new tab. I am running the apps in iis 7 with asp.net. how can I send a signal...
You could preserve web application state with JSON in URL like this: http://host/?state=[{id:1,selected=true},{id:2,selected=false}] Is this preferable? One motivation for doing something like this is if the user bookmarks the web page the web application state can be restored the next time the user visits the page. ...
Hi All First question on Stack overflow... I am a novice in C#, yet finding it quite straight forward in learning it. I saw this tutorial just a few minutes ago. Reading through the various c# technologies WCF, WPF, Silver light, c# with asp.net, that is quite a lot of technologies to take it in with c#. I will be creating a web ap...
Hello all Androiders, As such There is no particular repository for Android, i would like to initiate this. Now, let me clear about my idea: My idea is that Wherever you find any website and if you find it helps for the Android, then pls try to post here. This post works as a common Android-Database storing all the website-links which ...
We need to default URL to unique name. If it is www then with no prefix or vice versa. So decision to be made is either stick with www or with no prefix. With no prefix cookie is set for all sub domains. What are other downsides for it? Or benefits? Basically we need this for OpenID as OpenID will make users look different if they came...
Doing Web app for iPad clients, but need to recognize where user is doing one- and whe two-finger scrolls. Anybody know how to implement it? Any convenient jQuery plug in or something? Thanks. ...
I would like to add (with as minimal change to a page as possible) the ability to display a pop-over (i.e. not an actual OS dialog, but part of the page) message box on my homepage that I can call with javascript. In the worst case I suppose I could resort to the alert() call, but I find these annoying and obtrusive and just want someth...