Connection to CRX via RMI and getting WeakReference value..... with an exception!

Hi there,
I have the following problem.
I opened a ticket in Day Care Support system, about CRX users/group membership that got lost while synchronization with our LDAP server.
Although when the user and the group had been created (and therefore taken from that same LDAP server), the membership was good.... but after some time the membership got lost......
So what i am trying to do now is a Java program that connects to CRX via RMI.
And gets the list of all the users from a group (aka membership).
The idea is to monitor the membership each seconds.
But when trying to get the property "rep:members" of the group, I have the following exception :
javax.jcr.ValueFormatException: Unknown value type 10
          at org.apache.jackrabbit.rmi.server.ServerObject.getRepositoryException(ServerObject.java:13 9)
          at org.apache.jackrabbit.rmi.server.ServerProperty.getValues(ServerProperty.java:71)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
          at java.lang.reflect.Method.invoke(Method.java:611)
          at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:322)"
I searched a little bit and found that "10" is the number for type WeakReference.
That's normal to me because memberships are stored in the group as a list reference to users linked to that group....
Anyways, what's not normal to me is that when the type is "10" the API does not let me get the Value (cf. ServerProperty.getValues() method)
Here is the program:
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import javax.imageio.spi.ServiceRegistry;
import javax.jcr.Node;
import javax.jcr.NodeIterator;
import javax.jcr.Property;
import javax.jcr.PropertyIterator;
import javax.jcr.Repository;
import javax.jcr.RepositoryException;
import javax.jcr.RepositoryFactory;
import javax.jcr.Session;
import javax.jcr.SimpleCredentials;
import javax.jcr.Value;
public class Test {
          public static void main(String[] args) {
                    String uri = "rmi://sma11c02.............:1234/crx";
                    String username = "admin";
                    char[] password = {....................};
                    String workspace = "crx.default";
                    String nodePath = "/home/groups/a";
                    Repository repository = null;
                    Session session = null;
                    try {
                              // Connection to repository via RMI
                                        Map<String, String> jcrParameters = new HashMap<String, String>();
                                        jcrParameters.put("org.apache.jackrabbit.repository.uri", uri);
                                        Iterator<RepositoryFactory> iterator = ServiceRegistry.lookupProviders(RepositoryFactory.class);
                                        while (null == repository && iterator.hasNext()) {
                                                  repository = iterator.next().getRepository(jcrParameters);
                              if (repository == null) {
                                        throw new IllegalStateException("Problem with connection to the repository...");
                              // Creation of a session to the workspace
                              session = repository.login(new SimpleCredentials(username, password), workspace);
                              if (session == null) {
                                        throw new IllegalStateException("Problem with creation of session to the workspace...");
                              // Get the targetted node
                              Node node = session.getNode(nodePath);
                              System.out.println("Node : " + node.getName());
                              System.out.println();
                              PropertyIterator properties = node.getProperties();
                              System.out.println("List of properties for this node :");
                              while (properties.hasNext()) {
                                        Property property = properties.nextProperty();
                                        System.out.print("\t"+property.getName() + " : ");
                                        if (property.isMultiple()) {
                                                  Value[] values = property.getValues();
                                                  for (int i = 0; i < values.length; i++) {
                                                            System.out.print(values[i]);
                                                            if (i+1 != values.length) {
                                                                      System.out.print(", ");
                                                  System.out.println();
                                        } else {
                                                  Value value = property.getValue();
                                                  System.out.println(value);
                              System.out.println();
                              NodeIterator kids = node.getNodes();
                              System.out.println("List of children nodes for this node :");
                              while (kids.hasNext()) {
                                        Node kid = kids.nextNode();
                                        System.out.println("\tChild node : "+kid.getName());
                                        PropertyIterator kidProperties = kid.getProperties();
                                        System.out.println("List of properties for this child :");
                                        while (kidProperties.hasNext()) {
                                                  Property property = kidProperties.nextProperty();
                                                  System.out.print("\t"+property.getName() + " : ");
                                                  if (property.isMultiple()) {
                                                            Value[] values = property.getValues();
                                                            for (int i = 0; i < values.length; i++) {
                                                                      System.out.print(values[i]);
                                                                      if (i+1 != values.length) {
                                                                                System.out.print(", ");
                                                            System.out.println();
                                                  } else {
                                                            Value value = property.getValue();
                                                            System.out.println(value);
                                        System.out.println();
                    } catch (RepositoryException e) {
                              e.printStackTrace();
                    } finally {
                              if (session != null) {
                                        session.logout();
Here is the output of the below program:
Node : a
List of properties for this node :
          jcr:createdBy : admin
          jcr:mixinTypes : mix:lockable
          jcr:created : 2011-10-25T16:58:48.140+02:00
          jcr:primaryType : rep:AuthorizableFolder
List of children nodes for this node :
          Child node : administrators
List of properties for this child :
          jcr:createdBy : admin
          rep:principalName : administrators
          rep:members : javax.jcr.ValueFormatException: Unknown value type 10
          at org.apache.jackrabbit.rmi.server.ServerObject.getRepositoryException(ServerObject.java:13 9)
          at org.apache.jackrabbit.rmi.server.ServerProperty.getValues(ServerProperty.java:71)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
          at java.lang.reflect.Method.invoke(Method.java:611)
          at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:322)
          at sun.rmi.transport.Transport$1.run(Transport.java:171)
          at java.security.AccessController.doPrivileged(AccessController.java:284)
          at sun.rmi.transport.Transport.serviceCall(Transport.java:167)
          at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:547)
          at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:802)
          at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:661)
          at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:897)
          at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:919)
          at java.lang.Thread.run(Thread.java:736)
          at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
          at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
          at sun.rmi.server.UnicastRef.invoke(Unknown Source)
          at org.apache.jackrabbit.rmi.server.ServerProperty_Stub.getValues(Unknown Source)
          at org.apache.jackrabbit.rmi.client.ClientProperty.getValues(ClientProperty.java:173)
          at Test.main(Test.java:96)
Here is the list of jar files i'm using with this program:
          2862818581          61388           crx-rmi-2.2.0.jar
          732434195           335603           jackrabbit-jcr-commons-2.4.0.jar
          1107929681           411330           jackrabbit-jcr-rmi-2.4.0.jar
          3096295771           69246           jcr-2.0.jar
          1206850944           367444           log4j-1.2.14.jar
          685167282           25962           slf4j-api-1.6.4.jar
          2025068856           9748           slf4j-log4j12-1.6.4.jar
Finally, we are using CQ 5.4 (CRX 2.2) with the latest hotfix and under Websphere 7.0
Best regards,
Vincent FINET

Je suis absent(e) du bureau jusqu'au 17/04/2012
Je suis absent.
Je répondrai à votre sollicitation à mon retour le 17 avril 2012.
Cordialement,
Vincent FINET
Remarque : ceci est une réponse automatique à votre message  "[CQ5]
Connection to CRX via RMI and getting WeakReference value..... with an
exception!" envoyé le 13/4/12 0:32:14.
C'est la seule notification que vous recevrez pendant l'absence de cette
personne.
Le papier est un bien precieux, ne le gaspillez pas. N'imprimez ce document que si vous en avez vraiment besoin !
Ce message est confidentiel.
Sous reserve de tout accord conclu par ecrit entre vous et La Banque Postale, son contenu ne represente en aucun cas un engagement de la part de La Banque Postale.
Toute publication, utilisation ou diffusion, meme partielle, doit etre autorisee prealablement.
Si vous n'etes pas destinataire de ce message, merci d'en avertir immediatement l'expediteur.

Similar Messages

  • Hello Everyone, I just bought a HP Photosmart Premium All-in-One Printer - C309g but i find it very difficult to connect to it via BLUETOOTH and WIRELESS on my IPAD 3...i will be very greatfull if i'll get a solution as soon as possible. Thanks

    Hello Everyone, I just bought a HP Photosmart Premium All-in-One Printer - C309g but i find it very difficult to connect to it via BLUETOOTH and WIRELESS on my IPAD 3...i will be very greatfull if i'll get a solution as soon as possible. Thanks

    Hi Tomiwa,
    You cannot print from the iPad to that printer. AirPrint and Bluetooth are completely different.
    There may be apps you can buy that will enable using that printer, but that is not an ideal solution.
    That particular printer has had many bad reviews, and is unreasonably expensive for its features. Considering that you just bought the printer, as well as its lack of AirPrint, I suggest you return it and buy a printer that supports AirPrint.

  • Downloading a binary via IE and getting the "corrupt or invalid" message

    Hi,
    I'm trying to resolve the issue when downloading a binary via IE and getting the "corrupt or invalid" message.
    I've tried using the /tr switch instead of /t, however I still get the same problem.
    I'm using the signtool.exe from SDK 8.1 and IE version 10.0.9200.17028
    I've tried using the following time stamp server but it did not responded:
    http://timestamp.verisign.com/scripts/timstamp.dll
    so I've used this one instead:
    http://timestamp.globalsign.com/scripts/timstamp.dll
    but even though I still get the "corrupt or invalid"  message.
    Thanks

    Hi,
    see
    http://blogs.msdn.com/b/ieinternals/archive/2014/09/04/personalizing-installers-using-unauthenticated-data-inside-authenticode-signed-binaries.aspx
    Questions regarding Internet Explorer 8, 9 and 10 and Internet Explorer 11 for the IT Pro Audience. Topics covered are: Installation, Deployment, Configuration, Security, Group Policy, Management questions. If you are a consumer looking for answers or to
    raise a question, it's highly recommended you head on over to http://answers.microsoft.com
    does the problem persist If you upgrade to IE11/win8.1?
    Rob^_^

  • Connect iPad to MAC computer and get this message: iTunes could not connect to the iPad because the device timed out.  ??

    Connect iPad to MAC computer and get this message: iTunes could not connect to the iPad because the device timed out.  What is the likely problem???

    Eject the iPad, quit iTunes, restart the Mac and reset the iPad and try again. Use another USB port on the Mac if you have a free one to use.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10 seconds until the Apple logo appears on the screen. Let go of the buttons and let the iPad start up.

  • Is it possible to create the adhoc network and get it work with WLAN APIs (WlanConnect) instead of netsh commands...?

    Hi All,
    I am facing issues in creating  adhoc network in Windows 8.1. After searching in internet, I found that adhoc works with 
    netsh commands.
    1. I have tried neths commands and able to get it work on windows 8.1, 
     but I want to do it through the WLAN APIs ie. WlanConnect ,
    2. I am able to initiate the adhoc network(on Windows 8.1) by using WlanConnect API and other device are also able to connect to the Windows8.1 initiated adhoc  network  but the DHCP is not working.
    -> clients are not able to get the IP address.
    Is it possible to create the adhoc network and get it work with WLAN APIs (WlanConnect) instead of netsh commands...?
    Thanks
    akhil

    Hi,
    Did you mean to write a program to implement that creating adhoc via UI? This should be development issue.
    But this is Windows 8.1 client forum and there is no professional on develop.
    To help you better, I suggest you submit a new case on MSDN forum to help to check your code as they will be more professional on your issue:
    This is the MSDN forum link.
    http://social.msdn.microsoft.com/Forums/ 
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.  Thank you for your understanding.
    Kate Li
    TechNet Community Support

  • Bind Variable in SELECT statement and get the value  in PL/SQL block

    Hi All,
    I would like  pass bind variable in SELECT statement and get the value of the column in Dynamic SQL
    Please seee below
    I want to get the below value
    Expected result:
    select  distinct empno ,pr.dept   from emp pr, dept ps where   ps.dept like '%IT'  and pr.empno =100
    100, HR
    select  distinct ename ,pr.dept   from emp pr, dept ps where   ps.dept like '%IT'  and pr.empno =100
    TEST, HR
    select  distinct loc ,pr.dept   from emp pr, dept ps where   ps.dept like '%IT'  and pr.empno =100
    NYC, HR
    Using the below block I am getting column names only not the value of the column. I need to pass that value(TEST,NYC..) into l_col_val variable
    Please suggest
    ----- TABLE LIST
    CREATE TABLE EMP(
    EMPNO NUMBER,
    ENAME VARCHAR2(255),
    DEPT VARCHAR2(255),
    LOC    VARCHAR2(255)
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (100,'TEST','HR','NYC');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (200,'TEST1','IT','NYC');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (300,'TEST2','MR','NYC');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (400,'TEST3','HR','DTR');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (500,'TEST4','HR','DAL');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (600,'TEST5','IT','ATL');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (700,'TEST6','IT','BOS');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (800,'TEST7','HR','NYC');
    COMMIT;
    CREATE TABLE COLUMNAMES(
    COLUMNAME VARCHAR2(255)
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('EMPNO');
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('ENAME');
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('DEPT');
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('LOC');
    COMMIT;
    CREATE TABLE DEPT(
    DEPT VARCHAR2(255),
    DNAME VARCHAR2(255)
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('IT','INFORMATION TECH');
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('HR','HUMAN RESOURCE');
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('MR','MARKETING');
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('IT','INFORMATION TECH');
    COMMIT;
    PL/SQL BLOCK
    DECLARE
      TYPE EMPCurTyp  IS REF CURSOR;
      v_EMP_cursor    EMPCurTyp;
      l_col_val           EMP.ENAME%type;
      l_ENAME_val       EMP.ENAME%type;
    l_col_ddl varchar2(4000);
    l_col_name varchar2(60);
    l_tab_name varchar2(60);
    l_empno number ;
    b_l_col_name VARCHAR2(255);
    b_l_empno NUMBER;
    begin
    for rec00 in (
    select EMPNO aa from  EMP
    loop
    l_empno := rec00.aa;
    for rec in (select COLUMNAME as column_name  from  columnames
    loop
    l_col_name := rec.column_name;
    begin
      l_col_val :=null;
       l_col_ddl := 'select  distinct :b_l_col_name ,pr.dept ' ||'  from emp pr, dept ps where   ps.dept like ''%IT'' '||' and pr.empno =:b_l_empno';
       dbms_output.put_line('DDL ...'||l_col_ddl);
       OPEN v_EMP_cursor FOR l_col_ddl USING l_col_name, l_empno;
    LOOP
        l_col_val :=null;
        FETCH v_EMP_cursor INTO l_col_val,l_ename_val;
        EXIT WHEN v_EMP_cursor%NOTFOUND;
          dbms_output.put_line('l_col_name='||l_col_name ||'  empno ='||l_empno);
       END LOOP;
    CLOSE v_EMP_cursor;
    END;
    END LOOP;
    END LOOP;
    END;

    user1758353 wrote:
    Thanks Billy, Would you be able to suggest any other faster method to load the data into table. Thanks,
    As Mark responded - it all depends on the actual data to load, structure and source/origin. On my busiest database, I am loading on average 30,000 rows every second from data in external files.
    However, the data structures are just that - structured. Logical.
    Having a data structure with 100's of fields (columns in a SQL table), raise all kinds of questions about how sane that structure is, and what impact it will have on a physical data model implementation.
    There is a gross misunderstanding by many when it comes to performance and scalability. The prime factor that determines performance is not how well you code, what tools/language you use, the h/w your c ode runs on, or anything like that. The prime factor that determines perform is the design of the data model - as it determines the complexity/ease to use the data model, and the amount of I/O (the slowest of all db operations) needed to effectively use the data model.

  • Calling a javascript function from java code and getting tha value in Java

    Hi,
    I would like to call a Java script function confirmRemove() from Java code upon meeting a condition..
    for example the code snippet is:
    if(true){
    // I want to call js confirmRemove() over here. And get the value of variable "answer" in this if block.
    <html>
    <head>
    <script type="text/javascript">
    function confirmRemove() {
         var answer = confirm("Are you sure you want to Delete?")
    </script>
    </head>
    <body>
    <form>...

    Hi,
    Back in 2003 I have used an Applet which contain java code and this java code was calling the java scripts ( different methods, DHTML etc..)
    There was a component developed by NetScape called JSObject I am not sure it there is other third party component other then the JSObject
    look at this article which shows how (based on JSObject)
    [http://java.sun.com/products/plugin/1.3/docs/jsobject.html|http://java.sun.com/products/plugin/1.3/docs/jsobject.html]
    Regards,
    Alan Meio
    London,UK

  • If my phone is broken and not insured but still under one year old. Can I go to an apple store and get it replaced with a new one?

    My lock button has stopped working and need to get it fixed. Would it be possible if my phone if not insured but still under warranty to go to an apple store and get it replaced with a new one? Or do you have to be insured?

    The iPhone has a one year warranty. So you should be able to get it replaced free unless you damaged it. You can check the warranty status here: https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Make an appointment at the local Genius Bar ahead so you won't have a long wait. http://apple.com/retail and click on Genius Bar.

  • I have tried to install Ghostery and Do No Track Plus on my Android tablet and get not compatible with Firefox 15.0.1.Can you help with this?

    I have tried to install Ghostery and Do No Track Plus on my Android tablet and get not compatible with Firefox 15.0.1.Is there a way around this or another reputable do not track add on that i can use?

    at the moment, there's only a small subset of privacy/security-related addons available for the mobile version of firefox:
    https://addons.mozilla.org/mobile/extensions/security-privacy/

  • HibernateSystemException: exception getting property value with CGLIB

    I am getting a hibernate exception error
    HibernateSystemException: exception getting property value with CGLIB
    does anyone know what it means?

    check the setter method for the property LANG_CD in com.dst.fourx.model.codeModel.CodeGroupDisplay.
    it must be like -
    setNlsLanguage(CodesGroup xyz) { ... }
    The paremeters must be objects, not the type of the database column. We can specify the actual field in CodesGroup which acts as the foreign key in CodeGroupDisplay in the "property-ref" attribute of <many-to-one> element in the mapping file for CodeGroupDisplay.
    This worked for me. Hope it works for you too.

  • Can I connect via HDMI and get 1920x1080?

    Can I connect my MacBook Pro HDMI adapter up to my new Samsung Display via the HDMI connection and get 1920x1080?  Or is the 1080p the best display I can do with that connection?  Should I get the VGA adapter instead?

    Not so fast please...
    for HDMI rev 3.1 and above the AOK
    However my SHARP 42" flat screen (model LC-42D72U) requires DVI MBP (adapter ) to DVI port on the SHARP.
    I also have HDMI( and S video, component video and composite video) Also digital audio output from SHARP flat screen but for max UXGA resolution at horizontal frequency of 75.0 kHz DVI the way SHARP requires.
    Fortunately Apple gave me DVI adapter free ( seldom heard nice four letter word )
    "and a little help from my friends"...(apologies to the Beetles)
    Let 'er rip and...
    cheers

  • WWSAPI - Cannot connect to web service via SSL and HTTP proxy authentication with NTLM, errorCode 0x803d0016, HTTP status 407

    Hi,
    I built a web service client using WWSAPI. The connection works via SSL (without HTTP proxy) and it works with SSL and proxy with basic authentication as well. When I try to connect using a proxy with NTLM authentication, then I get the errorCode
    0x803d0016, HTTP status "407 (0x197)", "Proxy Authentication Required".
    In WireShark I see only one HTTP request to connect to the proxy with NTLM Message Type: NTLMSSP_NEGOTIATE. The HTTP Response returns Status 407 and the connection ist closed. Comparing this to Internet Explorer - the Connection is not closed and
    a second request with NTLMSSP_AUTH is sent.
    Why doesn't it make the complete NTLM handshake? Why wasn't sent the NTLMSSP_AUTH directly?
    I oriented in the HttpCalculatorWithKerberosOverSslClientExample.
    Using WS_HTTP_HEADER_AUTH_SECURITY_BINDING,
    WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_SCHEME was set to WS_HTTP_HEADER_AUTH_SCHEME_NTLM, WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_TARGET to WS_HTTP_HEADER_AUTH_TARGET_PROXY. I tried WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE but also WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE.
    Any idea?
    Thanks

    Hi,
    I built a web service client using WWSAPI. The connection works via SSL (without HTTP proxy) and it works with SSL and proxy with basic authentication as well. When I try to connect using a proxy with NTLM authentication, then I get the errorCode
    0x803d0016, HTTP status "407 (0x197)", "Proxy Authentication Required".
    In WireShark I see only one HTTP request to connect to the proxy with NTLM Message Type: NTLMSSP_NEGOTIATE. The HTTP Response returns Status 407 and the connection ist closed. Comparing this to Internet Explorer - the Connection is not closed and
    a second request with NTLMSSP_AUTH is sent.
    Why doesn't it make the complete NTLM handshake? Why wasn't sent the NTLMSSP_AUTH directly?
    I oriented in the HttpCalculatorWithKerberosOverSslClientExample.
    Using WS_HTTP_HEADER_AUTH_SECURITY_BINDING,
    WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_SCHEME was set to WS_HTTP_HEADER_AUTH_SCHEME_NTLM, WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_TARGET to WS_HTTP_HEADER_AUTH_TARGET_PROXY. I tried WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE but also WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE.
    Any idea?
    Thanks

  • Can't connect to DB via IAS and mod_perl

    We have Oracle 8.1.6 and IAS 1.0 installed (Unix). We can run perl CGI scripts to connect to database using DBI. But we have problems if we run the same script via mod_perl. The script stops after the call "DBI->connect('dns', 'user', 'psw')". DBI track level is set to 3.
    From the dbitrack.log file we have:
    DBI 1.14-nothread dispatch trace level set to 3
    Note: perl is running without the recommended perl -w option
    -> DBI->Apache::DBI::connect(dbi:Oracle:myConStr, myUser, ****)
    -> DBI->install_driver(Oracle) for perl=5.00503 pid=8286 ruid=1002 euid=1002
    No error reported in dbitrack.log and no error returned in the Web server's httds_error_log.
    We have another Web Server that is not part of the IAS. The same script works fine via mod_perl on this server. It can connect to database and return correct information.
    Anybody knows how to have DBI works via IAS and mod_perl?
    Please help.
    Thanks in advance.

    On Thu, 16 Jun 2005 17:21:35 GMT, JeffB wrote:
    > When trying to 'config DB', after I choose it, it jsut waits and waits.
    > I can cancel as it doesn't hang machine. but can't get connected to
    > the DB.
    >
    > any ideas?
    is the database object configured correctly?
    Marcus Breiden
    Please change -- to - to mail me.
    The content of this mail is my private and personal opinion.
    http://www.edu-magic.net

  • Time Capsule connected to internet via ethernet and static IP address

    Hi! I'm at my wits end and getting no help from my IT department. I want to use my Time Capsule to create a wireless network within my office. I can directly connect my TC to the internet via ethernet and an assigned static IP address. However, doing so I'm unable to connect to the internet using the created wireless network on my laptop. I've tried using the bridge option for sharing as well as the "sharing an IP address" and neither configuration is working. any thoughts?

    I have the same setup; my ISP uses static IP only. No probs configuring a LinkSys router but with TC it's not obvious where to plug in the info. Can't ping the TC router via IP address to setup directly like the LinkSys which would be simple. Is the out of box router address really 10.0.1.1 on the LAN side? I want to use the 192.168 sequence and have changed it but still no success as I can't determine where to put the static IP! Can you give me something specific? By the way, it works fine thru the LinkSys router in Bridge mode.
    Thanks,

  • I cannot find the 'WPA passphrase' to connect my printer via wireless and cannot find it in Airport utility (MAC says it cannot find any open airports)

    MAC OS X 10.6.3 - desktop Mac
    I browsed similar questions and saw that someone recommended going to the Airport Utility and then selecting manual set up or something- anyways, it could not find any airports. I have brought my printer from my house as my BF's has died - this is the first time it's asked for a WPA passphrase. We tried a very long series of capital letters and numbers as well as the password for the internet and both times the printer said "invalid passphrase"..... ......

    Airport Utility is for administration of genuine Apple Base Stations. If you have a different Brand, Airport Utility can do nothing for you.
    I think they're using ethernet.
    To connect a Printer via Ethernet, no password is needed.
    We already tried the password for the internet and that did not work...
    If a password is required to connect to the Internet, then WiFi is likley being used, and that WiFi password is the one needed for the Printer connect wirelessly as well.
    What make&model Printer? Is it indeed a Wireless Printer? Most connect via USB, but that would force it to use a specific computer to assist in printing.

Maybe you are looking for

  • How do you get edge lines out of patterns that you create?

    Brand new at Illustrator, forgive the ignorance. I was attempting to experiment with the patterns tutorial, and I cannot seem to get rid of edge lines when creating patterns. Please assist if you can. Examples shown:

  • How can I watch a rented iTunes movie on my Apple TV?

    I tried to: select the movie in iTunes Advanced>Create iPad or Apple TV version The "Create iPad or Apple TV Version" menu is not active. I have Apple TV version 1 iTunes 10.5.2 Thanks for any help, Jimmy

  • How to read files sequentially from FTP adapter

    Hi, My requirement is to read files sequentially based on file name from the FTP server using a ftp adapter in ESB. for example the if the file names are 1001.dat 1000.dat 1002.dat then it should read the files in in the order 1000.dat , 1001.dat and

  • Why cant I install Adobe Premiere Pro CS4/Encore ?

    So a while ago , my encoder for PP stopped working, so I uninstalled everything today, and I re-downloaded the Premiere Pro trial version - but when I install it , after about 3 min it says that it couldnt install Adobe Premiere Pro CS4 & Encore. whe

  • How can I set default values for Allocate Mode in AO config?

    Hi, How can I set default values for allocate mode in AO config. To be specific, in the attached vi, I need to set the Allocate Mode in AO Config to 'Use FIFO Memory (6)' if the value inside my case structure is false and to 'no change (0)' if the va