URL to XI connectivity

Hello Friends,
Case: I want that sender sends a data as a part of the URL and based on the value, XI does some processing and returns the information back.
Is it possible for me to incorporate the above case through the XI ?
Thanks for all your help,
Pranav

Hi VJ,
Thanks for your response.
I have gone through the following post HTTP Adapter-Specific Message Attributes
and to me it seems that its not possible to read the parameter from the URL for the processing.  For me the requirement is like : if the URL contains something like https://abcXIbox.com......?data1='JOHN'
I want to do some processing in XI, based on the data1 value, which is "JOHN" in the above case.
Can you(anyone) throw some more light on this please?
Thanks,
Pranav

Similar Messages

  • No redirection to different url upon http connections limit exceeded

    Hi,
    As of Standalone OC4j 10.1.2, if you want messages to be redirected to a different URL when the maximum connections limit is reached, you would include the HTTP redirect URL to max-http-connections tag inside server.xml.
    <max-http-connections max-connections-queue-timeout="120" socket-backlog="50"
    value="100">http://optional.redirect.url/page.jsp</max-http-connections>
    I have a standalone OC4j 10.1.3, and would like to be able to redirect to different URL when maximum connections limit is reached but the above max-http-connections does not work and I am not redirected to different URL when maximum connectionns limit is reached. I read user guide of OC4j 10.1.3 and there is no mentioning of max-http-connections at all. In there, they talk about limiting concurrency via http thread pool but there is no discussion as to the mechanism of redirecting users to a different URL where I can display a user friendly message to say "Server is busy, please try again later..." instead of browser display a message "Page cannot be displayed"..
    Please advice,
    Thanks

    Any thoughts on above issue ? please help.
    thanks
    Sam

  • How do you detect url redirects when connecting to a URL

    how do you detect url redirects when connecting to a URL?
    Thanks in advance
    stev

    Hai
    (i) If it a jsp we can get the URL by request object.
    Like
    String url = request.getHeader("Referer");
    u can do it in Servlet aslo by request object variable.
    If this explanation is not ok, Explain ur doubt in more briefed Manner

  • Decompile applet and proxify all URL and socket connection and recompile

    Hi,
    Please anybody have idea for the below.
    I need to decomple the applet class file to .java file and need to change all URL and Socket connection to proxify all connections from applet. and recompile the sample applet to make ready to load in browser.
    Thi is to load the applet form the web server through one proxy server. In the proxy server side While loading the applet from web server that applet code need to be changed to modify the URL and connections used in that applet to change the further connection from applet through proxyserver.
    Compile and decompile is not a problem that i can use javac and javap respectively.
    But I want to know how to change all URL and connection in applet. is there any easy way to handle this with out changing the applet code.
    can Anybody help me.
    Thanks and Regards,
    Shiban.

    Not sure how you do that:
    Client <----[HTTPS]-----> Secure Gateway <------[HTTP]------->Web servers
    or
    Internet Explorer/Mozilla <----[HTTPS]-----> proxy <------[HTTP]-------> Google
    Is the above correct?
    If so than what are the proxy settings in IE/Moz, I can specify the proxy address in the
    browsers but not the proxy type (SSL).
    When you want to visit a page like google I gues you just type http://www.google.com in
    the browsers address bar. The browser will figure out how to connect to the proxy.
    Java has got the control panel in the general tabl there is a button "network settings...:"
    I have it to "use browser settings" and this works for me.
    All URL and URLConnections work but the sockets don't (maybe put in a bug report)
    for example games.yahoo.com -> card games -> bridge -> create table
    In the trace I can see:
    network: Connecting http://yog70.games.scd.yahoo.com/yog/y/b/us-t1.ldict with proxy=HTTP @ myproxy/00.00.00.00:80
    network: Connecting socket://yog70.games.scd.yahoo.com:11999 with proxy=DIRECT
    The second one fails because port 11999 is not open (what idiot uses an unassigned
    port for a profesional site is beyond me).
    http://www.iana.org/assignments/port-numbers
    #               11968-11999 Unassiged
    Even if the port was open on the proxy you'll notice with proxy=DIRECT that
    "use browser settings" does not work with socket (bug report??).
    Anyway my advice is to open the java console (windows control panel or javacpl.exe in
    the bin dir of java.home) and make sure it is set to "use browser settings"
    Then enable a full trace:
    To turn the full trace on (windows) you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    if you cannot start the java console check here:
    C:\Documents and Settings\userName\Application Data\Sun\Java\Deployment\deployment.properties
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    add or change the following line:
    javaplugin.jre.params=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    for 1.5:
    deployment.javapi.jre.1.5.0.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    Print out the full trace of the exception:
    try{...}catch(Exception e){e.printStackTrace();}
    Then visit the games.yahoo and try to create a new table playing bridge.
    Inspect the trace and see if it works/why it doesn't work.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Web Services URL - Live office connection

    Hi,
    When I try to give the web service URL as
    http://<Server>:<Port>/dswsbobje/services/Session
    I get a error saying unable to connect to the server. Any thoughts?
    Thanks,
    Hema

    Hi,
    wgich Version of BO on which OS ?
    try
    http://server.domain.com:port/dswsbobje/services/session
    This is without a capital "S" from "session"
    Regards
    -Seb.

  • How do build URL in jdbc connection?

    I am doing one program in java.
    I created a database in Microsoft sql server 2005.
    In jdbc connection ,They need a URL but i don't know how do build a URL....
    so ,please give the source code for build a URL...
    and also give one example for jdbc connection using MSsql server 2005...

    Arun02006 wrote:
    I am doing one program in java.
    I created a database in Microsoft sql server 2005.
    In jdbc connection ,They need a URL but i don't know how do build a URL....You don't "build" a URL; it's just a String with a required content.
    so ,please give the source code for build a URL...Look in the docs for your JDBC driver.
    and also give one example for jdbc connection using MSsql server 2005...http://www.exampledepot.com/egs/java.sql/ConnectSqlServer.html
    %

  • Deploy Eclise Project on Azure Cloude successfully but Staging URL giving The connection has timed out ERROR.

    Hello,
      I just Deploy the java project on the Azure Clod using the Azure Plugin as per the video 
    I got this Staging URL   
    But this URL not Working giving Connection Time Out Error
    Please Help

    Hi,
     Is this the Video you are referring to
    http://channel9.msdn.com/Blogs/Interoperability/Java-Applications-in-Windows-Azure-Cloud-Services-using-Eclipse  ?
     Please post the Staging URL that you are using, did you try opening the URL by directly clicking it on the Management Portal for Azure.
     Did u confirm that it was working in the Emulator before deployment.
     Please refer to the following article that gives more detailed steps on "Creating a Hello World Application for Azure in Eclipse"
    Regards,
    Nithin Rathnakar

  • URL Data Control: Connection to the URL source could not be created

    Using JDev Studio 10.1.3.2
    Trying to use a new URL data control pointing to a csv file.
    I have successfully create a new URL data control using the New Gallery->Web Services->URL Services Data Control. I have successfully tested the connection and I am able to see the Data control in the DC Palette. The attributes shown are correct.
    However, when I create a test client displaying the new CSV Data Control attributes in a table and try to run it, I get the following error:
    "Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Exception in thread "main" oracle.adf.model.adapter.AdapterException: DCA-50006: The URL data control call failed. A connection to the URL source could not be created.
    The data controls configuration file is shown below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <DataControlConfigs xmlns="http://xmlns.oracle.com/adfm/configuration"
    version="10.1.3.40.66" Package="com.xp.model"
    id="DataControls">
    <AdapterDataControl id="URLDataControl1"
    FactoryClass="oracle.adf.model.adapter.DataControlFactoryImpl"
    ImplDef="oracle.adfinternal.model.adapter.url.csv.CSVDCDef"
    SupportsTransactions="false" SupportsSortCollection="true"
    SupportsResetState="false" SupportsRangesize="false"
    SupportsFindMode="false" SupportsUpdates="false"
    Definition="URLDataControl1" BeanClass="URLDataControl1"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol">
    <Source>
    <Definition xmlns="http://xmlns.oracle.com/adfm/adapter/url/csv"
    ConnectionName="URLConnection1"
    Source="http://phusca-w20909:8080/client_war/WRK_COMPUTERS.csv" Delimiter=","
    QuoteChar="{none}" IsFirstRowNames="true" Encoding="UTF-8"/>
    </Source>
    </AdapterDataControl>
    </DataControlConfigs>

    Using JDev Studio 10.1.3.2
    Trying to use a new URL data control pointing to a csv file.
    I have successfully create a new URL data control using the New Gallery->Web Services->URL Services Data Control. I have successfully tested the connection and I am able to see the Data control in the DC Palette. The attributes shown are correct.
    However, when I create a test client displaying the new CSV Data Control attributes in a table and try to run it, I get the following error:
    "Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Exception in thread "main" oracle.adf.model.adapter.AdapterException: DCA-50006: The URL data control call failed. A connection to the URL source could not be created.
    The data controls configuration file is shown below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <DataControlConfigs xmlns="http://xmlns.oracle.com/adfm/configuration"
    version="10.1.3.40.66" Package="com.xp.model"
    id="DataControls">
    <AdapterDataControl id="URLDataControl1"
    FactoryClass="oracle.adf.model.adapter.DataControlFactoryImpl"
    ImplDef="oracle.adfinternal.model.adapter.url.csv.CSVDCDef"
    SupportsTransactions="false" SupportsSortCollection="true"
    SupportsResetState="false" SupportsRangesize="false"
    SupportsFindMode="false" SupportsUpdates="false"
    Definition="URLDataControl1" BeanClass="URLDataControl1"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol">
    <Source>
    <Definition xmlns="http://xmlns.oracle.com/adfm/adapter/url/csv"
    ConnectionName="URLConnection1"
    Source="http://phusca-w20909:8080/client_war/WRK_COMPUTERS.csv" Delimiter=","
    QuoteChar="{none}" IsFirstRowNames="true" Encoding="UTF-8"/>
    </Source>
    </AdapterDataControl>
    </DataControlConfigs>

  • Macbook Air Assigned wrong URL to Printer connect to AEBS

    I found a curious problem that I corrected but don't know why my Macbook Air did this:
    I discovered that my Macbook would print fine to my HP Printer connected to my AEBS via USB, but my Macbook Air would be very slow to send the print job to the printer (taking 1-2 minutes if the print job had images, quicker if it was just text). I noticed that the printer URL (from the printer settings) on my Macbook was different than the printer URL on my Macbook Air. After figuring out how to change the URL on my Macbook Air via http://localhost:631, it now prints fine. However, I don't have a clue why my Macbook Air is assigning a different URL for my printer.
    Anyone have any ideas?

    Try resetting the printing system Mac OS X: How to reset the printing system - Apple Support then add your printer back.

  • Cannot open Report Manager URL -- "Unable to Connect to Remote Server"

    Hi, 
    I have recently installed SSRS 2012 on my remote server (Native Mode). I had the default configurations set except for the port has been changed to "8081". I created an Inbound Rule in Firewall to make sure it's enabled. 
    I'm unable to connect to the report manager locally at all, I got a Domain\username authentication and the credentials are never accepted locally.  I tried accessing my report server using the remote server host name and I was successfully logged in,
    however,  I got a message "Unable to Connect to the remote server". 
    I checked the log folder and there was no files created for my unsuccessful login. 
    I've been stumbling with this issue for almost a week, Any ideas or suggestions ?

    Hi SB User,
    Per my understanding that after you change the IP to "8081" then you can't connect to the report server both locally and remotely, right?
    Is that mean before you have changed the IP, everything works fine and did you got some pop up window ask for credential when you connect to the report server?
    You issue can be caused by many factors, please try to check details information below and do some configurations:
    Go to Reporting Services Configuration Manager and change the account to "Network Service" to see if it will works fine.
    Change the account to domain account and re-enter the username and password to see if it works fine. 
    Remove the SSL if configured.
    Go to C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config 
    In rsreportserver.config Change the SecureConnectionLevel value to "0":
    <Add Key="SecureConnectionLevel" Value="0"/>
    Stop and restart the report services instance to see if you can connect to report server.
    please also Using IP instead of computer name as the <servername> in the URL to have a test.
    If your issue still exists, please try to change the IP to have a test.
    If you still have any problem,please fee free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • If my URL shows my connection as http: instead of https: am I at risk of being hacked? If so, how do I fix it?

    A friend on FB said that if my URL box doesn't show as beginning with https: (instead of http:) I am at risk of being hacked. I fixed it for FB but all my other websites are coming up as http:
    Is this really something to be concerned about?

    http://en.wikipedia.org/wiki/HTTP_Secure
    most sites is http, and all the sites when you redirect you in some payment method(paypal, greditcard etc) reverse to https for maximum secure.

  • Ive downloaded an album that came with videos, and ever since ive synced my ipod, i cant watch them. all that comes up is, "the URL cannot be connected" or something

    so yeah i bought "Glam Nation Live" (by Adam Lambert) and it came with videos. after i bought the album, i synced to my itunes and now the videos wont play. there will be some weird error code about the URL and then it will close. they were able to play before. how can i fix this?

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • All url's stuck connecting. uninstalled and reinstalled no help. deleted parental lock file, no help

    I have been using FF for over 2 years. Suddenly 2 days ago it will not load any web sites. Just get stuck in connecting. no error messages. Tried to upgrade. No help. Uninstalled (keeping user info). Re-installed. Still have same problem. Read through your help. Deleted parental lock file, no help

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.
    Patrick

  • If I redirect url will database connection close ?

    Can someone tell me how this would work ?
    If I connect to the database and if the username and password is correct I redirect the user to a website using :
    response.sendRedirect(response.encodeRedirectUrl("http:....");
    and then I close the connections...
    rs.close();
    stmt.close();
    connection.close();
    Then if the user is valid will my connection close ? If not how do I close the connection ??

    Right now I have it this way:
    if (rs.next()) {
    response.sendRedirect(response.encodeRedirectUrl("http.........."));
         else
    something else and close connections
         }                         

  • Passing Values to URL Parameters in HTTP Connection SCOT

    Hi ,
    I have created a new node in SCOT as HTTP. In that i am using one URL as HTTP Connection , for that URL have to pass some input values ( eg: User name , password ). Right now i am hardcoding these values in the URL, But i need to pass these input values to the URL dynamically. Is there any way to pass the values to the URL parameters .
    Regards
    Bala..

    Hi Bala,
    Did you ever get this resolved? I have a similar requirement but still cant find a way to do it. I even thought about creating an RFC Destination of type H and entering the user name and pwd in the logon details. But the problem wih this is that the URL for the RFC destination is static and cant really be changed.
    Be interested to hear your thoughts.
    Alon

Maybe you are looking for

  • The auto save function will not turn off.

    While opening some files, I get- "This document was not closed properly, and some of your changes weren't saved. Do you want to recover these changes or discard them? Niel helped me to figure out that this was happening because the save option and re

  • SSIS to Export data from SQL to flat file dynamically

    Hi. I hope somebody can help me out, I have a table like this: Date, StoreNumber, ProductCode, SalesItem, SalesAmout, Inventory 09-10-2014,10,1,10,10,30 As you can see I have a Date field and my table has information from 2014 at daily basis, What I'

  • Can I connect my ipod Hi-Fi to my Ipad?

    What can I use to connect my ipod Hi-Fi to my Ipad?

  • Add 2 new fields to an existing ABAP query in a particular position

    Hello, I have added 2 new fields to an existing ABAP query. These have been successfully added and the query is also executing. But these 2 new fields are displaying at last. I need to add these fields in a particular column position. Also I need to

  • Optimize Video, Full (Original Size) - What Does It Do?

    I've recently noticed that some of the video I've imported into iMovie '09 is "optimized" and some isn't. What's the difference? Specifically, what does the action "Optimize Video - Full (Original Size)" actually do? If the video can already play in