How to connect sharepoint from sibel ?

Hi,
This is the first time we are connecting to sharepoint from sibel. we do not have much knowledge on that. Also we did not get any article or discussion on this point.
So when we are trying to call sharepoint site from 'sibel application tool' through 'sharepoint webservice', we are getting the below response.
(SBL-BPR-00162)--IDS_EAI_WS_OD_RESPONSE_EXPECTED
PrcExec PropSet 4 0 2010-10-27 19:53:31 Error invoking service 'ListsSoap', method 'GetList' at step 'Call Sharepoint'.(SBL-BPR-00162)
Operation 'GetList' is expecting a response but no response was received.(SBL-EAI-04311)
If anybody has done this , please help.
Thanks in advance.

Have you been successful, we want to do the same. Thanks.

Similar Messages

  • How to connect internet from Toshiba Laptop to Iphone 3G via Bluetooth?

    How to connect internet from Toshiba Laptop to Iphone 3G via Bluetooth?
    I tried to do but i couldn't solve all that kind of matter, so how to do all these?
    If you have any solution then just please help me out.
    Thank You.

    "How to connect internet from Toshiba Laptop to Iphone 3G via Bluetooth?:"
    You don't.
    You can connect iphone to the internet via wi-fi or cellular (3g, edge, gprs) signal.

  • How to connect sharepoint with salesforce Api

    Hi,                                                                                                                                                             
    I have SharePoint 3 installed in my organization.
    also we work with Salesforce .  I would like to connect the SharePoint to the salesforce API.
    the SharePoint should go and bring back data from the salesforce and generated to graphical mode.
    thanks in advance.

    Questions involving the use of APIs are programming ones and go to the Programming forum.
    Moving this there.
    WSS FAQ sites: http://wssv2faq.mindsharp.com and http://wssv3faq.mindsharp.com
    Total list of WSS 3.0 / MOSS 2007 Books (including foreign language) http://wssv3faq.mindsharp.com/Lists/v3%20WSS%20FAQ/V%20Books.aspx

  • How to connect BiqQuery from crystal reports

    How can i connect crystal reports from BigQuery.I have gone through this thread thread/3265149 but here i want to understand how can i get the following credentials :
    Connection URL:
    Database class name :
    Database:
    User Id
    Password
    Please provide any example

    This is the error image

  • How to connect Systems from different server

    Dear All,
    i am trying to do establish the following connection.
    We have a Data services installed on server A and the SAP system is installed on server B. To get connected to both we are using VPN connection. (We are using different link to get connectedto VPNand can not get logged in both simultaneously)
    I am trying now to connect the data services to the sap system but it do not work.
    How to get the connection establish?
    Thank you.
    Pat

    Hi Pat,
    What kind of connection are you trying to establish? Does that other system has to push/fetch data from SAP? What protocol is being used for that?
    Kind regards,
    Mark

  • How to connect SharePoint 2013 and Reporting Server - SQL Server 2008 - in native mode

    Hi,
    We are running Report Server on a SQL Server 2008 environment in NATIVE mode.
    We just installed a SharePoint 2013 environment. The SharePoint roles are installed on a single server and we are using a seperated SQL Server 2012 server.
    The goal: Display reports created on the Report Server in SharePoint 2013.
    The problem: I cannot get the two environments connected.
    I've read a dozen or more blogs but are currently more confused then before.
    What are the steps I need to take to connect the two environments?
    What options do I have in displaying the reports in SP2013 - do the reports need to be on the Reporting Server or can I add them to a document library... or are there other options?
    Thnx!

    Hi Sander,
    Thanks for posting your issue, Have you activated required SharePoint 2013 features in your site collection? also, Install Report builder Model in SharePoint 2013. 
    Kindly browse the below mentioned URL to setup reporting Server step by step 
    Note: In blog, Author has taken SQL SERVER 2012, but you can try the same with SQL SERver 2008
    http://blogs.technet.com/b/ldusolier/archive/2014/05/19/use-of-bi-capabilities-in-sharepoint-2013-with-sql-server-2012.aspx
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • How to connect SharePoint Document Library with Local file system?

    Hi
    I have a SharePoint Document library and in my local system i have 3TB files. It is very difficult to upload 3TB files in SharePoint.
    I want a file details in SharePoint Document Library but physical file would be in local.
    While click the file in Document library. The document should open from local.
    Anyone help me on it.
    Thanks & Regards
    Poomani Sankaran

    Hi,
    your requirement doesn't work out-of-the-box as all data uploaded to SharePoint needs to be stored in SQL database. Thus in your case 3 TB of fileshare would need to move to SQL.
    In case you don't want to go this way, there are 3rd party vendors who offer Software like AvePoint Connector. Products like these use SQL RBS (Storage Externalization API) so that files remain in your file system but metadata is kept in SharePoint. If you
    need more information on that, please let me know.
    Regards,
    Dennis

  • How to connect OracleVM from my localhost

    Hi All,
    I installed OracleLinux Vm on my windows machine.Now i am planning to access that vm through putty.
    What are the settings i need to do ?
    Regards
    Madhu

    I think the "Host-only" adapter deserves to have a little bit more attention. After all it is a very important network adapter in the VirtualBox world, in particular when installing Oracle Databases. For instance, it allows any guest OS to use a fixed or automatic TCP/IP addressing according to the range defined by the VirtualBox "vboxnet" adapter. However, and this is were all documentation I have seen so far were unclear to me, any guest OS installed on the same computer must use the IP address of the "host-only" adapter (192.168.56.1) to connect to services provided by the host OS, instead of the actual or real IP address of the host OS.
    The VirtualBox forum might actually be a more suitable place to discuss VirtualBox setup questions.
    To the original poster: What are you actually trying to accomplish? Do you need to know how to enter an IP address in Putty or how to use it with X Window client software. What is your concern or problem? Please be more specific.

  • How to connect sharepoint online using client object model and authentictae against window login

    Iam developing A console application where in need to connect to sharepoint online and authenticate against window login can u please suggest me the code

    Hi,
    There is couple of helper method to check and validate the SPO credentials in the same solution.
    string userName = GetUserName();
    SecureString pwd = GetPassword();
    /* End Program if no Credentials */
    if (string.IsNullOrEmpty(userName) || (pwd == null))
    return;
    // Open connection to Office365 tenant
    ClientContext cc = new ClientContext(siteUrl);
    cc.AuthenticationMode = ClientAuthenticationMode.Default;
    cc.Credentials = new SharePointOnlineCredentials(userName, pwd);
    if you give incorrect user name or password it will throws an exception in the console.
    Murugesa Pandian.,SharePoint 2010 MCPD | MCTS|Configure

  • How to connect audio from ASUS TV FM Card to SB Audigy 4 Ca

    I haven't installed the ASUS TV FM Card?yet but I see in the manual that it has an onboard connector for audio which can either go to the motherboard or a sound card (2 plugs on leads, one small, white and the other larger and black). In my case it would have to be the sound card as my onboard audio is disabled. I've been trying to find a detailed spec diagram of my audio card so that I can get the installation details into my brain before messing around inside my PC case. Is there a "Line-in JP Audio-input" on this card?Or do I have to connect the ASUS card to the motherboard - question there is will the sound work?Do I need to connect the audio at all with a PCI slotThis is all above my head and I would appreciate any help.Anyone any hints on this please?Message Edited by Ex-Brit on 0-27-200609:00 AM

    The Best solution is to connect the sound directly to the sound card (eventually it gets there anyway ... even if you connect it to the cards audio input)
    depending on what type of connector you have on the TV (SCART/RCA) you`ll need some adapters.
    the one you`ll most probably need is an RCA Audio -> 3.5 Stereo jack adapter.

  • How to use SharePoint Environment to save the text of an image in the DB?

    Hi All,
    I Don't know a lot about the SharePoint Environment, But I wanna that part who is talking about getting an image from a scanner, reading the text in it and save it as a text in the DB.
    Any one can help me about that? or give me a link to learn about what I need in it?
    Note: I'm using Oracle DB 10g.

    I had a few seconds I didnt think Id need again so I googled "connecting sharepoint to oracle" and got the following link for you which list steps how to connect sharepoint to oracle
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomization/thread/8fa4ac8b-7e27-4b8f-ad12-f81d32ba7d2c

  • How can connect to oracle8 server(install in RedHat6.0)

    I have installed Oracle Standard Edition 8.0.5.1
    in RedHat6.0 . Now I can't connect to it with Windows95
    client.
    get an ORA-12500 error.
    1. successful start Oracle use "dbstart"
    2. successful start the LISTENER use "lsnrctl" -- 'start'
    to /home/oracle/805/network/log/listener.log
    Listening on: (ADDRESS=(PROTOCOL=tcp)(DEV=6)
    (HOST=xxx.xxx.xxx.xxx)(PORT=1521))
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=magic.com)(PORT=1521)
    (COMMUNITY=UK_SUP_TCPIP))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for linux ......
    Start Date 23-FEB-98 20:38:50
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security OFF
    SNMP ON
    Listener Parameter
    File /home/oracle/805/network/admin/listener.ora
    Listener Log
    File /home/oracle/805/network/log/listener.log
    Services Summary...
    xoracle has 1 service handler(s)
    The command completed successfully
    LSNRCTL> exit
    null

    Hi Sushama,
    Seeburger AS2 Adapter supports the SFTP using PI
    Have you checked this threads
    Help needed for SFTP on Seeburger
    How to connect SFTP from the XI
    Regards
    Ramesh

  • How to connect to sqlplus through Unix

    Hi ,
    Any body can help me how to connect sqlplus from the shall script(.ksh)
    I am using below command, but nor working
    VAR=`$SQLPLUS -s id/password << EOF
    SQL Query
    EOF`

    790264 wrote:
    Hi ,
    Any body can help me how to connect sqlplus from the shall script(.ksh)
    I am using below command, but nor working
    VAR=`$SQLPLUS -s id/password << EOF
    SQL Query
    EOF`
    bcm@bcm-laptop:~$ ./show_sql.sh
    cat show_sql.sh
    sqlplus user1/user1 << EOF
    spool now.lis
    select sysdate from dual;
    exit
    EOF
    cat now.lis
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Aug 12 18:35:54 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> SQL>
    SYSDATE
    2011-08-12 18:35:54
    SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select sysdate from dual;
    SYSDATE                                                                        
    2011-08-12 18:35:54                                                            
    SQL> exit
    bcm@bcm-laptop:~$

  • I hooked my laptop to my hdtv using vga cable only have video how to connect audio to tv

    how to connect audio from computer to hdtv using vga cable for video.

    Hi:
    You'll have to run a cable from your headphone out jack into your audio in jack on your TV.
    Paul

  • Connecting Remotely from a PC to a Mac

    Can you tell me how to connect remotely from my home PC to my office's Mac server? I need to do it using the internet.

    We need a lot more information to support you here.
    What are you looking at accesing? What technology are you hoping to use?
    Also since this is from MAC it may be limited support in these forums.
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    Blog: http://www.windows-support.co.uk 
    Twitter:   LinkedIn:

Maybe you are looking for

  • Split Edits using Timecode (dashboard) on FCPX 10.0.7 - icons?

    Hi! My FCPX 10.0.7 does not show the "roll edit" or "ripple edit" icon in blue on the timecode dashboard, and just shows blue-ed playhead icon. Because of this when I manually enter on the dashboard frame counts to go forward or back at the time of a

  • Enhancement Pack 2 impact on ESS for ECC 6.0

    We are planning to upgrade one of our systems (evaluation system) from EA-HR 600 to EA-HR 602 (Enhancement Pack 2 SP2) There's some ongoing ESS configurations (just ESS) on this evaluation system. What is the impact of an Enhancement Pack 2 import/up

  • Help required please reinstalling Lightroom Licence 5 on a new Mac.

    I have purchased a new Mac & reinstalled Lightroom 5. However I can not find anywhere to enter my Licence No. The program tells me that I am on a Creative Cloud 30 day trial.  How can I revert to my already paid version as I can't afford to pay a mon

  • Periods of inactivity causes a slow down

    hi all.. we have a websphere 6.1 server and a java application which is a multi thread rmi server (a product from an external supplier), residing on the same aix machine, using the same jdk (NOT jvm off course) , and both are connected to oracle. we

  • Message Queue limited to 64K

    I'm running Solaris 10 (1/06). It seems that that the MSGMNB is limited to only 65535 bytes. The limitation is crippling our IPC processes. Are there are there any known workarounds or fixes? Thanks!