Damn, it has sure been a while... I just realized today that it's been 18 months
since I went out with a special lady last, but I'm pretty happy to be
heading out tonight. I've had a bit of trouble finding ANY decent women lately
so I joined up at this place a couple of weeks ago
http://www.browsethepictures.info/rmcc . And so far been doing pretty well,
just chatting to a few girls near me on Webcam and via the mail system on the
place, but this is the first one I've lined up. So anyway, wish me luck guys!!
Well I just got engaged! I can't believe it, just last year I was
beginning to think i would never meet anyone. I'm 25 already and I thought it
was all over. After some recommendations from a buddy I joined up here:
http://www.lookieherenow.info/podp and after 2 weeks I was already meeting up
with a beauty. Well, 14 months later and where still together and planning our
marriage for later this year =)
sure, here is a working java class that pings weblogs.
Joel
--- andy_kishore <andy_kishore@...> wrote:
> Hi Joel,
>
> Thanks for your reply....i tried what you said but
> same results again
> ...Could you send me sum code you might have written
> which works.
> That would be gr8.
>
> Andy.
>
> --- In weblogs-com@yahoogroups.com, Joel Nylund
> <jnylund@y...> wrote:
> >
> > Andy, the length of this message is 205, I would
> put
> > the contents in a StringBuffer or String, then get
> the
> > length, use this variable in the "Content-lengh"
> field
> > of the header.
> >
> > thanks
> > Joel
> >
>
>
>
>
>
>
import java.net.*;
import java.io.*;
import java.util.*;
import java.net.URLEncoder;
public class WeblogsPing {
public static final int SOCKET_TIMEOUT_VALUE = 60 * 1000;
public static int PORT = 0;
public static String IP = null;
public Socket s = null;
public PrintWriter out = null;
public InputStream is = null;
public static boolean soap = false;
// Pass in rpc.weblogs.com 80 1
// Pass in rpc.weblogs.com 80 1
public static void main(String rgs[]) {
IP="rpc.weblogs.com";
PORT=80;
boolean showPage = true;
String url = null;
url = " /RPC2";
HTTPWrapper httpWrapper = new HTTPWrapper();
int bcount = 0;
StringBuffer sb = new StringBuffer();
try {
String data = null;
data = "<?xml version=\"1.0\"?>\r\n" + "<methodCall>\r\n"
+ "<methodName>weblogUpdates.ping</methodName>\r\n"
+ "<params>\r\n" + "<param>\r\n"
+ "<value>Joels Blog</value>\r\n" + "</param>\r\n"
+ "<param>\r\n"
+ "<value>http://feeds.feedburner.com/JoelsBlog/</value>\r\n"
+ "</param>\r\n" + "</params>\r\n"
+ "</methodCall>\r\n";
Socket s = null;
s = new Socket(IP, PORT);
s.setSoTimeout(SOCKET_TIMEOUT_VALUE);
PrintWriter out = new PrintWriter(s.getOutputStream());
String output = ("POST " + url + " HTTP/1.0\r\n"
+ "User-Agent: Java RPC Client (WinNT)\r\n"
+ "Content-Length: " + data.length() +
"\r\n"+"Content-Type: text/xml\r\n\r\n");
String finalOutput = output + data;
System.out.println("outgoing request:\n" + finalOutput);
out.print(finalOutput);
out.flush();
DataInputStream is = new DataInputStream(new BufferedInputStream(s
.getInputStream()));
int thechar;
while ((thechar = is.read()) != -1) {
bcount = bcount + 1;
sb.append((char) thechar);
}
is.close();
out.close();
s.close();
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("Page of Length " + sb.length() + " returned");
System.out.println(sb);
}
}
Hi Joel,
Thanks for your reply....i tried what you said but same results again
...Could you send me sum code you might have written which works.
That would be gr8.
Andy.
--- In weblogs-com@yahoogroups.com, Joel Nylund <jnylund@y...> wrote:
>
> Andy, the length of this message is 205, I would put
> the contents in a StringBuffer or String, then get the
> length, use this variable in the "Content-lengh" field
> of the header.
>
> thanks
> Joel
>
Andy, the length of this message is 205, I would put
the contents in a StringBuffer or String, then get the
length, use this variable in the "Content-lengh" field
of the header.
thanks
Joel
--- andy_kishore <andy_kishore@...> wrote:
> Hi,
>
> This is what my request looks like:
>
> // THIS IS WHERE I'M SETTING THE HEADERS
> con.setRequestProperty("Content-Type","text/xml");
> con.setRequestProperty("Host","rpc.weblogs.com");
> con.setRequestProperty("Content-length","250");
> con.setRequestMethod("POST");
>
> // THIS IS MY XML-RPC REQUEST
> writer.write("<?xml version=\"1.0\"?>");
> writer.write("<methodCall>");
>
writer.write("<methodName>weblogUpdates.ping</methodName>");
> writer.write("<params>");
> writer.write("<param>");
> writer.write("<value>Scripting News</value>");
> writer.write("</param>");
> writer.write("<param>");
>
writer.write("<value>http://www.scripting.com/</value>");
> writer.write("</param>");
> writer.write("</params>");
> writer.write("</methodCall>");
>
> --- In weblogs-com@yahoogroups.com, Joel Nylund
> <jnylund@y...> wrote:
> >
> > Andy, can you post the exact request you are
> sending,
> > typically I have seen this error when you send the
> > wrong content length (are you sure the length is
> 250?)
> > thanks
> > Joel
> >
>
>
>
>
>
Hi,
This is what my request looks like:
// THIS IS WHERE I'M SETTING THE HEADERS
con.setRequestProperty("Content-Type","text/xml");
con.setRequestProperty("Host","rpc.weblogs.com");
con.setRequestProperty("Content-length","250");
con.setRequestMethod("POST");
// THIS IS MY XML-RPC REQUEST
writer.write("<?xml version=\"1.0\"?>");
writer.write("<methodCall>");
writer.write("<methodName>weblogUpdates.ping</methodName>");
writer.write("<params>");
writer.write("<param>");
writer.write("<value>Scripting News</value>");
writer.write("</param>");
writer.write("<param>");
writer.write("<value>http://www.scripting.com/</value>");
writer.write("</param>");
writer.write("</params>");
writer.write("</methodCall>");
--- In weblogs-com@yahoogroups.com, Joel Nylund <jnylund@y...> wrote:
>
> Andy, can you post the exact request you are sending,
> typically I have seen this error when you send the
> wrong content length (are you sure the length is 250?)
> thanks
> Joel
>
Andy, can you post the exact request you are sending,
typically I have seen this error when you send the
wrong content length (are you sure the length is 250?)
thanks
Joel
--- andy_kishore <andy_kishore@...> wrote:
> I tried pinging Weblogs through Java code but
> everytime i get the
> following response:
>
> < ? x m l v e r s i o n = " 1 . 0 " ? > < m e t h o
> d R e s p o n s e
> > < p a r a m s > < p a r a m > < v a l u e > < s t
> r u c t > < m e m
> b e r > < n a m e > m e s s a g e < / n a m e > < v
> a l u e > C a n '
> t & # 3 2 ; a c c e p t & # 3 2 ; t h e & # 3 2 ; p
> i n g & # 3 2 ; b
> e c a u s e & # 3 2 ; t h e & # 3 2 ; U R L & # 3 2
> ; m u s t & # 3 2
> ; b e g i n & # 3 2 ; w i t h & # 3 2 ; h t t p : /
> / . < / v a l u
> e > < / m e m b e r > < m e m b e r > < n a m e > f
> l e r r o r < / n
> a m e > < v a l u e > < b o o l e a n > 1 < / b o o
> l e a n > < / v a
> l u e > < / m e m b e r > < / s t r u c t > < / v a
> l u e > < / p a r
> a m > < / p a r a m s > < / m e t h o d R e s p o n
> s e >
>
> I just can't figure out the error. I'm setting the
> Content-Type to
> 'text/xml' and Content-length to 250 and the url of
> my blog also
> contains http://. Please suggest me a solution.
>
>
>
>
>
I tried pinging Weblogs through Java code but everytime i get the
following response:
< ? x m l v e r s i o n = " 1 . 0 " ? > < m e t h o d R e s p o n s e
> < p a r a m s > < p a r a m > < v a l u e > < s t r u c t > < m e m
b e r > < n a m e > m e s s a g e < / n a m e > < v a l u e > C a n '
t & # 3 2 ; a c c e p t & # 3 2 ; t h e & # 3 2 ; p i n g & # 3 2 ; b
e c a u s e & # 3 2 ; t h e & # 3 2 ; U R L & # 3 2 ; m u s t & # 3 2
; b e g i n & # 3 2 ; w i t h & # 3 2 ; h t t p : / / . < / v a l u
e > < / m e m b e r > < m e m b e r > < n a m e > f l e r r o r < / n
a m e > < v a l u e > < b o o l e a n > 1 < / b o o l e a n > < / v a
l u e > < / m e m b e r > < / s t r u c t > < / v a l u e > < / p a r
a m > < / p a r a m s > < / m e t h o d R e s p o n s e >
I just can't figure out the error. I'm setting the Content-Type to
'text/xml' and Content-length to 250 and the url of my blog also
contains http://. Please suggest me a solution.
ignore the rpc issue, it was me, I wasnt sending the correct content
length. Still stuck on the soap issue, any ideas? now its redirecting
me to rpc.cadenhead.org....
Joel
--- In weblogs-com@yahoogroups.com, "jnylund" <jnylund@y...> wrote:
> I tried whats in the docs for soap and when I do a soap request it
> gets a 302 moved to /var/www/html, if I follow that I get a 404 file
> not found.
>
>
> for rpc, even weirder I get:
> <value>Can't accept the ping because the URL must begin with
> http://.</value>
>
>
> (I cut and pasted the example from the rpc directions)
>
>
> any ideas for these?
>
> thanks in advance
> Joel
I tried whats in the docs for soap and when I do a soap request it
gets a 302 moved to /var/www/html, if I follow that I get a 404 file
not found.
for rpc, even weirder I get:
<value>Can't accept the ping because the URL must begin with
http://.</value>
(I cut and pasted the example from the rpc directions)
any ideas for these?
thanks in advance
Joel
I have two blogs, which I contribute to when the mood strikes me. One
is a about a fictional character called Alvis Gogwecker, who has come
to the big city from a small town called Hootin Holler in a nearby
unknown state. The other is my view of things that strike me a bit odd,
peculiar, or funny. They are at:
http://alvisgogwecker.blogspot.comhttp://thejoker2005.blogspot.com
Please feel free to share them.
Hi Jess,
Just do a search at Yahoo or Google about Blogs and
you'll find millions of reasons you're looking for.
:-)
Pat
www.consultancy.com.sg
--- jlbaf <jlbaf@...> wrote:
> Hi,
> Can someone explain and outline to me the 10
> major functions a blog
> hosting site should offer?? A million thankx if can
> help me.
> Jess
>
>
>
____________________________________________________
Yahoo! Sports
Rekindle the Rivalries. Sign up for Fantasy Football
http://football.fantasysports.yahoo.com
Web Blogs
A blog is a personal diary. A daily pulpit. A collaborative space. A
political soapbox. A breaking-news outlet. A collection of links. Your
own private thoughts. Memos to the world.
Your blog is whatever you want it to be. There are millions of them,
in all shapes and sizes, and there are no real rules.
In simple terms, a blog is a web site, where you write stuff on an
ongoing basis. New stuff shows up at the top, so your visitors can
read what's new. Then they comment on it or link to it or email you.
Or not.
Since Blogger was launched, almost five years ago, blogs have reshaped
the web, impacted politics, shaken up journalism, and enabled millions
of people to have a voice and connect with others.
http://groups.yahoo.com/group/Web_Blogs
all I know is that my pings are not taken into consideration by the system! I am using an MT system, and the automatic pinging system works okay, but there is actually no update and I never see my weblog in the changes.xml.
I also try to do it manually by going to the Ping Form and typing the address, and still nothing happens. I check my friend's weblogs where they have my link, and it shows my last update was March 3rd! I have not had any pings working for over a month, and I emailed the site and no one answered.
Hello,
I noticed a couple of weeks ago that sometimes I couldn't access
the update record on http://www.weblogs.com for the blogger weblog at
http://www.linksmultiple.co.uk/15.html but the update record did
appear when
viewing the xml version at http://www.weblogs.com/changes.xml
although
periodically it did seem to hide behind a password so was
inaccessible.
That problem seems to have gone away now so I guess whatever
weblogs.com did on 20 April with moving stuff to Apache has worked OK.
Did anyone else have the same problem and if so is it fixed for you
too?
I am using the MT system with my own domain name. I have marked
the "ping these sites" in Preferences, so whenever I update my blog,
the weblogs.com is pinged.
It worked alright for a good two years up to two weeks ago. Since
March 20th, I see that the pings go through with the MT, but my
position in the weblogs of the people who have linked to me is not
updated. It seems like when the script is renewed, my weblog is not
marked "updated". One of my friends has not gotten an update from
me since March 17th (I made an update today). Another one of my
friends who has links to me actually now has TWO links showing up on
his blogrolling, but none updated.
What is the problem?
My weblog is www.vishistorica.com
Thanks everyone
Khodadad
Hi,
I know u dont have a blog at blogger.com but their article about
pingin a blog might help u in some way.
http://help.blogger.com/bin/search.py?type=f&query=weblogs
--- In weblogs-com@yahoogroups.com, "Guess it........"
<vaifan77@y...>
wrote:
>
> Hello,
> I am new to the blog world. First question: How do you 'ping' a
site
> like google or weblogs?
>
> I went to a website to 'verify' my rss feeds and it gave me some
type
> of line errors. Can someone help? Please respond via email.
> thanks.
>
> Here is my new blog site:
>
> http://vaifan.myblogsite.com/blog
Hello,
I am new to the blog world. First question: How do you 'ping' a site
like google or weblogs?
I went to a website to 'verify' my rss feeds and it gave me some type
of line errors. Can someone help? Please respond via email.
thanks.
Here is my new blog site:
http://vaifan.myblogsite.com/blog
I tried connecting to the changes.xml and also shortchanges.xml and I
couldn't seem to get a connection to either through my RSS reader in
thunderbird. I d/l another RSS reader to see if it was thunderbird,
and it didn't work either. On shortchanges.xml, it seems to be a
valid XML file(in my browser) but it simply won't get picked up.
Anyone else having these issues?
Hi,
I'm very new to blogs and such! I have started a blog which is called
Abundant Buddha. I read an article by Rick Butts about blog and ping
and a site called Ping o matic. I have tried to use the site but have
been identified as a ping spammer. Please could someone suggest what
to do in this case, I don't think I am a spammer!
thanks
Richard
http://abundantbuddha.blogspot.com/
hello all,
i'm a student of cs and currently i'm doing my final project. that is
a Weblog site for my university. i've gathered some information about
what weblog is how to use it and what's its purpose. so may say that
i dont have any previous knowledge about weblogs. my project is to
develop a weblog site that mantains the users' blogs added in the
form of RSS feeds just as my yahoo, and also gives the option to
publish our own blogs. currently im in a studying phase and im
gathering information about it. i've come to know about XML-RPC ping
that's used with weblogs but i don't know what it is for. so i want
you guys to plz help me out to understand it and how it can be useful
for my project. moreover i'd love to read your suggestions if you
inform me with.
Regards,
Mariyam Naveed
hello
Pick a new template again and do customization, after u finish save
template changes and publish your entire blog to see the changes.
hope this helps.
dnamicro
http://dnamicroarrays.blogspot.com
--- In weblogs-com@yahoogroups.com, "paul grant" <zenseeds@s...>
wrote:
>
> Somehow in my editing of my template at Blogger I have removed the
> ability to add new post. I know I should be punished for playing
> with the page. What have I done and how can I fix it (I wonder.)
The
> page is at http://bringthemhome2.blogspot.com. Thanks in advance
for
> even taking a look (maybe my ignorance will bring a smile.)
Somehow in my editing of my template at Blogger I have removed the
ability to add new post. I know I should be punished for playing
with the page. What have I done and how can I fix it (I wonder.) The
page is at http://bringthemhome2.blogspot.com. Thanks in advance for
even taking a look (maybe my ignorance will bring a smile.)
Hi, i have a difficulty in my weblog.
How can i remove a message from the frontpage and put it in the
archive ?
I can not find an option to do this,
thanks in advance, kind regards, Pauline