-
Website
http://oratweet.com/ -
Original page
http://apex.oracle.com/pls/otn/f?p=50000:2:0 -
Subscribe
All Comments -
Community
-
Top Commenters
-
noelportugal
6 comments · 2 points
-
anjeli2001
1 comment · 1 points
-
pfmnd
5 comments · 1 points
-
darrylbaker
1 comment · 1 points
-
acount29
1 comment · 1 points
-
-
Popular Threads
My trouble is (I suppose) the image folder on the http server.
After copied the oratweet folder into C:\oraclexe\apex\images\ the running application don "see" the javascript file
The homepage of oratweet iz without images css and javascript
In the shared components image prefix is "/i/".
On invite page the url is only the site url, it doesn't include the [:port]/pls/apex/f?=APP_NUMBER rest of the url.
I will try modifying the SITE_VARIABLES table.
The reason that the invite page is only referring to the site is because I am using the rewrite rules. So all request to http://mysite.com rewrite to http://mysite.com[:port]/pls/apex/f?=APP_NUMBER... An easy fix is to include this on the SEND_INVITE process:
oratweet_site := :SITE || :DAD || 'f?=' || :APP_NUMBER;
where :SITE and :DAD where the substitution strings defined on the application definition.
I also replaced the SEND_EMAIL UTL_SMTP calls with UTL_MAIL as I couldn't get the email working.
It now works perfectly.
Are you aware of any Twitter stand alone clients that would work with OraTweet ?
if p_username is not null then
utl_smtp.command ( l_connection, 'AUTH LOGIN' );
utl_smtp.command ( l_connection ,utl_raw.cast_to_varchar2 (utl_encode.base64_encode (utl_raw.cast_to_raw ( p_username ))));
utl_smtp.command ( l_connection,utl_raw.cast_to_varchar2 (utl_encode.base64_encode (utl_raw.cast_to_raw ( p_password ))));
end if;
I replaced calls to send_auth_mail with calls to send_email and changed the send_email code to keep it simple.
create or replace PROCEDURE SEND_EMAIL
( SEND_TO IN VARCHAR2
, SEND_SBJ IN VARCHAR2
, SEND_MSG IN CLOB
)
AS
pragma autonomous_transaction;
BEGIN
UTL_MAIL.send_attach_varchar2
(sender => 'oratweet@somewhere.com',
recipients => SEND_TO,
cc => null,
bcc => null,
subject => SEND_SBJ,
mime_type => 'text/html; charset=UTF-8',
attachment => SEND_MSG,
att_mime_type => 'text/html; charset=UTF-8',
att_filename => SEND_SBJ || '.html');
EXCEPTION
WHEN OTHERS THEN
raise_application_error(-20001,'The following error has occured: ' || sqlerrm);
END SEND_EMAIL;
What are other people using for desktop clients?
I've looked at a python implementation, pwytter, but if there are clients that already integrate with OraTweet that would be ideal.
Give me a few days so I can clean up the code a little and I can share it with you. Ideally we need someone to create an Adobe Air app...There are a few open source Twitter clients (Spaz) that in theory could be tweaked to use OraTweet.
-Noel
For linux and mac users I wonder if it would work with mono ?
How does the IM integration work (process) ?
Does the tweet become the IM status ?
How does the IM integration work (technically) ?
A java client dequeues the tweet from the table, authenticates to the IM system and updates the status ?
I am very new to use of twitter, but have a potential use of twitter for up to the minute problems that arise during go-live weekends (like of a major ERP upgrade) where we need fast communication of issues that arise so appropriate folks can work them. Having the items in the DB will help us better track these issues also.
I am trying to figure out the install of your software. We are currently using a hosted site for our Apex so I need to know which email service we need to connect to. In the configuration:
'admin@yoursite.com','PASSWORD','mail.yoursite.com',25,'ENABLED'
I am trying to figure out-- is 'yoursite.com' the email server of our Apex hosted site which needs to send/receive email --or is this our campus email server (Exchange) which resides in a different location than the hosted site? Does Oratweet need to both send and receive email?
Thanks,
Pat
-Noel
Do you have that sample code available if we are using the apex_mail procedure on localhost.
Thanks,
pat
Pat
Our hosting Apex provider states:
You can use localhost as email server and use any email address as you want. Our outbound smtp server doesn't require authentication on this server.
So in our case, what would we put in for the parameters, or do we have to use authenticated SMTP?
Pat
-Noel
Pat
Any chance of a peek at the code ?
It is a very simple app -- shows a list of key items for go-live testing by our tech and functional users in an interactive report with status, issue and upload of files if needed for error screen prints. Uses a dial chart as a dashboard for progress. Testers can update just their test items, but can see a report of status with the overall dashboard.
Pat
I use APEX's LDAP integration to the corporate Active Directory and am interested in your LDAP functionality.
Very simple is great for my target audience.
I will work to get the OraTweet integrated as I have time and will provide the code if anyone wants it.
I have my go-live app now uploaded to the apex.oracle.com site. Can you send me your email so I can send you login info.
My email: pmiller@nd.edu
Pat
Yes some sample code would be great.
Pat
Also - any progress on the open source IM xmpp working with Oratweet?
Thanks,
Pat
Have you ever saw this problem and have some hints to solve it?
When I logged in ORATWEET application after installation, I faced these error.
Do you know these error ?
ORA-04063: package body "ORATWEET.PKG_AUTH" has errors
ORA-06508: PL/SQL: could not find program unit being called: "ORATWEET.PKG_AUTH"
Environment
Windows 2003 server
Oracle 11g installed
App Ex installed
Enable Network Services in Oracle Database 11g
By default, the ability to interact with network services is disabled in Oracle Database
11g release 1 (11.1). Therefore, if you are running Oracle Application Express with
Oracle Database 11g release 1 (11.1), you must use the new DBMS_NETWORK_ACL_
ADMIN package to grant connect privileges to any host for the APEX_030200 database
user. Failing to grant these privileges results in issues with: