Connection to XDB Repository using FTP

I'm trying to connect to my server from a web browser using the FTP protocol. I can connect giving my login and password but the files doesn't display properly :
?????????? ? ???????? ??????? ???????? ??? ?? ??:?? xdbconfig.xml
When I try to open the file i can't open it because the server has not been found...
This service uses the port 2100 and the listener configuraiton is OK...
Could you give me some advice ??
Thank you very much...
Lionel

What version of XML DB ?.
What Browser ?
What is the database character set ?
What is the client character set ?
Do you have the same problem with a command line ftp client ?
What language is the information in ?

Similar Messages

  • Connecting to XML Repository Using HTTPS?

    Is it possible to use HTTPS to connect to the repository using WebDAV or secure FTP? I can't run a web server using HTTP.
    Thanks,
    Bill

    The following may help... However please note at the moment we have not certified XML DB HTTP with a HTTPS /SSL / TCPS connection. Nor have I tried this myself..
    Please follow the following steps to configure HTTPS:
    1.     Make sure Oracle Advance Security is installed
    a.     It installs by default for Enterprise Edition
    2.     Create and configure a Wallet
    a.     Refer to Oracle Advance Security Administrator�s Guide, Chapter 17 � Using Oracle Wallet Manager, for creating the Wallet
    i.     From $ORACLE_HOME/bin run owm
    b.     Import the trusted certificate in the Wallet
    3.     Configure SSL on the Server
    a.     Refer to Oracle Advance Security Administrator�s Guide, Chapter 7 � Configuring Secure Sockets Layer Authentication
    b.     Follow the steps in Task 3: Configure SSL on the Server, in the Enabling SSL section
    4.     Edit the xdbconfig.xml configuration file to specify http-protocol as tcps
    a.     Locate the <httpconfig> section
    b.     Change the value of <http-protocol> tag from tcp to tcps
    5.     Edit the Database initialization file to start a TCPS dispatcher
    6.     Restart the Database

  • Connection to system REPOSITORY using application REPOSITORY lost.

    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://<host>:<port>/rep/query/int?container=any" with user "USER01". Response code is 401, response message is "Unauthorized".
    USER01 is locked, but i want to change this conection user to PIDIRUSER.
    Do you know where this connection user can be changed?

    Hello there.
    Please check the note below according to your system:
    #999962 - PI 7.10: Change passwords of PI service users
    #936093 - XI 7.0: Changing the passwords of XI service users
    #721548 - XI 3.0: Changing the passwords of the XI service users
    Regards,
    Caio Cagnani

  • Connection to system REPOSITORY using application REPOSITORY lost. Detailed

    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://ECC:50000/rep/query/int?container=any" with user "PIDIRUSER". Response code is 401, response message is "Unauthorized"

    This problem occurs when user is locked. Unlock yhe user in su01.
    unable to access repository / SLD
    See this guide may help you.
    https://www.dw.dhhs.state.nc.us/wi/OnlineGuides/EN/ErrorsEN.pdf
    Rewards if helpful.
    BR,
    Alok

  • While creating connection to MDM repository using MDM JAVA API

    I am getting the following error message:
    Unexpected field type 28
    I am able to debug that this error message is being displayed after executing the following line of code:
    /** Get the Repository schema */
    GetRepositorySchemaCommand repositroySchemaCommand =
    new GetRepositorySchemaCommand(simpleConnection);
    repositroySchemaCommand.setSession(repositorySession);
    repositroySchemaCommand.execute();
    Now can anyone please explain how to resolve this error?
    Thanks in Advance.
    Rajat

    public void getRepositoryConnection(
              java.lang.String hostName,
              java.lang.String repositoryName,
              java.lang.String userId,
              java.lang.String passWord) {
              //@@begin getRepositoryConnection()
              try {
                   if (simpleConnection == null) {
                        simpleConnection =
                             SimpleConnectionFactory.getInstance(hostName);
                        // Establish TCP Connection to the server
                        if (simpleConnection != null) {
                             //                              wdComponentAPI.getMessageManager().reportSuccess("Got Connected");
                             /** Establish a repository session with the respository */
                             //Set the region properties
                             RegionProperties dataRegion = new RegionProperties();
                             /** Set region code for the session */
                             dataRegion.setRegionCode("engUSA");
                             /** Set the locale on data region */
                             dataRegion.setLocale(new Locale("en", "US"));
                             /** Set the name of data region */
                             dataRegion.setName("US");
                             // Createa repository identifier
                             RepositoryIdentifier repositoryID =
                                  new RepositoryIdentifier(
                                       repositoryName,
                                       hostName,
                                       DBMSType.MS_SQL);
                             /** Create the User Session */
                             CreateUserSessionCommand createUserSessionCommand =
                                  new CreateUserSessionCommand(simpleConnection);
                             /** Set the repository identifier (mandatory)*/
                             createUserSessionCommand.setRepositoryIdentifier(
                                  repositoryID);
                             /** Set the region properties for the session (mandatory) */
                             createUserSessionCommand.setDataRegion(dataRegion);
                             createUserSessionCommand.execute();
                             /** Get the session identifier */
                             this.userSession =
                                  createUserSessionCommand.getUserSession();
                             AuthenticateUserSessionCommand authenticateUserSessionCommand =
                                  new AuthenticateUserSessionCommand(simpleConnection);
                             /** Set session identifier (mandatory)*/
                             authenticateUserSessionCommand.setSession(userSession);
                             /** Set id of repository user(mandatory) */
                             authenticateUserSessionCommand.setUserName(userId);
                             /** Set password (mandatory)*/
                             authenticateUserSessionCommand.setUserPassword(passWord);
                             /** Establish the session */
                             authenticateUserSessionCommand.execute();
                             SetUnicodeNormalizationCommand unicodeNormalizationCommand =
                                  new SetUnicodeNormalizationCommand(simpleConnection);
                             unicodeNormalizationCommand.setSession(userSession);
                             unicodeNormalizationCommand.setNormalizationType(
                                  SetUnicodeNormalizationCommand.NORMALIZATION_COMPOSED);
                             unicodeNormalizationCommand.execute();
                             CreateRepositorySessionCommand repositorySessionCommand =
                                  new CreateRepositorySessionCommand(simpleConnection);
                             /** Set the repository identifier */
                             repositorySessionCommand.setRepositoryIdentifier(
                                  repositoryID);
                             /** Obtain repository session */
                             repositorySessionCommand.execute();
                             /** Store the session id into the variable repositorySession */
                             this.repositorySession =
                                  repositorySessionCommand.getRepositorySession();
                             /** Authenticate the users session */
                             AuthenticateRepositorySessionCommand authenticatedRepositorySession =
                                  new AuthenticateRepositorySessionCommand(simpleConnection);
                             /** set the session id */
                             authenticatedRepositorySession.setSession(
                                  repositorySession);
                             /** set id of the repository user */
                             authenticatedRepositorySession.setUserName(userId);
                             /** set password */
                             authenticatedRepositorySession.setUserPassword(passWord);
                             authenticatedRepositorySession.execute();
                             /** Get the Repository schema */
                             GetRepositorySchemaCommand repositroySchemaCommand =
                                  new GetRepositorySchemaCommand(simpleConnection);
                             repositroySchemaCommand.setSession(repositorySession);
                             repositroySchemaCommand.execute();
                             this.schema = repositroySchemaCommand.getRepositorySchema();
              } catch (Exception e) {
                   wdComponentAPI.getMessageManager().reportException(
                        e.getMessage(),
                        true);
              //@@end

  • Fetching session names from repository using Informatica SDK

    Hi guys, I'm using the Informatica SDK to create a java application that accesses the Informatica repository. I'm having a bit of an issue while trying to fetch the names of already created sessions from the Informatica Repository. I'm able to connect to the repo without any issues and have been able to add sources, targets, mappings, sessions, workflows, etc... and save them directly afterwards. However, when I try to fetch the session names from a folder in the repository, I get the following error: Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Running the pmrep process in the working directory: [C:\Informatica\9.6.1\clients\PowerCenterClient\client\bin].Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Running the command [listobjects -o session  -f "TechOps" -s .].Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Running the command [exit].Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 Parsing the output of the ListObjects command for each folder.Mon Jul 27 15:03:01 PDT 2015  Severity:DEBUG  ThreadID:14 The following errors occurred while running the ListObjects command: [Failed to read repository connection information. Please first connect to the repository using the connect command.Failed to execute listobjects.].The following errors occurred while running the ListObjects command: [Failed to read repository connection information. Please first connect to the repository using the connect command.Failed to execute listobjects.].com.informatica.powercenter.sdk.mapfwk.exception.RepoOperationException: The following errors occurred while running the ListObjects command: [Failed to read repository connection information. Please first connect to the repository using the connect command.Failed to execute listobjects.].at com.informatica.powercenter.sdk.mapfwk.core.Folder.fetchSessionNamesFromRepository(Unknown Source)at com.informatica.powercenter.sdk.mapfwk.core.Folder.fetchSessionNamesFromRepository(Unknown Source)at com.mars.Main.main(Main.java:170) This doesn't really make sense to me as I'm able to connect to the repo fine to add and save changes. Here's my code for fetching: // Create a list of session names and store the namesList<String> sessionNames = null;try {      sessionNames = folder.fetchSessionNamesFromRepository();} catch (RepoOperationException e) {      // TODO Auto-generated catch block      e.printStackTrace();} catch (MapFwkReaderException e) {      // TODO Auto-generated catch block      e.printStackTrace();} // Print the list of session namesfor (int i = 0; i < sessionNames.size(); i++) {System.out.println("Session " + i + " is " + sessionNames.get(i));} I've confirmed that the folder object works fine as I can add and save other objects to that folder in the repo. The other thing is that if I go to the Informatica path on my drive and run the pmrep command followed by the command for fetching session names, it works fine. Any help on this would be greatly appreciated. Thanks

    Hi Shruti,
    Instead of doing the following when setting the font attributes:
    FontImpl fnt = (FontImpl)res.getFont();
    fnt.getDecoration().setTextColor(c1);
    res.setFont(fnt);
    Try doing this instead:
    res.getAttributes().setForeground(c1);
    res.getFont().setSize(10);
    Hope this helps.
    Regards,
    Dan

  • ODI11g - Suddenly unable to connect to work repository

    I am suddently receiving the following error when attempting to connect to work repository using client (have tried running the client from odi/database server with same issue). I can successfully connect to database using jdbc connection string from SQL Developer, and also can successfully connect to the work repository using odiconsole port. Any ideas?
    oracle.odi.core.config.WorkRepositoryResourceFailureException: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: Cannot get Connection from Datasource
         at oracle.odi.core.repository.Repository.getWorkRepository(Repository.java:150)
         at oracle.odi.core.OdiInstance.createWorkRepository(OdiInstance.java:512)
         at oracle.odi.core.OdiInstance.<init>(OdiInstance.java:565)
         at oracle.odi.core.OdiInstance.createInstance(OdiInstance.java:529)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.testConnection(SnpsDialogLoginDetail.java:1567)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.jButtonTest_ActionPerformed(SnpsDialogLoginDetail.java:1247)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.connEtoC6(SnpsDialogLoginDetail.java:340)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.access$5(SnpsDialogLoginDetail.java:336)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail$IvjEventHandler.actionPerformed(SnpsDialogLoginDetail.java:176)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6041)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5806)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4413)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2440)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:177)
         at java.awt.Dialog$1.run(Dialog.java:1045)
         at java.awt.Dialog$3.run(Dialog.java:1097)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:1095)
         at java.awt.Component.show(Component.java:1422)
         at java.awt.Component.setVisible(Component.java:1375)
         at java.awt.Window.setVisible(Window.java:806)
         at java.awt.Dialog.setVisible(Dialog.java:985)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.snpsInitializeDisplayAll(SnpsDialogLoginDetail.java:1475)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.snpsInitialize(SnpsDialogLoginDetail.java:1421)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.initialize(SnpsDialogLoginDetail.java:1096)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.<init>(SnpsDialogLoginDetail.java:230)
         at com.sunopsis.graphical.dialog.SnpsDialogLoginDetail.<init>(SnpsDialogLoginDetail.java:208)
         at oracle.odi.ui.LoginFactory.createLoginDetailDialog(LoginFactory.java:218)
         at oracle.odi.ui.LoginFactory.modifyLogin(LoginFactory.java:378)
         at com.sunopsis.graphical.dialog.SnpsDialogLogin.jToolBarButtonEdit_ActionPerformed(SnpsDialogLogin.java:820)
         at com.sunopsis.graphical.dialog.SnpsDialogLogin.connEtoC2(SnpsDialogLogin.java:191)
         at com.sunopsis.graphical.dialog.SnpsDialogLogin$IvjEventHandler.actionPerformed(SnpsDialogLogin.java:122)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.Component.processMouseEvent(Component.java:6041)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5806)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4413)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2440)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:177)
         at java.awt.Dialog$1.run(Dialog.java:1045)
         at java.awt.Dialog$3.run(Dialog.java:1097)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:1095)
         at java.awt.Component.show(Component.java:1422)
         at java.awt.Component.setVisible(Component.java:1375)
         at java.awt.Window.setVisible(Window.java:806)
         at java.awt.Dialog.setVisible(Dialog.java:985)
         at com.sunopsis.graphical.dialog.SnpsAbstractDialog.setVisible(SnpsAbstractDialog.java:299)
         at oracle.odi.ui.OdiConnectController.handleEvent(OdiConnectController.java:114)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
         at oracle.odi.ui.docking.AbstractOdiDockableWindow$1.actionPerformed(AbstractOdiDockableWindow.java:203)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.Component.processMouseEvent(Component.java:6041)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5806)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4413)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2440)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: Cannot get Connection from Datasource
         at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:82)
         at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:524)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:588)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:613)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:645)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:111)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:121)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:136)
         at oracle.odi.core.repository.support.RepositoryUtils$RepositoryInfoSource.loadRepositoryInfo(RepositoryUtils.java:179)
         at oracle.odi.core.repository.support.RepositoryUtils.loadWorkRepositoryInfo(RepositoryUtils.java:379)
         at oracle.odi.core.repository.Repository.getWorkRepository(Repository.java:148)
         ... 112 more
    Caused by: java.sql.SQLException: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: Cannot get Connection from Datasource
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.doGetConnection(LoginTimeoutDatasourceAdapter.java:133)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.getConnection(LoginTimeoutDatasourceAdapter.java:62)
         at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:113)
         at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:79)
         ... 122 more
    Caused by: java.sql.SQLException: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: Cannot get Connection from Datasource
         at oracle.ucp.util.UCPErrorHandler.newSQLException(UCPErrorHandler.java:541)
         at oracle.ucp.jdbc.PoolDataSourceImpl.throwSQLException(PoolDataSourceImpl.java:587)
         at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:668)
         at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:613)
         at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:607)
         at sun.reflect.GeneratedMethodAccessor79.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.odi.core.datasource.support.RuntimeClassLoaderDataSourceCreator$DataSourceInvocationHandler.invoke(RuntimeClassLoaderDataSourceCreator.java:41)
         at $Proxy0.getConnection(Unknown Source)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter$ConnectionProcessor.run(LoginTimeoutDatasourceAdapter.java:217)
         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.ucp.UniversalConnectionPoolException: Cannot get Connection from Datasource
         at oracle.ucp.util.UCPErrorHandler.newUniversalConnectionPoolException(UCPErrorHandler.java:421)
         at oracle.ucp.util.UCPErrorHandler.newUniversalConnectionPoolException(UCPErrorHandler.java:389)
         at oracle.ucp.jdbc.DriverConnectionFactoryAdapter.createConnection(DriverConnectionFactoryAdapter.java:133)
         at oracle.ucp.common.UniversalConnectionPoolImpl$UniversalConnectionPoolInternal.createOnePooledConnectionInternal(UniversalConnectionPoolImpl.java:1570)
         at oracle.ucp.common.UniversalConnectionPoolImpl$UniversalConnectionPoolInternal.access$600(UniversalConnectionPoolImpl.java:1378)
         at oracle.ucp.common.UniversalConnectionPoolImpl.createOnePooledConnection(UniversalConnectionPoolImpl.java:445)
         at oracle.ucp.common.UniversalConnectionPoolImpl.borrowConnectionWithoutCountingRequests(UniversalConnectionPoolImpl.java:302)
         at oracle.ucp.common.UniversalConnectionPoolImpl.borrowConnection(UniversalConnectionPoolImpl.java:129)
         at oracle.ucp.jdbc.JDBCConnectionPool.borrowConnection(JDBCConnectionPool.java:119)
         at oracle.ucp.jdbc.PoolDataSourceImpl.getConnection(PoolDataSourceImpl.java:655)
         ... 14 more
    Caused by: java.sql.SQLException: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:480)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:413)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:508)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:203)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:510)
         at oracle.ucp.jdbc.DriverConnectionFactoryAdapter.createConnection(DriverConnectionFactoryAdapter.java:129)
         ... 21 more
    Caused by: oracle.net.ns.NetException: The Network Adapter could not establish the connection
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:328)
         at oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:421)
         at oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:634)
         at oracle.net.ns.NSProtocol.connect(NSProtocol.java:208)
         at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:966)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:292)
         ... 26 more
    Caused by: java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:519)
         at java.net.Socket.connect(Socket.java:469)
         at java.net.Socket.<init>(Socket.java:366)
         at java.net.Socket.<init>(Socket.java:180)
         at oracle.net.nt.TcpNTAdapter.connect(TcpNTAdapter.java:127)
         at oracle.net.nt.ConnOption.connect(ConnOption.java:126)
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:306)
         ... 31 more

    The issue was resolved by Oracle Support:
    1. Create from ODI Studio a new login connection only to the Master Repository
    2. Once successfully connected, select from the left hand side tree the 'Repositories panel'
    3. Drill down to Work Repositories
    4. Double click on the Repository to edit it.
    5. Right above the Definition there is a button (that looks like an electrical plug), for the Connection. Click it
    6. A new window opens where one can see the Definition again, and right below the JDBC. Click that one, and provide the right server information.

  • Ftp and http access over XDB repository is not allowed...

    When I try to execute the following command on a reasonably fresh Oracle 11 installation:
    insert into "XMLTEST" ( "name", "xmlfof" ) values ( 'small', DBMS_XDB.GETCONTENTXMLTYPE('/public/small.xml') );
    -- The schema is correctly registered, the file "small.xml" is in the /public repository folder, the user has every conceivable role and priviledge
    -- http access works fine from a remote location, tried to execute the command on the server and from remote system...
    I get the following error message:
    ORA-31020: Der Vorgang ist nicht zulässig, Ursache: For security reasons, ftp and http access over XDB repository is not allowed on server side ORA-06512: in "XDB.DBMS_XDB", Zeile 1915
    Searching for an answer on the forum didn't produce any concreate explanation... Does anyone have any idea how to solve this problem?

    As it turns out, the XML file contained a reference to a DTD at an external web-site, which caused the problem - it was identical to that described here:
    Re: ORA-31020 when using XML with external DTD or entities
    After removing the reference, everything works perfectly...

  • Transfering .csv file from SAP to NON-SAP using FTP connection

    Dear All,
    I am able to place the .CSV file successfully to other system using FTP connection, but when i open the file I could see the gaps between each record. I mean 1st line with the 1st record and 2nd line having a GAP and 3rd line with the 2nd record and so ..on as shown below
    1     1/1/2009     0     41000027
    2     1/1/2009     0     41000027
    3     1/1/2009     0     41000027
    I have declared an internal table as below
    TYPES: BEGIN OF ty_charlist,
             line(5000) type c,
           END OF ty_charlist.
    DATA:  w_charlist TYPE ty_charlist,
                 t_charlist TYPE TABLE OF ty_charlist.
    And concatenating each field seperated by ','
    CONCATENATE  res1 res2 res3 res4 res5 res6 res7 res8 res9 res10 res11 res12 res13 res14 res15 res16 res17 res18 res19  res20 res21 res22 res23 res24 res25 res26 res27 res28 res29 res30 res31 res32 res33 res34 res35 res36 res37 res38 res39
    INTO w_charlist-line SEPARATED BY ','.
    APPEND w_charlist TO t_charlist.
    Now T_CHARLIST contains 50 records which needs to be placed on other system. I can see 50 records but gap is coming
    Here res1, res2 and so on are declared as TYPE STRING..
    Please do help me this issue
    Thanks
    Prava

    Hello dprava ,
    Try to be assisted with these examples .
    1. [http://wiki.sdn.sap.com/wiki/display/ABAP/FTPfiletransferinBackground]
    2. [Reg: FTP Connection; - SAP examples programs
    Thank you,
    Boaz

  • How to send multiple files in parallel using ftp with single connection

    Hi.
    i have written code for file upload manager using ftp..
    it perfectly working with sequence file uploading in single connection..
    And i tried to upload multiple files with parallel processing in a single connection.... but it is not working properly.. i also used thread concept
    but single file only transfered and connection refused...
    my code here...
    //////////////////// main class //////////////////////////////////////////
    ftp.connect();
    ftp.login();
    String [] archivos = new  String[100];
                                      File dir = new File("C:\\Files Uploading\\");
                                       archivos = dir.list();
                                       for (int s=0; s<archivos.length;s++)
         //Start Data Transfer Here
         new DataTransfer(archivos[s]).start();
                                       Thread.sleep(1000);
    /////////////////////// thread class ////////////////////////////////
    class DataTransfer extends Thread
          String FileName="";
          String LocalPath="",RemotePath="";
           public DataTransfer(String fname)
         FileName = fname;
         LocalPath = "C:\\Files Uploading\\" + FileName;
         RemotePath = FileName;
         System.out.println(LocalPath);          
            public void run()
                        System.out.println("DataTransfer Started");
         /File Transfer Here
         try
               FileInputStream input = new FileInputStream(LocalPath);
                               Ftp_Client.storeFile(RemotePath,input);
         System.out.println("Successfully sent : " + RemotePath);
         catch (Exception exc)
              System.out.println(exc.getMessage());
              System.out.println("DataTransfer Ended");
         }otherwise tell me any other alternate way

    And i tried to upload multiple files with
    parallel processing in a single connection....
    but it is not working properly.FTP isn't a multiplexing protocol. How could it work at all?

  • Connecting to existing TFS 2012 repository using SSDT 2012

    I am trying to connect to an existing TFS 2012 repository using SSDT 2012 (Visual Studio 2010 Shell). I already have Visual Studio 2013 Professional Edition installed, but I am still not seeing any options other than "None" for the Plug-In Selection
    dropdown in the Source Control part of the options menu.
    Am I missing something in the SSDT documentation that explains how to do this?

    I have attached the results of pressing the "Copy Info" button in the about section when I open SQL Server Data Tools at the bottom of this response.
    I was able to fix the issue by installing Visual Studio 2010 Team Explorer.
    Microsoft Visual Studio 2010
    Version 10.0.40219.1 SP1Rel
    Microsoft .NET Framework
    Version 4.5.50938 SP1Rel
    Installed Version: IDE Standard
    Microsoft Visual Basic 2010   01011-532-2002361-70265
    Microsoft Visual Basic 2010
    Microsoft Visual C# 2010   01011-532-2002361-70265
    Microsoft Visual C# 2010
    Microsoft Visual Studio 2010 Team Explorer   01011-532-2002361-70265
    Microsoft Visual Studio 2010 Team Explorer
    Microsoft Visual Studio Tools for Applications 3.0   01011-532-2002361-70265
    Microsoft Visual Studio Tools for Applications 3.0
    Microsoft Visual Web Developer 2010   01011-532-2002361-70265
    Microsoft Visual Web Developer 2010
    SQL Server Analysis Services  
    Microsoft SQL Server Analysis Services Designer
    Version 11.0.5058.0
    SQL Server Integration Services  
    Microsoft SQL Server Integration Services Designer
    Version 11.0.5058.0
    SQL Server Reporting Services  
    Microsoft SQL Server Reporting Services Designers
    Version 11.0.5058.0
    Visual Studio 2010 Shell (Integrated) - ENU Service Pack 1 (KB983509)   KB983509
    This service pack is for Visual Studio 2010 Shell (Integrated) - ENU.
    If you later install a more recent service pack, this service pack will be uninstalled automatically.
    For more information, visit http://support.microsoft.com/kb/983509.

  • If I can connect using remote desktop, does it mean I can connect using ftp?

    Hello everyone, I have a question about connection using ftp.
    Normally when I want to connect through ftp, everything is provided such as the ftp name and username and password by my hosting service. But now I don't have all these details about a local server in my company office because the server is actually not hosting
    any sites. It's just a server where documents are stored.
    But I need a way to connect to this server through my web application.
    All I know are:
    It is possible to connect through remote desktop to that server
    There is an ip address for that server ( The server machine is in my company office)
    I have a username and password that allows me to access network drive on that server (I can do this only by directly plugging the cat5 cable to my laptop)
    When I configure my outlook email using microsoft exchange server, this is how my settings look like (example.net.au is just for example sake):
    Server: server1.example.net.au
    User name: [email protected]
    Does the ftp detail exist for this server? How do I find out?

    Thanks for the reply, Dave. The problem is the admin is not working here anymore. I wonder if there is a way i could figure that out. Out of curiosity how do ftp details created? If I want to set up FTP details from scratch, what do I need? 
    Thanks
    you need to ask anyone from your company who is familiar in your IT infrastructure.
    starting FTP from scratch, is okay but security is one thing.
    you might end up an FTP server that is free or open to the internet, make sure you exactly know what you are doing.
    even though there's a lot of guide on the internet, make sure also you understand what you are following in the guide.
    Please check with someone who is quite familiar on this kind of things.
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • Dreamweaver (on Windows 7) wont connect to IIS (v7) Server using "FTP over SSL/TLS..."

    I am evauating wether to purchase Dreamweaver CS6...
    Dreamweaver CS6 trial (on Windows 7) wont connect to IIS (v7) Server using "FTP over SSL/TLS (explicit encryption)".  I have a NEW Godaddy SSL certificate installed on the IIS server. 
    On connecting Dreamweaver states: "Server Certificate has expired or contains invalid data"
    I have tried:
    -ALL the Dreamweaver Server setup options
    -Using multiple certificates (tried 2048 bit and 4096 bit Godaddy SSL certificates)
    -Made sure the certificate 'issued to' domain name matches my domain name.
    I am able to connect no problem using Filezilla, with equivalent Filezilla setting "Require explicit FTP over TLS".  I can also connect fine using Microsoft Expression web. 

    Thanks for your prompt reply.
    My comments:
    1) You should update your tread (forums.adobe.com/thread/889530) to reflect that it still occurs on CS6 (I had already read it but figured it was an old tread and thus should be fixed by now). 
    2) You said “These warnings will also pop up for your users if you have a store saying the SSL certificate does not match the domain/ip and this can make users checking out in a storefront very nervous” .  This does not seem to be correct – my https pages display properly using the same Godaddy certificate … using IE:
    3) Godaddy is not my host (I use Amazon AWS) – but the SSL certificate is from them.

  • Unable to connect CMS repository using CMIS configuration for P6

    Hello All,
    After providing required configuration of CMIS, I am unable to connect to Documentum CMS repository using CMIS. Getting following error.
    Apr-14-2015 08:03:09 999
    [ACTIVE]       ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    ERROR
    com.primavera.infr.srvcs.cr.UniversalContentRepositoryImpl
    Unable to initialize repository
    com.primavera.ucr.UniversalContentRepositoryException: Unable to       retrieve repository dev_general
         at       com.primavera.ucr.cmis.CmisContentRepositoryImpl.init(Unknown Source)      
         at       com.primavera.infr.srvcs.cr.UniversalContentRepositoryImpl.init(Unknown       Source)
         at       sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)      
         at       sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)      
         at       sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)      
         at       java.lang.reflect.Method.invoke(Method.java:597)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1414)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1375)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)      
         at       org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)      
         at       org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)      
         at       org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)      
         at       org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)      
         at       com.primavera.bre.SubSystemInitializerImpl.init(Unknown Source)      
         at       com.primavera.infr.db.SQLConnectionPoolMgrImpl.c(Unknown Source)      
         at       com.primavera.infr.db.SQLConnectionPoolMgrImpl.getDataSource(Unknown       Source)
         at       com.primavera.bo.services.helper.AutoStarterService.init(Unknown Source)      
         at       sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)      
         at       sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)      
         at       sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)      
         at       java.lang.reflect.Method.invoke(Method.java:597)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1414)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1375)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)      
         at       org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)      
         at       org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)      
         at       org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)      
         at       org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)      
         at       org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)      
         at       org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)      
         at       com.primavera.bre.Initializer.start(Unknown Source)      
         at       com.primavera.bre.Application.start(Unknown Source)      
         at       com.primavera.pvweb.listeners.PVContextListener.contextInitialized(Unknown       Source)
         at       weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)      
         at       weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)      
         at       weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)      
         at       weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)      
         at       weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1870)      
         at       weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)      
         at       weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)      
         at       weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)      
         at       weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)      
         at       weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)      
         at       weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)      
         at       weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)      
         at       weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)      
         at       weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)      
         at       weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)      
         at       weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)      
         at       weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)      
         at       weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)      
         at       weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)      
         at       weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)      
         at       weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)      
         at       weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)      
         at       weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)      
         at       weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)      
         at       weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)      
         at       weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)      
         at       weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)      
         at       weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)      
         at       weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)      
         at       weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)      
         at       weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)      
         at       weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)      
         at       weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)      
         at       weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)      
         at       weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)      
         at       weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Apr-14-2015 08:03:55 172
    [ACTIVE]       ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    ERROR
    com.primavera.infr.srvcs.cr.UniversalContentRepositoryImpl
    Unable to login to content repository: null
    java.lang.NullPointerException
         at       com.primavera.ucr.cmis.CmisContentRepositoryImpl.login(Unknown Source)      
         at       com.primavera.infr.srvcs.cr.UniversalContentRepositoryImpl.login(Unknown       Source)
         at       com.primavera.bre.SubSystemFacadeImpl.login(Unknown Source)      
         at       com.primavera.bo.remotable.ContentManagement.login(Unknown Source)      
         at       com.primavera.bo.remotable.qproxy.ContentManagement.login(Unknown Source)      
         at       com.primavera.bo.DBContentManagement.login(Unknown Source)      
         at       com.primavera.bo.common.LoginHelper.login(Unknown Source)      
         at       com.primavera.bo.common.LoginHelper.login(Unknown Source)      
         at       com.primavera.bo.remotable.SessionLifetime.login(Unknown Source)      
         at       com.primavera.bo.remotable.qproxy.SessionLifetime.login(Unknown Source)      
         at       com.primavera.bo.DBSessionLifetime.login(Unknown Source)      
         at       com.primavera.pvweb.main.login.LoginDelegate.login(Unknown Source)      
         at       com.primavera.pvweb.main.login.LoginAction.login(Unknown Source)      
         at       sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)      
         at       sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)      
         at       sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)      
         at       java.lang.reflect.Method.invoke(Method.java:597)      
         at       org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:270)      
         at       org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:187)      
         at       org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)      
         at       com.primavera.pvweb.FrontRequestProcessor.processActionPerform(Unknown       Source)
         at       org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)      
         at       org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)      
         at       org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)      
         at       com.primavera.pvweb.servlet.FrontController.doPost(Unknown Source)      
         at       javax.servlet.http.HttpServlet.service(HttpServlet.java:727)      
         at       javax.servlet.http.HttpServlet.service(HttpServlet.java:820)      
         at       weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)      
         at       weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)      
         at       weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)      
         at       weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)      
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       com.primavera.pvweb.GZIPFilter.doFilter(Unknown Source)      
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       com.primavera.pvweb.XSSFilter.doFilter(Unknown Source)      
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       com.primavera.pvweb.FrontFilter.doFilter(Unknown Source)      
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       com.primavera.pvweb.filters.ApplicationContextInjector.doFilter(Unknown       Source)
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       com.primavera.pvweb.DisableURLEncodingFilter.doFilter(Unknown Source)      
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)      
         at       weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)      
         at       weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)      
         at       weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)      
         at       weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)      
         at       weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)      
         at       weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)      
         at       weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)      
         at       weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)      
         at       weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)      
         at       weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    please provide a screenshot from P6 administrator with the settings you set to integrate with a content repository

  • Connecting to Solaris... and using ftp command .....

    Hi all,
    actually i want to put file on another machine and operating system is solaris through ftp below is the code i have written but it shows
    -bash-3.00# java NewClass2
    /bin
    Name (IP:root): Login incorrect.
    ?Invalid command
    Please login with USER and PASS.
    Please login with USER and PASS.
    Please login with USER and PASS.
    try
    File wd = new File("/bin");
    System.out.println(wd);
    Process proc = null;
    try {
       proc = Runtime.getRuntime().exec("/bin/bash", null, wd);
    catch (IOException e) {
       e.printStackTrace();
    if (proc != null) {
       BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
       PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(proc.getOutputStream())), true);
       out.println("cd /export");
       out.println("ftp ip");
       out.println("user");
       out.println("password");
       out.println("cd /dir");
       out.println("put file");
       out.println("quit");
       out.println("rm -rf file");
       out.println("exit");
    try {
          String line;
          while ((line = in.readLine()) != null) {
             System.out.println(line);
          proc.waitFor();
          in.close();
          out.close();
          proc.destroy();
       catch (Exception e) {
          e.printStackTrace();
    }

    i have written this code now i just need to write put command in the commented area
    please give me some hint..
    public class FtpTest {
    public static void main(String[] args) throws SocketException, IOException
        FTPClient ftp = new FTPClient();
        try {
           String userName = "user";
           String password = "password";
        String folder = "/dir";
          int reply;
          String server  = "ip";
          ftp.connect("ip");
          ftp.login(userName, password);
          System.out.println("Connected to " + server + ".");
          System.out.print(ftp.getReplyString());
          reply = ftp.getReplyCode();
          if(!FTPReply.isPositiveCompletion(reply)) {
            ftp.disconnect();
            System.err.println("FTP server refused connection.");
            System.exit(1);
      ftp.changeWorkingDirectory(folder);
    FTPFile[] files = ftp.listFiles();
    System.out.println("Number of file in dir: " +files.length );
    Here i want to run put command.
    which will put a file on server from where i am running code.
    for(int i=0; i<files.length; i++)
      System.out.println("file Name : "+ files.getName() );
    ftp.logout();
    System.out.println("LogOut Successfully");
    } catch(IOException e) {

Maybe you are looking for

  • Path selection issue

    Hi All I got issue in adding Form actions (ex:- Table test, Text matching test ) in my Oracle Forms and report product. It is not selecting the Path.. Can any one suggest why the Path is not selecting ...? Appreciate your feed back. Regards, Sairam

  • My macbook pro keeps crashing

    My macbook crash, airport card turns off or both happens. I upgrade to lion that didn't help. Jun 4 15:18:43 jeffs-MacBook-Pro loginwindow[50]: Login Window - Returned from Security Agent Jun 4 15:18:44 jeffs-MacBook-Pro loginwindow[50]: USER_PROCESS

  • Apple Remote Desktop serial number never memorized

    I just installed Apple Remote Desktop on a new computer. Here are my versions: – MacOS X 10.6.4; – ARD 3.3.2. Everytime I start ARD, my "Name:" and "Organization:" fields are as correctly filled as I did it on the first time. But the field "Serial Nu

  • Servlet does not load on startup

    Hi Guys,           I'm tryin to load a servlet on startup ..           Tryin to follow what the doc say but i get this error           in the server logs which means that the servlet is not found           Any help wud be greatly appritiated ...     

  • Delete "To be posted" entries from FEBA

    Hi, I a bank statement, there are 12 entries, out of which 9 entries shows : POSTED 3 entries shows: TO BE POSTED. I want to delete the 3 to be posted entries as they have been taken up wrongly..... How can that be done?