Feb 15


Looking for some migration tool which is capable of converting Trusted Link Enterprise EDI maps to webMethods or websphere specific maps or to web services

Feb 4


I need to make a real estate web page. It should be full of information –which I have: pictures, text, pdf documents etc. The property is to be marketed around the globe. I need to connect to a local and/or “outsource” for a competitive price and honest, decent work–he/she must know the field real estate etc. so a productive and responsive web site could ensue. Guide me in directing to the right sources–location is less important than honest delivery and marketing of the site. Thanks 2 all who share their expertise.

Nov 21


For example, what internet languages should you know to make a page like youtube? Where people can log in with their accounts and do stuff? Or where there is categorisation of stuff like how my answer gets posted into a particular category in Y!A?

Sep 28


Hi,
If I need an ecommerce website what should be the going market rate I should pay the web developer?
I guess I want to know what is too high….
I would like to know the average Hourly rate.

Sep 10


I’m 15 and I want to save some money for an iphone, a computer and a tv and all that kinda stuff. I was thinking that as I’m good at designing simple websites like for example onemorelevel.com (although I didn’t design that but I could have done) . I’m good at graphic design and making menus in flash and css and I can make good looking websites but just not very advanced ones that interact with the user. Well I was thinking that I could design websites for clients like small business and things like that that just want to advertise their services and then I would charge a small fee (about 50 pounds). Is there a demand for this type of web design

Jan 15


I am trying to test some code locally and I need help getting a local mail server to test my PHP code that uses the mail();. If you know how to do this I would really appreciate the help! Thanks!

Jan 11


I have an E-book that I want to sell on my website (as a .PDF file).

I am set up with HostingDude, certified and verified to accept credit cards.

I want people to be able to make a one time purchase on my site, and automatically have that .PDF file sent to their email once they make the purchase.

What’s the best way to do this? Autoresponder? Or what?

Dec 7
getresponse
Unknown asked:


I have a c# application which gets the bbc’s weather forcast for any location.

3573¬Brixton, United Kingdom
3574¬Raynes Park, United Kingdom
3575¬Chelsea, United Kingdom
3576¬Clapham, United Kingdom
3577¬Earl’s Court, United Kingdom

The application uses the following method to obtain the html source and parse it, loading the weather forcast into arrays:

WebRequest HTTP = (HttpWebRequest)WebRequest.Create(@”http://www.bbc.co.uk/weather/5day.shtml?id=” + ID);
string html = (new StreamReader(HTTP.GetResponse().GetResponseStream())).ReadToEnd();
string[] delimiters = { “return false;\” onmouseout=\”hideSym(); return false;\”>\"",

” };
string[] htmlsplit = html.Split(delimiters, StringSplitOptions.None);
string[] days = { htmlsplit[3], htmlsplit[11], htmlsplit[19], htmlsplit[27], htmlsplit[35], };
string[] images = { htmlsplit[2], htmlsplit[10], htmlsplit[18], htmlsplit[26], htmlsplit[34], };
string[] forcasts = { htmlsplit[4], htmlsplit[12], htmlsplit[20], htmlsplit[28], htmlsplit[36], };

First of all, is this illegal and second, if it is not illegal, can I create a similar vista sidebar gadget to show the forcast?
I only plan to run this on my computer and I only really need to update at logon. How can I make a vista sidebar gadget to do the same task?
I only plan to run this on my computer and I only really need to update at logon. How can I make a vista sidebar gadget to do the same task?

Nov 30
How do you adjust the input size in html code?
icon1 admin | icon2 Programming & Design | icon4 11 30th, 2008| icon34 Comments »
autoresponder for you
Dane Roth asked:


I have set up an autoresponder at one of my sites, but i want to enlarge the input size of one of the boxes to accept large submission articles. Any suggestions?

Nov 24
GetResponse method hangs (C#)?
icon1 admin | icon2 Programming & Design | icon4 11 24th, 2008| icon31 Comment »
getresponse
tianshi417 asked:


I am making a program that sends a file to a socket, and gets a response.

I have been able so far to write in the socket, but when I get to the GetResponse() line, the program hangs indefinitively.

Here’s the code:

public void ConexionSocket()
{
try
{
FileStream fileStream = System.IO.File.OpenRead(@”C:\DIS.xml”);
byte[] byData2 = new byte[fileStream.Length];
fileStream.Read(byData2, 0, byData2.Length);

HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(”http://1.1.1.1:28903″);

myHttpWebRequest.Method = “POST”;
myHttpWebRequest.SendChunked = true;
myHttpWebRequest.ContentLength = byData2.Length;
myHttpWebRequest.ContentType = @”application/x-www-form-urlencoded”;
myHttpWebRequest.AllowWriteStreamBuffering = true;
myHttpWebRequest.Accept = “text/plain”;
myHttpWebRequest.ProtocolVersion = HttpVersion.Version10;
myHttpWebRequest.KeepAlive = false;

System.IO.Stream os = myHttpWebRequest.GetRequestStream();
os.Write(byData2, 0, byData2.Length);
os.Flush();

//The program hangs when entering this line
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
Stream streamResponse = myHttpWebResponse.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
Char[] readBuff = new Char[256];
int count = streamRead.Read(readBuff, 0, 256);
String strResultado = string.Empty;

}
catch (InvalidOperationException ioe)
{
throw ioe;
}
catch (Exception ex)
{
throw ex;
}
}

If I close the os instance after the Flush, then I get a “Unable to read data from the transport connection: An established connection was aborted by the software in your host machine.” exception.

Any suggestions to this?

This is driving me crazy, really, as it hasn’t been an answer over the Internet so far that has worked for me.

Thanks.

« Previous Entries