Client application and axis communication

Hello all, here is my problem.
I used axis to generated webservices stubs and skeletons from wsdl. I deployed the webservices using TomCat.
Now I want to make a client application (CA) that can invoke the deployed services (no problem for that), but also get callback or event notification.
I'm beginner in axis and TomCat. Is there a way for my CA and axis to share the same context? Is there a notion of object references in axis or Tomcat?
Thanks

HI Lakshman,
The below 2 links might be of help :
Application Upgrade :
Application Upgrade Process with NetWeaver Mobile 7.1 - <http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d023fc51-f66d-2c10-edaa-eecd7f992121>
Application Versioning with DOE (NetWeaver Mobile 7.10) - </people/ashwani.kumar/blog/2009/12/16/applicatoin-versioning-with-doe-netwaaver-mobile-710>
Thanks,
Swarna

Similar Messages

  • Open Office files in client application in Sharepoint Search

    Is there a way to have all users of a SharePoint farm open Office documents that show up as search results in our Enterprise Search Center within their client applications and not in the Office Web Apps?
    I know i can do this manually for me from the Search Result page > Preferences. But is there a way to do this
    automatically for every user? Couldn't find it on the internet.
    Thanks in advance!!

    Hi Simon,
    According to your description, my understanding is that you want to open office documents in client application in SharePoint Search results.
    In order to open search results in the client application, you had to alter the Item_CommonItem_Body.html search results display template.
    More detailed information:
    http://richardstk.com/2013/10/25/open-sharepoint-2013-search-results-in-the-client-application/
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • JWS client application with remote mysql security

    I'm fairly new to this sphere of web security programming. I'm trying to write JWS client application that can communicate with webhosting's mysql server. Is there a better way to secure the data communication between the two since webhosting's mysql server is not SSL enabled? I'll appreciate any tools, advices or techniques to accomplish this.

    zhadum wrote:
    I'm aware of that I'll have to encrypt password and user's private information. Since the JWS client will need to decrypt the password and user info the decryption key will need to be stored in the application. Once again, easy to extract.
    I have been researching and thought of using JSSE to establish secure connection between client application and Java Servlet on the server for database communication without the direction connection to the database. That is the way is is normally done. You only provide the database functionality needed by the client and you make the client log on to the Web Server before allowing access to the servlet.
    I know hackers can or could decompile my client application and learn how to access the database directly so I thought of using the Servlet will make the hacker's tasks more difficult.Yep. That and the use of HTTPS.
    >
    Is there a sample code I can use with my client and servlet for secured database communications?There are tons of examples of creating a logon page which is the first thing you will need. The user of servlets for database access is exactly the same as you have used for your JWS client.

  • High CPU Usage On client application when upgrade remote SQL database

    Hi,
    Is anyone here encountered very high CPU usage after upgraded the database from SQL 2005 to SQL 2012? Following describes my issue.
    I have my client application running on Windows 7 that access to central database (SQL 2005) on Windows server 2003 using ODBC connection, this client application basically query data and perform data insert and update. There are a number of this similar
    clients connected to the database.
    Due to slowness of the database server, company decided to upgrade the database server to SQL 2012 and also new hardware runing Windows Server 2012. There is no change on the client application and client hardware and the client application still using the
    same ODBC connection to query, insert or update the new database server.
    The problem I am now experiencing now is that my client PC where my client application running the CPU usage is very high almost hitting 100% when accessing to the central database. I am also noticed this program lsass.exe that utilized almost 40-50% of
    the CPU time when client application accessing the central database.
    Is anyone here know, why client PC CPU usage 100% when access to upgraded SQL 2012 database? What is lsass.exe program doing, it only appear when accessing to database server. How to reduce the CPU usage on client?
    Thanks.
    Chee Wee.

    Hello,
    After upgrading, please rebuild indexes and update statistics on the databases.
    http://www.mssqltips.com/sqlservertip/1367/sql-server-script-to-rebuild-all-indexes-for-all-tables-and-all-databases/
    http://www.mssqltips.com/sqlservertip/1606/execute-update-statistics-for-all-sql-server-databases/
    Configure maxdop on the instance.
    http://blogs.msdn.com/b/sqlsakthi/archive/2012/05/24/wow-we-have-maxdop-calculator-for-sql-server-it-makes-my-job-easier.aspx
    If the above does not solve the issue, let us know.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • J2EE Client Application (weblogic.ClientDeployer)

    Hello,
    I'm experimenting with the ClientDeployer utility as described in the 6.1
    documentation, and I face some odd behavior.
    I created a jar file (cli.jar) containing the class files of my client application,
    and a META-INF/application-client.xml file.
    This jar file then gets stored in an ear file, together with a cli.runtime.xml
    file
    and a META-INF/application.xml file.
    Afterwards, I tried running this client application by using
    java weblogic.ClientDeployer clients.ear cli
    Now, all of this works, as long as I leave the cli.runtime.xml file in the
    current directory. But as soon as I remove this file from the current
    directory, it stops working. This means that ClientDeployer doesn't read
    the cli.runtime.xml file from the ear file, but only from the current directory.
    Is that the way it is supposed to work ? I would expect it to read the
    runtime file form the ear file ?
    Thanks,
    Francois Staes.

    Hi Sandy,
    If I understand you correctly, then you are asking how to make
    a stand-alone java client, right? According to the J2EE spec, a
    stand-alone java client also needs to be deployed to a container.
    A long time ago (before OC4J, when there was only OrionServer)
    I struggled for about a week before finally figuring out how to
    do this.
    However, I then discovered that, with OrionServer (and therefore
    also with OC4J), your stand-alone java client does not have
    to be deployed to a container and can be launched from the command
    line with the "java" command.
    If you do want to deploy your java client, then the only way
    I know to launch it is by using the "applicationlauncher.jar"
    file. This file was part of the first OC4J (version 1.0.2.2).
    It disappeared in the next version (9.0.2) and now has reappeared
    in the latest version (9.0.3) -- go figure! Like I said, by the
    time I started using OC4J, I was only using non-deployed clients,
    so I had no need for "applicationlauncher.jar", so the fact it
    was missing from version 9.0.2 didn't affect me.
    In any case, I recall information on how to use the "applicationlauncher.jar"
    file on the following web sites:
    http://www.orionserver.com
    http://www.orionsupport.com
    http://www.atlassian.com
    http://www.elephantwalker.com
    I also recall answering similar questions several times previously
    on this forum, so a search of the forum archives may also help.
    I hope I have correctly interpreted your question and given you
    a helpful answer.
    Good Luck,
    Avi.

  • Server/client application

    i'm just starting to learn about server/client applications and i'm a little confused about actually implementing them.
    my client will be an applet which can be accessed over the internet. i want the applet to be able to read/write to the server.
    now my question is, how can i start up the server program?
    i would want it to initialize and run, only when the user has gone to the website that uses the applet.

    look at using a Servlet, running under Tomcat (download the Java Web Services Developer pack from java.sun.com
    here's what the servlet looks like:
    mport javax.servlet.*;
    import java.util.*;
    import java.net.*;
    public class ServletTest extends GenericServlet
    /** servlet is initialising */
    public void init()
    System.out.println("ServletTest initializing");
    /** servlet wascalled bt client */
    public void service(ServletRequest request,ServletResponse response)
    try
    byte[] data=new byte[100];
    ServletInputStream inputStream=request.getInputStream();
    int read=inputStream.read(data);
    String string=URLDecoder.decode(new String(data,0,read),"UTF-8");
    System.out.println("read "+read+" bytes: "+string);
    inputStream.close();
    ServletOutputStream outputStream=response.getOutputStream();
    Date date=new Date();
    outputStream.write(date.toString().getBytes());
    outputStream.close();
    catch(Exception ex)
    ex.printStackTrace();
    /** servlet is being destroyed */
    public void destroy()
    System.out.println("ServletTest terminating");
    here's what the client looks like:
    mport javax.servlet.*;
    import java.util.*;
    import java.net.*;
    public class ServletTest extends GenericServlet
    /** servlet is initialising */
    public void init()
    System.out.println("ServletTest initializing");
    /** servlet wascalled bt client */
    public void service(ServletRequest request,ServletResponse response)
    try
    byte[] data=new byte[100];
    ServletInputStream inputStream=request.getInputStream();
    int read=inputStream.read(data);
    String string=URLDecoder.decode(new String(data,0,read),"UTF-8");
    System.out.println("read "+read+" bytes: "+string);
    inputStream.close();
    ServletOutputStream outputStream=response.getOutputStream();
    Date date=new Date();
    outputStream.write(date.toString().getBytes());
    outputStream.close();
    catch(Exception ex)
    ex.printStackTrace();
    /** servlet is being destroyed */
    public void destroy()
    System.out.println("ServletTest terminating");

  • Launching Client Application error message

    Hi anyone I created a client application and signing it. it can run fine in command line.
    But when I call the JNLP file it gives exception,The exception is as follows:
    JNLPException[category:download error:Exception:null:LaunchDesc:null]
    at com.sun.javaws.security.SigningInfo.checkSigning(Unlnow Source)
    at com.sun.javaws.cache.DownloadProtocol$RetrieveAction.actionDownload(Unknow Source)
    Can any body tell me whats the wrong. Thanks in Advance.
    zrjian

    Problems have solved.
    The reason was that the jar file which contains two Signature file(Abcjar.sf and Sun_micr.sf),the Abcjar.sf is creates by jarsiger , and another Sun_micr.sf is created by JBuilder 7.
    when i remove Sun_micr.sf ,it is running finely.
    I am confusing that I have setted new JDK1.4.1_01 in JBuilder 7 , why dose Sun_micr.sf contain JDK1.3.0:
    This is part of Sun_micr.sf :
    Signature-Version: 1.0
    SHA1-Digest-Manifest: s4hapqcSzQWgILxttXiEIqQIbJQ=
    Created-By: 1.3.0 (Sun Microsystems Inc.)
    This is part of Abcjar.sf :
    Signature-Version: 1.0
    Created-By: 1.4.1_01 (Sun Microsystems Inc.)
    SHA1-Digest-Manifest: lApsyt2mW2+hJ6j5tqu+z2hpCUk=
    Thanks!
    zrjian

  • How to verify client application identity?

    Hello,
    I would appreciate some guidance from senior security people in this forum. Here is what I am trying to do:
    1- I am responsible for partial development of a TECHNICAL FRAMEWORK, which will end-up packaged as a signed jar file: i.e., "signedFramework.jar".
    2- The purpose of the framework is, of course, to be used by different BUSINESS APPLICATIONS.
    3- These business applications are typically packaged as war files, and embed the above "signedFramework.jar" with them, allowing them to make direct calls to some framework operations/classes (so, no networking involved).
    3- Each business application has its own certificate that will be used to sign its own package.
    ==> Given the situation above, can anyone help (high-level description) with the following:
    - Whenever framework sensitive operations get called, I would like to be able to verify the calling application identity: To do that, I was thinking of retrieving the certificate from the calling application. By comparing info from the retrieved certificate with a "trusted keystore" , I'd be able to authenticate the client application and allow or deny the operation.
    Is this common practice? Any hint?
    Thanks for your help and time,
    MD

    or... from DAA.
    1. client sends U to server
    2. server creates a nonce n and encrypts with the public key of the client
    3. client decrypts n and computes hash(U||n) and sends to server
    4. server computes hash(U||n) and compares it with the value received from the client
    This may take place over a public network iff U can be made public.
         C                         S
         |---------U-------->|
         |                         |
         |<------{n}_PK------|
         |                         |
         |----hash(U||n)---->|
         |          ____________|________________
         |          | Server computes hash(U||n) |
         |       | and compares it to value   |
         |          | supplied by client         |
        |       |----------------------------|
         |                         |

  • Client Applications vs Standalone Applications

    Hi all,
    I'm just confused about differences between
    Client Applications and Standalone Applications.
    Is it right that with a Client Application I don't need
    to specify in my java code (with Properties) the
    INITIAL_CONTEXT_FACTORY and the PROVIDER_URL
    of my application server ?
    For what concerne lookup() method, do Client Applications
    use the "java:comp/env/...." syntax (like co-located bean) ?
    Do they need to use narrow() method to cast EJB references ?
    What are advantages/advantages of using Client Applications
    or Standalone App. ?
    Thanks in advance
    Moreno

    I'm no expert, and I'm not sure that I fully understand your question but...I far as I understand it, a standalone application is just that. It doesn't require anything other than what comes delivered and installed with the application. A client application requires a server (among other things).

  • SBS Client Application Launcher has encountered a problem and needs to close

    I logged in to a remote session on the SBS to add a user to a security group. Now, when I log on to my computer with the domain administrator account, I get the error "SBS Client
    Application Launcher has encountered a problem and needs to
    close." There is an event in the Application log associated with the error:
    Event Type: Error
    Event Source: Application Error
    Event Category: None
    Event ID: 1000
    Date:  8/29/2011
    Time:  2:27:46 PM
    User:  N/A
    Computer: CONTROLLERASST
    Description:
    Faulting application applnch.exe, version 5.2.2893.2, faulting module applnch.exe, version 5.2.2893.2, fault address 0x0002442a.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74   Applicat
    0008: 69 6f 6e 20 46 61 69 6c   ion Fail
    0010: 75 72 65 20 20 61 70 70   ure  app
    0018: 6c 6e 63 68 2e 65 78 65   lnch.exe
    0020: 20 35 2e 32 2e 32 38 39    5.2.289
    0028: 33 2e 32 20 69 6e 20 61   3.2 in a
    0030: 70 70 6c 6e 63 68 2e 65   pplnch.e
    0038: 78 65 20 35 2e 32 2e 32   xe 5.2.2
    0040: 38 39 33 2e 32 20 61 74   893.2 at
    0048: 20 6f 66 66 73 65 74 20    offset
    0050: 30 30 30 32 34 34 32 61   0002442a
    0058: 0d 0a                     ..     
    After clicking to send/not send an error report, I get back to the desktop where all appears normal. However, I can no longer access the internet while logged in under this account.
    I can log in on another PC with the domain admin account with no error.
    Any help would be appreciated.

    Hi,
    I would like to suggest you run System File Checker with command: sfc /scannow to scan and repair the system files.
    If it does not work, please also test the issue in Clean Boot.
    Clean Boot
    ================
    Let’s disable all startup items and third party services when booting. This method will help us determine if this issue is caused by a loading
    program or service. Please perform the following steps:
    1. Click the Start Button type "msconfig" (without quotation marks) in the Start Search box, and then press Enter.
    Note: If prompted, please click Continue on the User Account Control (UAC) window.
    2. Click the "Services" tab, check the "Hide All Microsoft Services" box and click "Disable All" (if it is not gray).
    3. Click the "Startup" tab, click "Disable All" and click "OK".
    Then, restart the computer. When the "System Configuration Utility" window appears, please check the "Don't show this message or launch the System
    Configuration Utility when Windows starts" box and click OK.
    What’s the result in Clean Boot?
    For more information regarding Event ID 1000, please refer to the following link:
     http://www.microsoft.com/technet/support/ee/transform.aspx?ProdName=Windows%20Operating%20System&ProdVer=5.2&EvtID=1000&EvtSrc=Application%20Error&LCID=1033 
    Regards,
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Get screenshot with mouse cursor and send for client application

    I took
    this function for getting a screenshot from a client application. I to tried adapt this function in my project, but I can not capture desktop showing mouse cursor (coming from a remote pc) in my server application (controller).
    Here is my adaptation (in client side) but without success:
    void SendScreenProc()
    // Send First Bitmap
    MemoryStream streamScreen = new MemoryStream();
    this.bmpScreenSend = CaptureScreen(true);//new Bitmap(this.boundScreen.Width, this.boundScreen.Height, PixelFormat.Format24bppRgb);
    Graphics g = Graphics.FromImage(this.bmpScreenSend);
    g.CopyFromScreen(0, 0, 0, 0, this.boundScreen.Size);
    this.bmpScreenSend.Save(streamScreen, System.Drawing.Imaging.ImageFormat.Png);
    Compress.CompressStream(streamScreen);
    Byte[] bufferScreen = streamScreen.ToArray();
    mreSendData.WaitOne();
    this.queueSendData.AddScreen(streamScreen.GetBuffer());
    streamScreen.Close();
    this.receivedScreen = 0;
    while (this.remoted)
    // Send next bitmap result by difference with previous bitmap.
    if(this.receivedScreen == 0) {
    } else {
    Bitmap bmpCurrentScreen = CaptureScreen(true);//new Bitmap(this.boundScreen.Width, this.boundScreen.Height, PixelFormat.Format24bppRgb);
    g = Graphics.FromImage(bmpCurrentScreen);
    g.CopyFromScreen(0, 0, 0, 0, this.boundScreen.Size);
    if (this.receivedScreen == 1) {
    if(this.bmpScreen != null) {
    this.bmpScreen.Dispose();
    this.bmpScreen = this.bmpScreenSend;
    } else if(this.receivedScreen == 2) {
    if (queueSendData.AvailableScreenAdd && IsDifferent(bmpCurrentScreen, this.bmpScreen))
    streamScreen = new MemoryStream();
    Bitmap bmpDiff = XorBitmap(this.bmpScreen, bmpCurrentScreen);
    bmpDiff.Save(streamScreen, System.Drawing.Imaging.ImageFormat.Png);
    this.bmpScreenSend.Dispose();
    bmpDiff.Dispose();
    this.bmpScreenSend = bmpCurrentScreen;
    mreSendData.WaitOne();
    this.queueSendData.AddScreen(streamScreen.GetBuffer());
    streamScreen.Close();
    this.receivedScreen = 0;
    else
    bmpCurrentScreen.Dispose();
    Thread.Sleep(30);

     Hi FlashCoder,
    Do you mean like this capture? Use mouse cursor to capture the specified area.
    If so, here is a sample that I wrote. It should meet your requirement.  If not, please feel free to let me know.
    The following is ScreenForm code
    public partial class ScreenForm : Form
    public ScreenForm()
    InitializeComponent();
    public event copyToFatherTextBox copytoFather;
    public bool begin = false;
    public bool isDoubleClick = false;
    public Point firstPoint = new Point(0, 0);
    public Point secondPoint = new Point(0, 0);
    public Image cachImage = null;
    public int halfWidth = 0;
    public int halfHeight = 0;
    /*Copy the entire screen, and form fill the screen*/
    public void copyScreen()
    Rectangle r = Screen.PrimaryScreen.Bounds;
    Image img = new Bitmap(r.Width, r.Height);
    Graphics g = Graphics.FromImage(img);
    g.CopyFromScreen(new Point(0, 0), new Point(0, 0), r.Size);
    //Maximize form
    this.Width = r.Width;
    this.Height = r.Height;
    this.Left = 0;
    this.Top = 0;
    pictureBox1.Width = r.Width;
    pictureBox1.Height = r.Height;
    pictureBox1.BackgroundImage = img;
    cachImage = img;
    halfWidth = r.Width / 2;
    halfHeight = r.Height / 2;
    this.Cursor = new Cursor(GetType(), "MyCursor.cur");
    private void ScreenForm_Load(object sender, EventArgs e)
    copyScreen();
    /*Begins when the mouse is pressed screenshots*/
    private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
    if(!isDoubleClick)
    begin = true;
    firstPoint = new Point(e.X, e.Y);
    changePoint(e.X, e.Y);
    msg.Visible = true;
    /*Displayed when the mouse moves to intercept the border*/
    private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
    if (begin)
    //Redraw the background image
    secondPoint = new Point(e.X, e.Y);
    int minX = Math.Min(firstPoint.X, secondPoint.X);
    int minY = Math.Min(firstPoint.Y, secondPoint.Y);
    int maxX = Math.Max(firstPoint.X, secondPoint.X);
    int maxY = Math.Max(firstPoint.Y, secondPoint.Y);
    Image tempimage = new Bitmap(cachImage);
    Graphics g = Graphics.FromImage(tempimage);
    //Picture cropping frames
    g.DrawRectangle(new Pen(Color.Red),minX,minY,maxX-minX,maxY-minY);
    pictureBox1.Image = tempimage;
    //Calculation of coordinate information
    msg.Text = "Upper left corner coordinates:(" + minX.ToString() + "," + minY.ToString() + ")\r\n";
    msg.Text += "Lower right corner coordinates:(" + maxX.ToString() + "," + maxY.ToString() + ")\r\n";
    msg.Text += "Screenshot size:" + (maxX - minX) + "×" + (maxY - minY) + "\r\n";
    msg.Text += "Double-click end screenshots anywhere!";
    changePoint((minX + maxX) / 2, (minY + maxY) / 2);
    /*Dynamically adjusts the displayed location, enter the parameters for the current screen mouse position*/
    public void changePoint(int x, int y)
    if (x < halfWidth)
    if (y < halfHeight)
    { msg.Top = halfHeight; msg.Left = halfWidth; }
    else
    { msg.Top = 0; msg.Left = halfWidth; }
    else
    if (y < halfHeight)
    { msg.Top = halfHeight; msg.Left = 0; }
    else
    { msg.Top = 0; msg.Left = 0; }
    /*Screenshot is completed when you let go of the mouse operation */
    private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
    begin = false;
    isDoubleClick = true;
    /*When I double-click a screenshot when notifying parent form complete screenshot action, while closing the form*/
    private void pictureBox1_DoubleClick(object sender, EventArgs e)
    if (firstPoint != secondPoint)
    int minX = Math.Min(firstPoint.X, secondPoint.X);
    int minY = Math.Min(firstPoint.Y, secondPoint.Y);
    int maxX = Math.Max(firstPoint.X, secondPoint.X);
    int maxY = Math.Max(firstPoint.Y, secondPoint.Y);
    Rectangle r = new Rectangle(minX, minY, maxX - minX, maxY - minY);
    copytoFather(r);
    this.Close();
    //msg.Text = r.ToString();
    This is the mainFrom code.
    public delegate void copyToFatherTextBox(Rectangle r);
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    /*Start screenshot*/
    private void button1_Click(object sender, EventArgs e)
    ScreenForm screen = new ScreenForm();
    screen.copytoFather += new copyToFatherTextBox(copytoTextBox);
    screen.ShowDialog();
    /*Screenshot of subsequent operations*/
    public void copytoTextBox(Rectangle rec)
    Rectangle rec2=rec;
    if(rec.Width>2&&rec.Height>2)
    rec2= new Rectangle(rec.X + 1, rec.Y + 1, rec.Width - 2, rec.Height - 2);
    Rectangle r = Screen.PrimaryScreen.Bounds;
    Image img = new Bitmap(rec2.Width, rec2.Height);
    Graphics g = Graphics.FromImage(img);
    g.CopyFromScreen(rec2.Location, new Point(0, 0), rec2.Size);
    Clipboard.SetDataObject(img, false);
    richTextBox1.Paste();
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Steps to deploy an ejb application and running an ejb client in weblogic server6.1

    steps to deploy an ejb application and steps to run an ejb client in weblogic server6.1
    if the client is an simple java application and if the client is a servlet

    Hi.
    Check out the beanManaged example that ships with WLS and read the accompanying docs. This
    is a simple EJB with a servlet that invokes it.
    Michael
    shekhar sachdev wrote:
    steps to deploy an ejb application and steps to run an ejb client in weblogic server6.1
    if the client is an simple java application and if the client is a servlet--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Difference on developing client applications on PC and Mac platform.

    Hi,
    I would like to know wats the difference on developing client applications on PC and Mac platform.
    If i were to create software applications using Javascript, MS SQL Server 2000 and JAVA on Mac platform, would there be any difference from those we created on PC(Windows)?

    Write once, debug ewerywhere. There should not be any
    difference running pure Java code on difference
    platforms.Umm.. "should" is the operative word..
    Threads come to mind...as even when they are written as "Pure Java".. the native thread implementation can work harry cary (as opposed to Harry Potter) on your app...

  • How to design block diagram for axi tpg and axi vdma on zedboard using vivado 2014.4 and sdk c application

    Hi,
    I am working in image processing project ,but currently i want to use tpg ip and vdma ip to write frame data in ddr3 on zedboard,please provide me vivado block design and sdk c application for that
     

    Please don't post the same thing multiple times. This one is fine:
    http://forums.xilinx.com/t5/New-Users-Forum/how-use-axi-tpg-and-axi-vdma/m-p/638588

  • Communication between ADF Application and third party tool

    Hi,
    JDev 11.1.1.5.0
    I am a new bee to SOA Suite :). I am looking for a suggestion on below usecase.
    We have Arbortext Editor which is a dynamic publishing tool for creating technical publication. We are planning to develop a UI tool
    using ADF/JDev. As POC, we are able to invoke our ADF application from Arbortext Editor as shown below.
    AccessURL accessURL = new AccessURL();
    String myURL = "http://127.0.0.1:7101/IFS_Object_Selector_1-
    ViewController-context-root/faces/object_selector_main?";
    java.awt.Desktop myNewBrowserDesktop = java.awt.Desktop.getDesktop();
    java.net.URI myNewLocation = new java.net.URI( myURL);
    myNewBrowserDesktop.browse( myNewLocation );
    So, Arbortext is having it's own JVM and can have standalone java program with main method. If we can able to provide communication between our ADF application and Arbortext JVM, that can solve our issue.
    We need to pass some information back to Arbortext editor from ADF application on some action (Button click).
    Can you suggest any clue on this?
    It would be really helpful, if you can provide some pointers for similar usecases.
    Thanks,
    Samba.

    Hi Samba,
    I'd suggest better raise it in he ADF forum.
    However, this should be possible by calling the Arbortext functions on click of ADF form buttons. Or you may send the information to a placeholder (JMS, File, DB etc.) from where Arbortext can pick that information.
    Regards,
    Neeraj Sehgal

Maybe you are looking for

  • HT4623 My iPad will not allow me to download any apps

    My iPad will not let me download any apps, also in the APPS STORE it shows a '1' meaning that there is one new update, it will not even let me update.  Also when browsing some websites like BT, it shuts down and reverts back to the home page of all m

  • Ical alarm keeps trying to open file from old location

    I have an iCal alarm to open an accounts file each day. I moved the file to another folder, and selected the new location iniCal. It always gives me this: Could not open file because 'Old/Path/to/File'  could not be found. When I look at the alarm se

  • How to view RUN_REPORT_OBJECT buil-in package source code

    Ps help. I'm creating a batch report that will execute from PL/SQL not forms - so I can't use this built-in directly on my PL/SQL procedure. How do I view RUN_REPORT_OBJECT source code and that of the functions that it calls. Thanks Khombi

  • First Dep Run - Account requires an assignment to a CO object

    Hi, We did a legacy data transfer for this november, for a whole company code Fixed assets. We run the initial load in our testing environment and now we are trying to run the first month depreciation (Nov09) When we run Nov an error message is displ

  • How to disable remote wipe option for mobile devices

    Hi, I have integrated environment of SCCM 2012 R2 and Windows Intune. I am managing Windows phone, Android and IOS devices through this setup. I was trying find an option to disable remote wipe option in the SCCM Console. Only selective wipe should b